@djangocfg/api 1.0.1
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.
- package/LICENSE +21 -0
- package/README.md +42 -0
- package/dist/index.cjs +28422 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +31214 -0
- package/dist/index.d.ts +31214 -0
- package/dist/index.mjs +28334 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +83 -0
- package/src/cfg/BaseClient.ts +56 -0
- package/src/cfg/contexts/AccountsContext.tsx +205 -0
- package/src/cfg/contexts/LeadsContext.tsx +145 -0
- package/src/cfg/contexts/NewsletterContext.tsx +244 -0
- package/src/cfg/contexts/SupportContext.tsx +256 -0
- package/src/cfg/contexts/index.ts +48 -0
- package/src/cfg/contexts/knowbase/ChatContext.tsx +174 -0
- package/src/cfg/contexts/knowbase/DocumentsContext.tsx +304 -0
- package/src/cfg/contexts/knowbase/SessionsContext.tsx +174 -0
- package/src/cfg/contexts/knowbase/index.ts +58 -0
- package/src/cfg/contexts/payments/ApiKeysContext.tsx +115 -0
- package/src/cfg/contexts/payments/BalancesContext.tsx +118 -0
- package/src/cfg/contexts/payments/CurrenciesContext.tsx +105 -0
- package/src/cfg/contexts/payments/OverviewContext.tsx +141 -0
- package/src/cfg/contexts/payments/PaymentsContext.tsx +131 -0
- package/src/cfg/contexts/payments/README.md +201 -0
- package/src/cfg/contexts/payments/index.ts +65 -0
- package/src/cfg/generated/_utils/fetchers/cfg__accounts.ts +66 -0
- package/src/cfg/generated/_utils/fetchers/cfg__accounts__auth.ts +50 -0
- package/src/cfg/generated/_utils/fetchers/cfg__accounts__user_profile.ts +121 -0
- package/src/cfg/generated/_utils/fetchers/cfg__endpoints.ts +49 -0
- package/src/cfg/generated/_utils/fetchers/cfg__health.ts +64 -0
- package/src/cfg/generated/_utils/fetchers/cfg__leads.ts +122 -0
- package/src/cfg/generated/_utils/fetchers/cfg__leads__lead_submission.ts +50 -0
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter.ts +81 -0
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__bulk_email.ts +50 -0
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__campaigns.ts +123 -0
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__logs.ts +49 -0
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__newsletters.ts +64 -0
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__subscriptions.ts +81 -0
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__testing.ts +50 -0
- package/src/cfg/generated/_utils/fetchers/cfg__payments.ts +2489 -0
- package/src/cfg/generated/_utils/fetchers/cfg__payments__webhooks.ts +109 -0
- package/src/cfg/generated/_utils/fetchers/cfg__support.ts +212 -0
- package/src/cfg/generated/_utils/fetchers/cfg__tasks.ts +182 -0
- package/src/cfg/generated/_utils/fetchers/index.ts +45 -0
- package/src/cfg/generated/_utils/hooks/cfg__accounts.ts +61 -0
- package/src/cfg/generated/_utils/hooks/cfg__accounts__auth.ts +41 -0
- package/src/cfg/generated/_utils/hooks/cfg__accounts__user_profile.ts +128 -0
- package/src/cfg/generated/_utils/hooks/cfg__endpoints.ts +36 -0
- package/src/cfg/generated/_utils/hooks/cfg__health.ts +51 -0
- package/src/cfg/generated/_utils/hooks/cfg__leads.ts +127 -0
- package/src/cfg/generated/_utils/hooks/cfg__leads__lead_submission.ts +41 -0
- package/src/cfg/generated/_utils/hooks/cfg__newsletter.ts +80 -0
- package/src/cfg/generated/_utils/hooks/cfg__newsletter__bulk_email.ts +41 -0
- package/src/cfg/generated/_utils/hooks/cfg__newsletter__campaigns.ts +128 -0
- package/src/cfg/generated/_utils/hooks/cfg__newsletter__logs.ts +36 -0
- package/src/cfg/generated/_utils/hooks/cfg__newsletter__newsletters.ts +51 -0
- package/src/cfg/generated/_utils/hooks/cfg__newsletter__subscriptions.ts +76 -0
- package/src/cfg/generated/_utils/hooks/cfg__newsletter__testing.ts +41 -0
- package/src/cfg/generated/_utils/hooks/cfg__payments.ts +2716 -0
- package/src/cfg/generated/_utils/hooks/cfg__payments__webhooks.ts +100 -0
- package/src/cfg/generated/_utils/hooks/cfg__support.ts +235 -0
- package/src/cfg/generated/_utils/hooks/cfg__tasks.ts +193 -0
- package/src/cfg/generated/_utils/hooks/index.ts +43 -0
- package/src/cfg/generated/_utils/schemas/APIKeyCreate.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/APIKeyCreateRequest.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/APIKeyDetail.schema.ts +35 -0
- package/src/cfg/generated/_utils/schemas/APIKeyList.schema.ts +32 -0
- package/src/cfg/generated/_utils/schemas/APIKeyUpdate.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/APIKeyUpdateRequest.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/APIKeyValidationRequest.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/APIKeyValidationResponse.schema.ts +29 -0
- package/src/cfg/generated/_utils/schemas/APIKeysOverview.schema.ts +26 -0
- package/src/cfg/generated/_utils/schemas/APIResponse.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/APIResponseRequest.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/AdminPaymentCreate.schema.ts +26 -0
- package/src/cfg/generated/_utils/schemas/AdminPaymentCreateRequest.schema.ts +27 -0
- package/src/cfg/generated/_utils/schemas/AdminPaymentDetail.schema.ts +50 -0
- package/src/cfg/generated/_utils/schemas/AdminPaymentList.schema.ts +38 -0
- package/src/cfg/generated/_utils/schemas/AdminPaymentStats.schema.ts +29 -0
- package/src/cfg/generated/_utils/schemas/AdminPaymentUpdate.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/AdminPaymentUpdateRequest.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/AdminUser.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/BalanceOverview.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/BulkEmailRequest.schema.ts +26 -0
- package/src/cfg/generated/_utils/schemas/BulkEmailResponse.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/ChartDataPoint.schema.ts +20 -0
- package/src/cfg/generated/_utils/schemas/ChartSeries.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/Currency.schema.ts +35 -0
- package/src/cfg/generated/_utils/schemas/CurrencyAnalyticsItem.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/CurrencyList.schema.ts +30 -0
- package/src/cfg/generated/_utils/schemas/EmailLog.schema.ts +31 -0
- package/src/cfg/generated/_utils/schemas/Endpoint.schema.ts +35 -0
- package/src/cfg/generated/_utils/schemas/EndpointGroup.schema.ts +28 -0
- package/src/cfg/generated/_utils/schemas/EndpointsStatus.schema.ts +28 -0
- package/src/cfg/generated/_utils/schemas/ErrorResponse.schema.ts +20 -0
- package/src/cfg/generated/_utils/schemas/HealthCheck.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/LeadSubmission.schema.ts +29 -0
- package/src/cfg/generated/_utils/schemas/LeadSubmissionError.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/LeadSubmissionRequest.schema.ts +29 -0
- package/src/cfg/generated/_utils/schemas/LeadSubmissionResponse.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/Message.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/MessageCreate.schema.ts +15 -0
- package/src/cfg/generated/_utils/schemas/MessageCreateRequest.schema.ts +15 -0
- package/src/cfg/generated/_utils/schemas/MessageRequest.schema.ts +15 -0
- package/src/cfg/generated/_utils/schemas/Network.schema.ts +30 -0
- package/src/cfg/generated/_utils/schemas/Newsletter.schema.ts +26 -0
- package/src/cfg/generated/_utils/schemas/NewsletterCampaign.schema.ts +33 -0
- package/src/cfg/generated/_utils/schemas/NewsletterCampaignRequest.schema.ts +26 -0
- package/src/cfg/generated/_utils/schemas/NewsletterSubscription.schema.ts +27 -0
- package/src/cfg/generated/_utils/schemas/OTPErrorResponse.schema.ts +19 -0
- package/src/cfg/generated/_utils/schemas/OTPRequestRequest.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/OTPRequestResponse.schema.ts +19 -0
- package/src/cfg/generated/_utils/schemas/OTPVerifyRequest.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/OTPVerifyResponse.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/PaginatedAPIKeyListList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedAdminPaymentListList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedAdminPaymentStatsList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedAdminUserList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedCurrencyListList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedEmailLogList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedEndpointGroupList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedLeadSubmissionList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedMessageList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedNetworkList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedNewsletterCampaignList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedNewsletterList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedNewsletterSubscriptionList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedPaymentListList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedProviderCurrencyList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedRecentPaymentList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedRecentTransactionList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedSubscriptionListList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedTariffList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedTicketList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedTransactionList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedUserBalanceList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedWebhookEventListList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaginatedWebhookStatsList.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PatchedAPIKeyUpdateRequest.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PatchedAdminPaymentUpdateRequest.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/PatchedLeadSubmissionRequest.schema.ts +29 -0
- package/src/cfg/generated/_utils/schemas/PatchedMessageRequest.schema.ts +15 -0
- package/src/cfg/generated/_utils/schemas/PatchedNewsletterCampaignRequest.schema.ts +26 -0
- package/src/cfg/generated/_utils/schemas/PatchedPaymentRequest.schema.ts +32 -0
- package/src/cfg/generated/_utils/schemas/PatchedSubscriptionRequest.schema.ts +26 -0
- package/src/cfg/generated/_utils/schemas/PatchedTicketRequest.schema.ts +18 -0
- package/src/cfg/generated/_utils/schemas/PatchedUnsubscribeRequest.schema.ts +19 -0
- package/src/cfg/generated/_utils/schemas/PatchedUserProfileUpdateRequest.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/Payment.schema.ts +48 -0
- package/src/cfg/generated/_utils/schemas/PaymentAnalyticsResponse.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/PaymentCreate.schema.ts +30 -0
- package/src/cfg/generated/_utils/schemas/PaymentCreateRequest.schema.ts +30 -0
- package/src/cfg/generated/_utils/schemas/PaymentList.schema.ts +32 -0
- package/src/cfg/generated/_utils/schemas/PaymentOverview.schema.ts +31 -0
- package/src/cfg/generated/_utils/schemas/PaymentRequest.schema.ts +32 -0
- package/src/cfg/generated/_utils/schemas/PaymentsChartResponse.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/PaymentsDashboardOverview.schema.ts +26 -0
- package/src/cfg/generated/_utils/schemas/PaymentsMetrics.schema.ts +26 -0
- package/src/cfg/generated/_utils/schemas/ProviderAnalyticsItem.schema.ts +24 -0
- package/src/cfg/generated/_utils/schemas/ProviderCurrency.schema.ts +36 -0
- package/src/cfg/generated/_utils/schemas/QueueAction.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/QueueActionRequest.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/QueueStatus.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/QuickHealth.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/RecentPayment.schema.ts +32 -0
- package/src/cfg/generated/_utils/schemas/RecentTransaction.schema.ts +29 -0
- package/src/cfg/generated/_utils/schemas/SendCampaignRequest.schema.ts +19 -0
- package/src/cfg/generated/_utils/schemas/SendCampaignResponse.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/Sender.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/SubscribeRequest.schema.ts +20 -0
- package/src/cfg/generated/_utils/schemas/SubscribeResponse.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/Subscription.schema.ts +41 -0
- package/src/cfg/generated/_utils/schemas/SubscriptionCreate.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/SubscriptionCreateRequest.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/SubscriptionList.schema.ts +32 -0
- package/src/cfg/generated/_utils/schemas/SubscriptionOverview.schema.ts +37 -0
- package/src/cfg/generated/_utils/schemas/SubscriptionRequest.schema.ts +26 -0
- package/src/cfg/generated/_utils/schemas/SuccessResponse.schema.ts +20 -0
- package/src/cfg/generated/_utils/schemas/SupportedProviders.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/Tariff.schema.ts +34 -0
- package/src/cfg/generated/_utils/schemas/TaskStatistics.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/TestEmailRequest.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/Ticket.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/TicketRequest.schema.ts +18 -0
- package/src/cfg/generated/_utils/schemas/TokenRefresh.schema.ts +16 -0
- package/src/cfg/generated/_utils/schemas/TokenRefreshRequest.schema.ts +15 -0
- package/src/cfg/generated/_utils/schemas/Transaction.schema.ts +35 -0
- package/src/cfg/generated/_utils/schemas/Unsubscribe.schema.ts +19 -0
- package/src/cfg/generated/_utils/schemas/UnsubscribeRequest.schema.ts +19 -0
- package/src/cfg/generated/_utils/schemas/User.schema.ts +34 -0
- package/src/cfg/generated/_utils/schemas/UserBalance.schema.ts +29 -0
- package/src/cfg/generated/_utils/schemas/UserProfileUpdateRequest.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/WebhookEvent.schema.ts +31 -0
- package/src/cfg/generated/_utils/schemas/WebhookEventList.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/WebhookEventListRequest.schema.ts +25 -0
- package/src/cfg/generated/_utils/schemas/WebhookEventRequest.schema.ts +30 -0
- package/src/cfg/generated/_utils/schemas/WebhookHealth.schema.ts +21 -0
- package/src/cfg/generated/_utils/schemas/WebhookProviderStats.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/WebhookProviderStatsRequest.schema.ts +23 -0
- package/src/cfg/generated/_utils/schemas/WebhookResponse.schema.ts +27 -0
- package/src/cfg/generated/_utils/schemas/WebhookResponseRequest.schema.ts +27 -0
- package/src/cfg/generated/_utils/schemas/WebhookStats.schema.ts +27 -0
- package/src/cfg/generated/_utils/schemas/WebhookStatsRequest.schema.ts +27 -0
- package/src/cfg/generated/_utils/schemas/WorkerAction.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/WorkerActionRequest.schema.ts +22 -0
- package/src/cfg/generated/_utils/schemas/index.ts +160 -0
- package/src/cfg/generated/api-instance.ts +131 -0
- package/src/cfg/generated/cfg__accounts/client.ts +30 -0
- package/src/cfg/generated/cfg__accounts/index.ts +2 -0
- package/src/cfg/generated/cfg__accounts/models.ts +100 -0
- package/src/cfg/generated/cfg__accounts__auth/client.ts +22 -0
- package/src/cfg/generated/cfg__accounts__auth/index.ts +2 -0
- package/src/cfg/generated/cfg__accounts__auth/models.ts +17 -0
- package/src/cfg/generated/cfg__accounts__user_profile/client.ts +77 -0
- package/src/cfg/generated/cfg__accounts__user_profile/index.ts +2 -0
- package/src/cfg/generated/cfg__accounts__user_profile/models.ts +56 -0
- package/src/cfg/generated/cfg__endpoints/client.ts +22 -0
- package/src/cfg/generated/cfg__endpoints/index.ts +2 -0
- package/src/cfg/generated/cfg__endpoints/models.ts +68 -0
- package/src/cfg/generated/cfg__health/client.ts +30 -0
- package/src/cfg/generated/cfg__health/index.ts +2 -0
- package/src/cfg/generated/cfg__health/models.ts +34 -0
- package/src/cfg/generated/cfg__leads/client.ts +79 -0
- package/src/cfg/generated/cfg__leads/index.ts +2 -0
- package/src/cfg/generated/cfg__leads/models.ts +99 -0
- package/src/cfg/generated/cfg__leads__lead_submission/client.ts +25 -0
- package/src/cfg/generated/cfg__leads__lead_submission/index.ts +2 -0
- package/src/cfg/generated/cfg__leads__lead_submission/models.ts +48 -0
- package/src/cfg/generated/cfg__newsletter/client.ts +38 -0
- package/src/cfg/generated/cfg__newsletter/index.ts +2 -0
- package/src/cfg/generated/cfg__newsletter/models.ts +71 -0
- package/src/cfg/generated/cfg__newsletter__bulk_email/client.ts +24 -0
- package/src/cfg/generated/cfg__newsletter__bulk_email/index.ts +2 -0
- package/src/cfg/generated/cfg__newsletter__bulk_email/models.ts +29 -0
- package/src/cfg/generated/cfg__newsletter__campaigns/client.ts +85 -0
- package/src/cfg/generated/cfg__newsletter__campaigns/index.ts +2 -0
- package/src/cfg/generated/cfg__newsletter__campaigns/models.ts +100 -0
- package/src/cfg/generated/cfg__newsletter__logs/client.ts +35 -0
- package/src/cfg/generated/cfg__newsletter__logs/index.ts +2 -0
- package/src/cfg/generated/cfg__newsletter__logs/models.ts +51 -0
- package/src/cfg/generated/cfg__newsletter__newsletters/client.ts +45 -0
- package/src/cfg/generated/cfg__newsletter__newsletters/index.ts +2 -0
- package/src/cfg/generated/cfg__newsletter__newsletters/models.ts +42 -0
- package/src/cfg/generated/cfg__newsletter__subscriptions/client.ts +55 -0
- package/src/cfg/generated/cfg__newsletter__subscriptions/index.ts +2 -0
- package/src/cfg/generated/cfg__newsletter__subscriptions/models.ts +92 -0
- package/src/cfg/generated/cfg__newsletter__testing/client.ts +24 -0
- package/src/cfg/generated/cfg__newsletter__testing/index.ts +2 -0
- package/src/cfg/generated/cfg__newsletter__testing/models.ts +24 -0
- package/src/cfg/generated/cfg__payments/client.ts +1814 -0
- package/src/cfg/generated/cfg__payments/index.ts +2 -0
- package/src/cfg/generated/cfg__payments/models.ts +1855 -0
- package/src/cfg/generated/cfg__payments__webhooks/client.ts +75 -0
- package/src/cfg/generated/cfg__payments__webhooks/index.ts +2 -0
- package/src/cfg/generated/cfg__payments__webhooks/models.ts +87 -0
- package/src/cfg/generated/cfg__support/client.ts +133 -0
- package/src/cfg/generated/cfg__support/index.ts +2 -0
- package/src/cfg/generated/cfg__support/models.ts +165 -0
- package/src/cfg/generated/cfg__tasks/client.ts +94 -0
- package/src/cfg/generated/cfg__tasks/index.ts +2 -0
- package/src/cfg/generated/cfg__tasks/models.ts +140 -0
- package/src/cfg/generated/client.ts +302 -0
- package/src/cfg/generated/enums.ts +608 -0
- package/src/cfg/generated/errors.ts +116 -0
- package/src/cfg/generated/http.ts +98 -0
- package/src/cfg/generated/index.ts +299 -0
- package/src/cfg/generated/logger.ts +259 -0
- package/src/cfg/generated/package.json +39 -0
- package/src/cfg/generated/retry.ts +175 -0
- package/src/cfg/generated/schema.ts +18399 -0
- package/src/cfg/generated/storage.ts +158 -0
- package/src/cfg/generated/tsconfig.json +20 -0
- package/src/cfg/services/auth/AuthService.ts +165 -0
- package/src/cfg/services/auth/index.ts +7 -0
- package/src/cfg/services/index.ts +31 -0
- package/src/cfg/services/leads/LeadsService.ts +133 -0
- package/src/cfg/services/leads/index.ts +7 -0
- package/src/cfg/services/newsletter/BulkEmailService.ts +35 -0
- package/src/cfg/services/newsletter/CampaignsService.ts +138 -0
- package/src/cfg/services/newsletter/NewsletterService.ts +79 -0
- package/src/cfg/services/newsletter/NewslettersListService.ts +48 -0
- package/src/cfg/services/newsletter/index.ts +10 -0
- package/src/cfg/services/payments/ApiKeysService.ts +183 -0
- package/src/cfg/services/payments/DashboardService.ts +197 -0
- package/src/cfg/services/payments/PaymentsService.ts +192 -0
- package/src/cfg/services/payments/SubscriptionsService.ts +202 -0
- package/src/cfg/services/payments/index.ts +10 -0
- package/src/cfg/services/support/SupportService.ts +142 -0
- package/src/cfg/services/support/index.ts +7 -0
- package/src/cfg/services/tasks/TasksService.ts +170 -0
- package/src/cfg/services/tasks/index.ts +7 -0
- package/src/cfg/services/webhooks/WebhooksService.ts +108 -0
- package/src/cfg/services/webhooks/index.ts +7 -0
- package/src/index.ts +35 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/cfg/generated/cfg__accounts__auth/client.ts","../src/cfg/generated/cfg__accounts__auth/models.ts","../src/cfg/generated/cfg__newsletter__bulk_email/client.ts","../src/cfg/generated/cfg__newsletter__bulk_email/models.ts","../src/cfg/generated/cfg__newsletter__campaigns/client.ts","../src/cfg/generated/cfg__newsletter__campaigns/models.ts","../src/cfg/generated/cfg__leads__lead_submission/client.ts","../src/cfg/generated/cfg__leads__lead_submission/models.ts","../src/cfg/generated/cfg__newsletter__logs/client.ts","../src/cfg/generated/cfg__newsletter__logs/models.ts","../src/cfg/generated/cfg__newsletter__newsletters/client.ts","../src/cfg/generated/cfg__newsletter__newsletters/models.ts","../src/cfg/generated/cfg__newsletter__subscriptions/client.ts","../src/cfg/generated/cfg__newsletter__subscriptions/models.ts","../src/cfg/generated/cfg__newsletter__testing/client.ts","../src/cfg/generated/cfg__newsletter__testing/models.ts","../src/cfg/generated/cfg__accounts__user_profile/client.ts","../src/cfg/generated/cfg__accounts__user_profile/models.ts","../src/cfg/generated/cfg__payments__webhooks/client.ts","../src/cfg/generated/cfg__payments__webhooks/models.ts","../src/cfg/generated/cfg__accounts/client.ts","../src/cfg/generated/cfg__accounts/models.ts","../src/cfg/generated/cfg__endpoints/client.ts","../src/cfg/generated/cfg__endpoints/models.ts","../src/cfg/generated/cfg__health/client.ts","../src/cfg/generated/cfg__health/models.ts","../src/cfg/generated/cfg__leads/client.ts","../src/cfg/generated/cfg__leads/models.ts","../src/cfg/generated/cfg__newsletter/client.ts","../src/cfg/generated/cfg__newsletter/models.ts","../src/cfg/generated/cfg__payments/client.ts","../src/cfg/generated/cfg__payments/models.ts","../src/cfg/generated/cfg__support/client.ts","../src/cfg/generated/cfg__support/models.ts","../src/cfg/generated/cfg__tasks/client.ts","../src/cfg/generated/cfg__tasks/models.ts","../src/cfg/generated/http.ts","../src/cfg/generated/errors.ts","../src/cfg/generated/logger.ts","../src/cfg/generated/retry.ts","../src/cfg/generated/client.ts","../src/cfg/generated/schema.ts","../src/cfg/generated/storage.ts","../src/cfg/generated/enums.ts","../src/cfg/generated/_utils/schemas/index.ts","../src/cfg/generated/_utils/schemas/APIKeyCreate.schema.ts","../src/cfg/generated/_utils/schemas/APIKeyCreateRequest.schema.ts","../src/cfg/generated/_utils/schemas/APIKeyDetail.schema.ts","../src/cfg/generated/_utils/schemas/APIKeyList.schema.ts","../src/cfg/generated/_utils/schemas/APIKeyUpdate.schema.ts","../src/cfg/generated/_utils/schemas/APIKeyUpdateRequest.schema.ts","../src/cfg/generated/_utils/schemas/APIKeyValidationRequest.schema.ts","../src/cfg/generated/_utils/schemas/APIKeyValidationResponse.schema.ts","../src/cfg/generated/_utils/schemas/APIKeysOverview.schema.ts","../src/cfg/generated/_utils/schemas/APIResponse.schema.ts","../src/cfg/generated/_utils/schemas/APIResponseRequest.schema.ts","../src/cfg/generated/_utils/schemas/AdminPaymentCreate.schema.ts","../src/cfg/generated/_utils/schemas/AdminPaymentCreateRequest.schema.ts","../src/cfg/generated/_utils/schemas/AdminPaymentDetail.schema.ts","../src/cfg/generated/_utils/schemas/AdminUser.schema.ts","../src/cfg/generated/_utils/schemas/AdminPaymentList.schema.ts","../src/cfg/generated/_utils/schemas/AdminPaymentStats.schema.ts","../src/cfg/generated/_utils/schemas/AdminPaymentUpdate.schema.ts","../src/cfg/generated/_utils/schemas/AdminPaymentUpdateRequest.schema.ts","../src/cfg/generated/_utils/schemas/BalanceOverview.schema.ts","../src/cfg/generated/_utils/schemas/BulkEmailRequest.schema.ts","../src/cfg/generated/_utils/schemas/BulkEmailResponse.schema.ts","../src/cfg/generated/_utils/schemas/ChartDataPoint.schema.ts","../src/cfg/generated/_utils/schemas/ChartSeries.schema.ts","../src/cfg/generated/_utils/schemas/Currency.schema.ts","../src/cfg/generated/_utils/schemas/CurrencyAnalyticsItem.schema.ts","../src/cfg/generated/_utils/schemas/CurrencyList.schema.ts","../src/cfg/generated/_utils/schemas/EmailLog.schema.ts","../src/cfg/generated/_utils/schemas/Endpoint.schema.ts","../src/cfg/generated/_utils/schemas/EndpointGroup.schema.ts","../src/cfg/generated/_utils/schemas/EndpointsStatus.schema.ts","../src/cfg/generated/_utils/schemas/ErrorResponse.schema.ts","../src/cfg/generated/_utils/schemas/HealthCheck.schema.ts","../src/cfg/generated/_utils/schemas/LeadSubmission.schema.ts","../src/cfg/generated/_utils/schemas/LeadSubmissionError.schema.ts","../src/cfg/generated/_utils/schemas/LeadSubmissionRequest.schema.ts","../src/cfg/generated/_utils/schemas/LeadSubmissionResponse.schema.ts","../src/cfg/generated/_utils/schemas/Message.schema.ts","../src/cfg/generated/_utils/schemas/Sender.schema.ts","../src/cfg/generated/_utils/schemas/MessageCreate.schema.ts","../src/cfg/generated/_utils/schemas/MessageCreateRequest.schema.ts","../src/cfg/generated/_utils/schemas/MessageRequest.schema.ts","../src/cfg/generated/_utils/schemas/Network.schema.ts","../src/cfg/generated/_utils/schemas/Newsletter.schema.ts","../src/cfg/generated/_utils/schemas/NewsletterCampaign.schema.ts","../src/cfg/generated/_utils/schemas/NewsletterCampaignRequest.schema.ts","../src/cfg/generated/_utils/schemas/NewsletterSubscription.schema.ts","../src/cfg/generated/_utils/schemas/OTPErrorResponse.schema.ts","../src/cfg/generated/_utils/schemas/OTPRequestRequest.schema.ts","../src/cfg/generated/_utils/schemas/OTPRequestResponse.schema.ts","../src/cfg/generated/_utils/schemas/OTPVerifyRequest.schema.ts","../src/cfg/generated/_utils/schemas/OTPVerifyResponse.schema.ts","../src/cfg/generated/_utils/schemas/User.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedAPIKeyListList.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedAdminPaymentListList.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedAdminPaymentStatsList.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedAdminUserList.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedCurrencyListList.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedEmailLogList.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedEndpointGroupList.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedLeadSubmissionList.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedMessageList.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedNetworkList.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedNewsletterCampaignList.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedNewsletterList.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedNewsletterSubscriptionList.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedPaymentListList.schema.ts","../src/cfg/generated/_utils/schemas/PaymentList.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedProviderCurrencyList.schema.ts","../src/cfg/generated/_utils/schemas/ProviderCurrency.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedRecentPaymentList.schema.ts","../src/cfg/generated/_utils/schemas/RecentPayment.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedRecentTransactionList.schema.ts","../src/cfg/generated/_utils/schemas/RecentTransaction.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedSubscriptionListList.schema.ts","../src/cfg/generated/_utils/schemas/SubscriptionList.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedTariffList.schema.ts","../src/cfg/generated/_utils/schemas/Tariff.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedTicketList.schema.ts","../src/cfg/generated/_utils/schemas/Ticket.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedTransactionList.schema.ts","../src/cfg/generated/_utils/schemas/Transaction.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedUserBalanceList.schema.ts","../src/cfg/generated/_utils/schemas/UserBalance.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedWebhookEventListList.schema.ts","../src/cfg/generated/_utils/schemas/WebhookEventList.schema.ts","../src/cfg/generated/_utils/schemas/WebhookEvent.schema.ts","../src/cfg/generated/_utils/schemas/PaginatedWebhookStatsList.schema.ts","../src/cfg/generated/_utils/schemas/WebhookStats.schema.ts","../src/cfg/generated/_utils/schemas/PatchedAPIKeyUpdateRequest.schema.ts","../src/cfg/generated/_utils/schemas/PatchedAdminPaymentUpdateRequest.schema.ts","../src/cfg/generated/_utils/schemas/PatchedLeadSubmissionRequest.schema.ts","../src/cfg/generated/_utils/schemas/PatchedMessageRequest.schema.ts","../src/cfg/generated/_utils/schemas/PatchedNewsletterCampaignRequest.schema.ts","../src/cfg/generated/_utils/schemas/PatchedPaymentRequest.schema.ts","../src/cfg/generated/_utils/schemas/PatchedSubscriptionRequest.schema.ts","../src/cfg/generated/_utils/schemas/PatchedTicketRequest.schema.ts","../src/cfg/generated/_utils/schemas/PatchedUnsubscribeRequest.schema.ts","../src/cfg/generated/_utils/schemas/PatchedUserProfileUpdateRequest.schema.ts","../src/cfg/generated/_utils/schemas/Payment.schema.ts","../src/cfg/generated/_utils/schemas/PaymentAnalyticsResponse.schema.ts","../src/cfg/generated/_utils/schemas/ProviderAnalyticsItem.schema.ts","../src/cfg/generated/_utils/schemas/PaymentCreate.schema.ts","../src/cfg/generated/_utils/schemas/PaymentCreateRequest.schema.ts","../src/cfg/generated/_utils/schemas/PaymentOverview.schema.ts","../src/cfg/generated/_utils/schemas/PaymentRequest.schema.ts","../src/cfg/generated/_utils/schemas/PaymentsChartResponse.schema.ts","../src/cfg/generated/_utils/schemas/PaymentsDashboardOverview.schema.ts","../src/cfg/generated/_utils/schemas/PaymentsMetrics.schema.ts","../src/cfg/generated/_utils/schemas/SubscriptionOverview.schema.ts","../src/cfg/generated/_utils/schemas/QueueAction.schema.ts","../src/cfg/generated/_utils/schemas/QueueActionRequest.schema.ts","../src/cfg/generated/_utils/schemas/QueueStatus.schema.ts","../src/cfg/generated/_utils/schemas/QuickHealth.schema.ts","../src/cfg/generated/_utils/schemas/SendCampaignRequest.schema.ts","../src/cfg/generated/_utils/schemas/SendCampaignResponse.schema.ts","../src/cfg/generated/_utils/schemas/SubscribeRequest.schema.ts","../src/cfg/generated/_utils/schemas/SubscribeResponse.schema.ts","../src/cfg/generated/_utils/schemas/Subscription.schema.ts","../src/cfg/generated/_utils/schemas/SubscriptionCreate.schema.ts","../src/cfg/generated/_utils/schemas/SubscriptionCreateRequest.schema.ts","../src/cfg/generated/_utils/schemas/SubscriptionRequest.schema.ts","../src/cfg/generated/_utils/schemas/SuccessResponse.schema.ts","../src/cfg/generated/_utils/schemas/SupportedProviders.schema.ts","../src/cfg/generated/_utils/schemas/TaskStatistics.schema.ts","../src/cfg/generated/_utils/schemas/TestEmailRequest.schema.ts","../src/cfg/generated/_utils/schemas/TicketRequest.schema.ts","../src/cfg/generated/_utils/schemas/TokenRefresh.schema.ts","../src/cfg/generated/_utils/schemas/TokenRefreshRequest.schema.ts","../src/cfg/generated/_utils/schemas/Unsubscribe.schema.ts","../src/cfg/generated/_utils/schemas/UnsubscribeRequest.schema.ts","../src/cfg/generated/_utils/schemas/UserProfileUpdateRequest.schema.ts","../src/cfg/generated/_utils/schemas/WebhookEventListRequest.schema.ts","../src/cfg/generated/_utils/schemas/WebhookEventRequest.schema.ts","../src/cfg/generated/_utils/schemas/WebhookHealth.schema.ts","../src/cfg/generated/_utils/schemas/WebhookProviderStats.schema.ts","../src/cfg/generated/_utils/schemas/WebhookProviderStatsRequest.schema.ts","../src/cfg/generated/_utils/schemas/WebhookResponse.schema.ts","../src/cfg/generated/_utils/schemas/WebhookResponseRequest.schema.ts","../src/cfg/generated/_utils/schemas/WebhookStatsRequest.schema.ts","../src/cfg/generated/_utils/schemas/WorkerAction.schema.ts","../src/cfg/generated/_utils/schemas/WorkerActionRequest.schema.ts","../src/cfg/generated/_utils/fetchers/index.ts","../src/cfg/generated/api-instance.ts","../src/cfg/generated/_utils/fetchers/cfg__accounts.ts","../src/cfg/generated/_utils/fetchers/cfg__accounts__auth.ts","../src/cfg/generated/_utils/fetchers/cfg__accounts__user_profile.ts","../src/cfg/generated/_utils/fetchers/cfg__endpoints.ts","../src/cfg/generated/_utils/fetchers/cfg__health.ts","../src/cfg/generated/_utils/fetchers/cfg__leads.ts","../src/cfg/generated/_utils/fetchers/cfg__leads__lead_submission.ts","../src/cfg/generated/_utils/fetchers/cfg__newsletter.ts","../src/cfg/generated/_utils/fetchers/cfg__newsletter__bulk_email.ts","../src/cfg/generated/_utils/fetchers/cfg__newsletter__campaigns.ts","../src/cfg/generated/_utils/fetchers/cfg__newsletter__logs.ts","../src/cfg/generated/_utils/fetchers/cfg__newsletter__newsletters.ts","../src/cfg/generated/_utils/fetchers/cfg__newsletter__subscriptions.ts","../src/cfg/generated/_utils/fetchers/cfg__newsletter__testing.ts","../src/cfg/generated/_utils/fetchers/cfg__payments.ts","../src/cfg/generated/_utils/fetchers/cfg__payments__webhooks.ts","../src/cfg/generated/_utils/fetchers/cfg__support.ts","../src/cfg/generated/_utils/fetchers/cfg__tasks.ts","../src/cfg/generated/_utils/hooks/index.ts","../src/cfg/generated/_utils/hooks/cfg__accounts__auth.ts","../src/cfg/generated/_utils/hooks/cfg__newsletter__bulk_email.ts","../src/cfg/generated/_utils/hooks/cfg__newsletter__campaigns.ts","../src/cfg/generated/_utils/hooks/cfg__leads__lead_submission.ts","../src/cfg/generated/_utils/hooks/cfg__newsletter__logs.ts","../src/cfg/generated/_utils/hooks/cfg__newsletter__newsletters.ts","../src/cfg/generated/_utils/hooks/cfg__newsletter__subscriptions.ts","../src/cfg/generated/_utils/hooks/cfg__newsletter__testing.ts","../src/cfg/generated/_utils/hooks/cfg__accounts__user_profile.ts","../src/cfg/generated/_utils/hooks/cfg__payments__webhooks.ts","../src/cfg/generated/_utils/hooks/cfg__accounts.ts","../src/cfg/generated/_utils/hooks/cfg__endpoints.ts","../src/cfg/generated/_utils/hooks/cfg__health.ts","../src/cfg/generated/_utils/hooks/cfg__leads.ts","../src/cfg/generated/_utils/hooks/cfg__newsletter.ts","../src/cfg/generated/_utils/hooks/cfg__payments.ts","../src/cfg/generated/_utils/hooks/cfg__support.ts","../src/cfg/generated/_utils/hooks/cfg__tasks.ts","../src/cfg/generated/index.ts","../src/cfg/BaseClient.ts","../src/cfg/services/auth/AuthService.ts","../src/cfg/services/leads/LeadsService.ts","../src/cfg/services/support/SupportService.ts","../src/cfg/services/tasks/TasksService.ts","../src/cfg/services/webhooks/WebhooksService.ts","../src/cfg/services/payments/ApiKeysService.ts","../src/cfg/services/payments/PaymentsService.ts","../src/cfg/services/payments/SubscriptionsService.ts","../src/cfg/services/payments/DashboardService.ts","../src/cfg/services/newsletter/CampaignsService.ts","../src/cfg/services/newsletter/NewslettersListService.ts","../src/cfg/services/newsletter/BulkEmailService.ts","../src/cfg/services/newsletter/NewsletterService.ts"],"sourcesContent":["import * as Models from \"./models\";\n\n\n/**\n * API endpoints for Auth.\n */\nexport class CfgAuthAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n /**\n * Refresh JWT token.\n */\n async accountsTokenRefreshCreate(data: Models.TokenRefreshRequest): Promise<Models.TokenRefresh> {\n const response = await this.client.request('POST', \"/cfg/accounts/token/refresh/\", { body: data });\n return response;\n }\n\n}","/**\n * \n * Request model (no read-only fields).\n */\nexport interface TokenRefreshRequest {\n refresh: string;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface TokenRefresh {\n access: string;\n refresh: string;\n}\n\n","import * as Models from \"./models\";\n\n\n/**\n * API endpoints for Bulk Email.\n */\nexport class CfgBulkEmailAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n /**\n * Send Bulk Email\n * \n * Send bulk emails to multiple recipients using base email template.\n */\n async newsletterBulkCreate(data: Models.BulkEmailRequest): Promise<Models.BulkEmailResponse> {\n const response = await this.client.request('POST', \"/cfg/newsletter/bulk/\", { body: data });\n return response;\n }\n\n}","/**\n * Simple serializer for bulk email.\n * \n * Request model (no read-only fields).\n */\nexport interface BulkEmailRequest {\n recipients: Array<string>;\n subject: string;\n email_title: string;\n main_text: string;\n main_html_content?: string;\n button_text?: string;\n button_url?: string;\n secondary_text?: string;\n}\n\n/**\n * Response for bulk email sending.\n * \n * Response model (includes read-only fields).\n */\nexport interface BulkEmailResponse {\n success: boolean;\n sent_count: number;\n failed_count: number;\n total_recipients: number;\n error?: string;\n}\n\n","import * as Models from \"./models\";\n\n\n/**\n * API endpoints for Campaigns.\n */\nexport class CfgCampaignsAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n async newsletterCampaignsList(page?: number, page_size?: number): Promise<Models.PaginatedNewsletterCampaignList>;\n async newsletterCampaignsList(params?: { page?: number; page_size?: number }): Promise<Models.PaginatedNewsletterCampaignList>;\n\n /**\n * List Newsletter Campaigns\n * \n * Get a list of all newsletter campaigns.\n */\n async newsletterCampaignsList(...args: any[]): Promise<Models.PaginatedNewsletterCampaignList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { page: args[0], page_size: args[1] };\n }\n const response = await this.client.request('GET', \"/cfg/newsletter/campaigns/\", { params });\n return response;\n }\n\n /**\n * Create Newsletter Campaign\n * \n * Create a new newsletter campaign.\n */\n async newsletterCampaignsCreate(data: Models.NewsletterCampaignRequest): Promise<Models.NewsletterCampaign> {\n const response = await this.client.request('POST', \"/cfg/newsletter/campaigns/\", { body: data });\n return response;\n }\n\n /**\n * Get Campaign Details\n * \n * Retrieve details of a specific newsletter campaign.\n */\n async newsletterCampaignsRetrieve(id: number): Promise<Models.NewsletterCampaign> {\n const response = await this.client.request('GET', `/cfg/newsletter/campaigns/${id}/`);\n return response;\n }\n\n /**\n * Update Campaign\n * \n * Update a newsletter campaign.\n */\n async newsletterCampaignsUpdate(id: number, data: Models.NewsletterCampaignRequest): Promise<Models.NewsletterCampaign> {\n const response = await this.client.request('PUT', `/cfg/newsletter/campaigns/${id}/`, { body: data });\n return response;\n }\n\n /**\n * Delete Campaign\n * \n * Delete a newsletter campaign.\n */\n async newsletterCampaignsDestroy(id: number): Promise<void> {\n const response = await this.client.request('DELETE', `/cfg/newsletter/campaigns/${id}/`);\n return;\n }\n\n /**\n * Send Newsletter Campaign\n * \n * Send a newsletter campaign to all subscribers.\n */\n async newsletterCampaignsSendCreate(data: Models.SendCampaignRequest): Promise<Models.SendCampaignResponse> {\n const response = await this.client.request('POST', \"/cfg/newsletter/campaigns/send/\", { body: data });\n return response;\n }\n\n}","import * as Enums from \"../enums\";\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedNewsletterCampaignList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<NewsletterCampaign>;\n}\n\n/**\n * Serializer for NewsletterCampaign model.\n * \n * Request model (no read-only fields).\n */\nexport interface NewsletterCampaignRequest {\n newsletter: number;\n subject: string;\n email_title: string;\n main_text: string;\n main_html_content?: string;\n button_text?: string;\n button_url?: string;\n secondary_text?: string;\n}\n\n/**\n * Serializer for NewsletterCampaign model.\n * \n * Response model (includes read-only fields).\n */\nexport interface NewsletterCampaign {\n id: number;\n newsletter: number;\n newsletter_title: string;\n subject: string;\n email_title: string;\n main_text: string;\n main_html_content?: string;\n button_text?: string;\n button_url?: string;\n secondary_text?: string;\n /** * `draft` - Draft\n * `sending` - Sending\n * `sent` - Sent\n * `failed` - Failed */\n status: Enums.NewsletterCampaignStatus;\n created_at: string;\n sent_at: string | null;\n recipient_count: number;\n}\n\n/**\n * Simple serializer for sending campaign.\n * \n * Request model (no read-only fields).\n */\nexport interface SendCampaignRequest {\n campaign_id: number;\n}\n\n/**\n * Response for sending campaign.\n * \n * Response model (includes read-only fields).\n */\nexport interface SendCampaignResponse {\n success: boolean;\n message?: string;\n sent_count?: number;\n error?: string;\n}\n\n/**\n * Generic error response.\n * \n * Response model (includes read-only fields).\n */\nexport interface ErrorResponse {\n success?: boolean;\n message: string;\n}\n\n","import * as Models from \"./models\";\n\n\n/**\n * API endpoints for Lead Submission.\n */\nexport class CfgLeadSubmissionAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n /**\n * Submit Lead Form\n * \n * Submit a new lead from frontend contact form with automatic Telegram\n * notifications.\n */\n async leadsSubmitCreate(data: Models.LeadSubmissionRequest): Promise<Models.LeadSubmissionResponse> {\n const response = await this.client.request('POST', \"/cfg/leads/submit/\", { body: data });\n return response;\n }\n\n}","import * as Enums from \"../enums\";\n\n/**\n * Serializer for lead form submission from frontend.\n * \n * Request model (no read-only fields).\n */\nexport interface LeadSubmissionRequest {\n name: string;\n email: string;\n company?: string | null;\n company_site?: string | null;\n /** * `email` - Email\n * `whatsapp` - WhatsApp\n * `telegram` - Telegram\n * `phone` - Phone\n * `other` - Other */\n contact_type?: Enums.LeadSubmissionRequestContactType;\n contact_value?: string | null;\n subject?: string | null;\n message: string;\n extra?: string | null;\n /** Frontend URL where form was submitted */\n site_url: string;\n}\n\n/**\n * Response serializer for successful lead submission.\n * \n * Response model (includes read-only fields).\n */\nexport interface LeadSubmissionResponse {\n success: boolean;\n message: string;\n lead_id: number;\n}\n\n/**\n * Response serializer for lead submission errors.\n * \n * Response model (includes read-only fields).\n */\nexport interface LeadSubmissionError {\n success: boolean;\n error: string;\n details?: Record<string, any>;\n}\n\n","import * as Models from \"./models\";\n\n\n/**\n * API endpoints for Logs.\n */\nexport class CfgLogsAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n async newsletterLogsList(page?: number, page_size?: number): Promise<Models.PaginatedEmailLogList>;\n async newsletterLogsList(params?: { page?: number; page_size?: number }): Promise<Models.PaginatedEmailLogList>;\n\n /**\n * List Email Logs\n * \n * Get a list of email sending logs.\n */\n async newsletterLogsList(...args: any[]): Promise<Models.PaginatedEmailLogList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { page: args[0], page_size: args[1] };\n }\n const response = await this.client.request('GET', \"/cfg/newsletter/logs/\", { params });\n return response;\n }\n\n}","import * as Enums from \"../enums\";\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedEmailLogList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<EmailLog>;\n}\n\n/**\n * Serializer for EmailLog model.\n * \n * Response model (includes read-only fields).\n */\nexport interface EmailLog {\n id: string;\n user: number | null;\n user_email: string;\n newsletter: number | null;\n newsletter_title: string;\n /** Comma-separated email addresses */\n recipient: string;\n subject: string;\n body: string;\n /** * `pending` - Pending\n * `sent` - Sent\n * `failed` - Failed */\n status: Enums.EmailLogStatus;\n created_at: string;\n sent_at: string | null;\n error_message: string | null;\n}\n\n","import * as Models from \"./models\";\n\n\n/**\n * API endpoints for Newsletters.\n */\nexport class CfgNewslettersAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n async newsletterNewslettersList(page?: number, page_size?: number): Promise<Models.PaginatedNewsletterList>;\n async newsletterNewslettersList(params?: { page?: number; page_size?: number }): Promise<Models.PaginatedNewsletterList>;\n\n /**\n * List Active Newsletters\n * \n * Get a list of all active newsletters available for subscription.\n */\n async newsletterNewslettersList(...args: any[]): Promise<Models.PaginatedNewsletterList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { page: args[0], page_size: args[1] };\n }\n const response = await this.client.request('GET', \"/cfg/newsletter/newsletters/\", { params });\n return response;\n }\n\n /**\n * Get Newsletter Details\n * \n * Retrieve details of a specific newsletter.\n */\n async newsletterNewslettersRetrieve(id: number): Promise<Models.Newsletter> {\n const response = await this.client.request('GET', `/cfg/newsletter/newsletters/${id}/`);\n return response;\n }\n\n}","/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedNewsletterList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<Newsletter>;\n}\n\n/**\n * Serializer for Newsletter model.\n * \n * Response model (includes read-only fields).\n */\nexport interface Newsletter {\n id: number;\n title: string;\n description?: string;\n is_active?: boolean;\n /** Automatically subscribe new users to this newsletter */\n auto_subscribe?: boolean;\n created_at: string;\n updated_at: string;\n subscribers_count: number;\n}\n\n","import * as Models from \"./models\";\n\n\n/**\n * API endpoints for Subscriptions.\n */\nexport class CfgSubscriptionsAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n /**\n * Subscribe to Newsletter\n * \n * Subscribe an email address to a newsletter.\n */\n async newsletterSubscribeCreate(data: Models.SubscribeRequest): Promise<Models.SubscribeResponse> {\n const response = await this.client.request('POST', \"/cfg/newsletter/subscribe/\", { body: data });\n return response;\n }\n\n async newsletterSubscriptionsList(page?: number, page_size?: number): Promise<Models.PaginatedNewsletterSubscriptionList>;\n async newsletterSubscriptionsList(params?: { page?: number; page_size?: number }): Promise<Models.PaginatedNewsletterSubscriptionList>;\n\n /**\n * List User Subscriptions\n * \n * Get a list of current user's active newsletter subscriptions.\n */\n async newsletterSubscriptionsList(...args: any[]): Promise<Models.PaginatedNewsletterSubscriptionList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { page: args[0], page_size: args[1] };\n }\n const response = await this.client.request('GET', \"/cfg/newsletter/subscriptions/\", { params });\n return response;\n }\n\n /**\n * Unsubscribe from Newsletter\n * \n * Unsubscribe from a newsletter using subscription ID.\n */\n async newsletterUnsubscribeCreate(data: Models.UnsubscribeRequest): Promise<Models.SuccessResponse> {\n const response = await this.client.request('POST', \"/cfg/newsletter/unsubscribe/\", { body: data });\n return response;\n }\n\n}","/**\n * Simple serializer for newsletter subscription.\n * \n * Request model (no read-only fields).\n */\nexport interface SubscribeRequest {\n newsletter_id: number;\n email: string;\n}\n\n/**\n * Response for subscription.\n * \n * Response model (includes read-only fields).\n */\nexport interface SubscribeResponse {\n success: boolean;\n message: string;\n subscription_id?: number;\n}\n\n/**\n * Generic error response.\n * \n * Response model (includes read-only fields).\n */\nexport interface ErrorResponse {\n success?: boolean;\n message: string;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedNewsletterSubscriptionList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<NewsletterSubscription>;\n}\n\n/**\n * Simple serializer for unsubscribe.\n * \n * Request model (no read-only fields).\n */\nexport interface UnsubscribeRequest {\n subscription_id: number;\n}\n\n/**\n * Generic success response.\n * \n * Response model (includes read-only fields).\n */\nexport interface SuccessResponse {\n success: boolean;\n message: string;\n}\n\n/**\n * Serializer for NewsletterSubscription model.\n * \n * Response model (includes read-only fields).\n */\nexport interface NewsletterSubscription {\n id: number;\n newsletter: number;\n newsletter_title: string;\n user?: number | null;\n user_email: string;\n email: string;\n is_active?: boolean;\n subscribed_at: string;\n unsubscribed_at: string | null;\n}\n\n","import * as Models from \"./models\";\n\n\n/**\n * API endpoints for Testing.\n */\nexport class CfgTestingAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n /**\n * Test Email Sending\n * \n * Send a test email to verify mailer configuration.\n */\n async newsletterTestCreate(data: Models.TestEmailRequest): Promise<Models.BulkEmailResponse> {\n const response = await this.client.request('POST', \"/cfg/newsletter/test/\", { body: data });\n return response;\n }\n\n}","/**\n * Simple serializer for test email.\n * \n * Request model (no read-only fields).\n */\nexport interface TestEmailRequest {\n email: string;\n subject?: string;\n message?: string;\n}\n\n/**\n * Response for bulk email sending.\n * \n * Response model (includes read-only fields).\n */\nexport interface BulkEmailResponse {\n success: boolean;\n sent_count: number;\n failed_count: number;\n total_recipients: number;\n error?: string;\n}\n\n","import * as Models from \"./models\";\n\n\n/**\n * API endpoints for User Profile.\n */\nexport class CfgUserProfileAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n /**\n * Get current user profile\n * \n * Retrieve the current authenticated user's profile information.\n */\n async accountsProfileRetrieve(): Promise<Models.User> {\n const response = await this.client.request('GET', \"/cfg/accounts/profile/\");\n return response;\n }\n\n /**\n * Upload user avatar\n * \n * Upload avatar image for the current authenticated user. Accepts\n * multipart/form-data with 'avatar' field.\n */\n async accountsProfileAvatarCreate(data: FormData): Promise<Models.User> {\n const response = await this.client.request('POST', \"/cfg/accounts/profile/avatar/\", { formData: data });\n return response;\n }\n\n /**\n * Partial update user profile\n * \n * Partially update the current authenticated user's profile information.\n * Supports avatar upload.\n */\n async accountsProfilePartialUpdate(data: Models.UserProfileUpdateRequest): Promise<Models.User> {\n const response = await this.client.request('PUT', \"/cfg/accounts/profile/partial/\", { body: data });\n return response;\n }\n\n /**\n * Partial update user profile\n * \n * Partially update the current authenticated user's profile information.\n * Supports avatar upload.\n */\n async accountsProfilePartialPartialUpdate(data?: Models.PatchedUserProfileUpdateRequest): Promise<Models.User> {\n const response = await this.client.request('PATCH', \"/cfg/accounts/profile/partial/\", { body: data });\n return response;\n }\n\n /**\n * Update user profile\n * \n * Update the current authenticated user's profile information.\n */\n async accountsProfileUpdateUpdate(data: Models.UserProfileUpdateRequest): Promise<Models.User> {\n const response = await this.client.request('PUT', \"/cfg/accounts/profile/update/\", { body: data });\n return response;\n }\n\n /**\n * Update user profile\n * \n * Update the current authenticated user's profile information.\n */\n async accountsProfileUpdatePartialUpdate(data?: Models.PatchedUserProfileUpdateRequest): Promise<Models.User> {\n const response = await this.client.request('PATCH', \"/cfg/accounts/profile/update/\", { body: data });\n return response;\n }\n\n}","/**\n * Serializer for user details.\n * \n * Response model (includes read-only fields).\n */\nexport interface User {\n id: number;\n email: string;\n first_name?: string;\n last_name?: string;\n /** Get user's full name. */\n full_name: string;\n /** Get user's initials for avatar fallback. */\n initials: string;\n /** Get formatted username for display. */\n display_username: string;\n company?: string;\n phone?: string;\n position?: string;\n avatar: string | null;\n /** Designates whether the user can log into this admin site. */\n is_staff: boolean;\n /** Designates that this user has all permissions without explicitly assigning them. */\n is_superuser: boolean;\n date_joined: string;\n last_login: string | null;\n /** Get count of unanswered messages for the user. */\n unanswered_messages_count: number;\n}\n\n/**\n * Serializer for updating user profile.\n * \n * Request model (no read-only fields).\n */\nexport interface UserProfileUpdateRequest {\n first_name?: string;\n last_name?: string;\n company?: string;\n phone?: string;\n position?: string;\n}\n\n/**\n * Serializer for updating user profile.\n * \n * Request model (no read-only fields).\n */\nexport interface PatchedUserProfileUpdateRequest {\n first_name?: string;\n last_name?: string;\n company?: string;\n phone?: string;\n position?: string;\n}\n\n","import * as Models from \"./models\";\n\n\n/**\n * API endpoints for Webhooks.\n */\nexport class CfgWebhooksAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n /**\n * Webhook Endpoint Info\n * \n * Get webhook endpoint information for debugging and configuration\n */\n async paymentsWebhooksRetrieve(provider: string): Promise<Models.WebhookResponse> {\n const response = await this.client.request('GET', `/cfg/payments/webhooks/${provider}/`);\n return response;\n }\n\n /**\n * Process Webhook\n * \n * Process incoming webhook from payment provider\n */\n async paymentsWebhooksCreate(provider: string, data: Models.WebhookResponseRequest): Promise<Models.WebhookResponse> {\n const response = await this.client.request('POST', `/cfg/payments/webhooks/${provider}/`, { body: data });\n return response;\n }\n\n /**\n * Webhook Health Check\n * \n * Check webhook service health status and recent activity metrics\n */\n async paymentsWebhooksHealthRetrieve(): Promise<Models.WebhookHealth> {\n const response = await this.client.request('GET', \"/cfg/payments/webhooks/health/\");\n return response;\n }\n\n /**\n * Supported Webhook Providers\n * \n * Get list of supported webhook providers with configuration details\n */\n async paymentsWebhooksProvidersRetrieve(): Promise<Models.SupportedProviders> {\n const response = await this.client.request('GET', \"/cfg/payments/webhooks/providers/\");\n return response;\n }\n\n async paymentsWebhooksStatsRetrieve(days?: number): Promise<Models.WebhookStats>;\n async paymentsWebhooksStatsRetrieve(params?: { days?: number }): Promise<Models.WebhookStats>;\n\n /**\n * Webhook Statistics\n * \n * Get webhook processing statistics for a given time period\n */\n async paymentsWebhooksStatsRetrieve(...args: any[]): Promise<Models.WebhookStats> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { days: args[0] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/webhooks/stats/\", { params });\n return response;\n }\n\n}","/**\n * Serializer for webhook processing response. Standard response format for all\n * webhook endpoints.\n * \n * Response model (includes read-only fields).\n */\nexport interface WebhookResponse {\n /** Whether webhook was processed successfully */\n success: boolean;\n /** Processing result message */\n message: string;\n /** Internal payment ID */\n payment_id?: string;\n /** Provider payment ID */\n provider_payment_id?: string;\n /** Processing timestamp */\n processed_at?: string;\n}\n\n/**\n * Serializer for webhook processing response. Standard response format for all\n * webhook endpoints.\n * \n * Request model (no read-only fields).\n */\nexport interface WebhookResponseRequest {\n /** Whether webhook was processed successfully */\n success: boolean;\n /** Processing result message */\n message: string;\n /** Internal payment ID */\n payment_id?: string;\n /** Provider payment ID */\n provider_payment_id?: string;\n /** Processing timestamp */\n processed_at?: string;\n}\n\n/**\n * Serializer for webhook health check response.\n * \n * Response model (includes read-only fields).\n */\nexport interface WebhookHealth {\n /** Health status */\n status: string;\n /** Check timestamp */\n timestamp: string;\n /** Provider health status */\n providers: string;\n}\n\n/**\n * Serializer for supported providers response.\n * \n * Response model (includes read-only fields).\n */\nexport interface SupportedProviders {\n /** Request success status */\n success: boolean;\n /** List of supported providers */\n providers: string;\n /** Total number of providers */\n total_count: number;\n /** Response timestamp */\n timestamp: string;\n}\n\n/**\n * Serializer for comprehensive webhook statistics.\n * \n * Response model (includes read-only fields).\n */\nexport interface WebhookStats {\n total: number;\n successful: number;\n failed: number;\n pending: number;\n success_rate: number;\n /** Statistics by provider */\n providers: Record<string, any>;\n /** Events in last 24 hours */\n last_24h: Record<string, any>;\n avg_response_time: number;\n max_response_time: number;\n}\n\n","import * as Models from \"./models\";\n\n\n/**\n * API endpoints for Accounts.\n */\nexport class CfgAccountsAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n /**\n * Request OTP code to email or phone.\n */\n async otpRequestCreate(data: Models.OTPRequestRequest): Promise<Models.OTPRequestResponse> {\n const response = await this.client.request('POST', \"/cfg/accounts/otp/request/\", { body: data });\n return response;\n }\n\n /**\n * Verify OTP code and return JWT tokens.\n */\n async otpVerifyCreate(data: Models.OTPVerifyRequest): Promise<Models.OTPVerifyResponse> {\n const response = await this.client.request('POST', \"/cfg/accounts/otp/verify/\", { body: data });\n return response;\n }\n\n}","import * as Enums from \"../enums\";\n\n/**\n * Serializer for OTP request.\n * \n * Request model (no read-only fields).\n */\nexport interface OTPRequestRequest {\n /** Email address or phone number for OTP delivery */\n identifier: string;\n /** Delivery channel: 'email' or 'phone'. Auto-detected if not provided.\n\n * `email` - Email\n * `phone` - Phone */\n channel?: Enums.OTPRequestRequestChannel;\n /** Source URL for tracking registration (e.g., https://dashboard.unrealon.com) */\n source_url?: string;\n}\n\n/**\n * OTP request response.\n * \n * Response model (includes read-only fields).\n */\nexport interface OTPRequestResponse {\n /** Success message */\n message: string;\n}\n\n/**\n * Error response for OTP operations.\n * \n * Response model (includes read-only fields).\n */\nexport interface OTPErrorResponse {\n /** Error message */\n error: string;\n}\n\n/**\n * Serializer for OTP verification.\n * \n * Request model (no read-only fields).\n */\nexport interface OTPVerifyRequest {\n /** Email address or phone number used for OTP request */\n identifier: string;\n otp: string;\n /** Delivery channel: 'email' or 'phone'. Auto-detected if not provided.\n\n * `email` - Email\n * `phone` - Phone */\n channel?: Enums.OTPVerifyRequestChannel;\n /** Source URL for tracking login (e.g., https://dashboard.unrealon.com) */\n source_url?: string;\n}\n\n/**\n * OTP verification response.\n * \n * Response model (includes read-only fields).\n */\nexport interface OTPVerifyResponse {\n /** JWT refresh token */\n refresh: string;\n /** JWT access token */\n access: string;\n user: Record<string, any>;\n}\n\n/**\n * Serializer for user details.\n * \n * Response model (includes read-only fields).\n */\nexport interface User {\n id: number;\n email: string;\n first_name?: string;\n last_name?: string;\n /** Get user's full name. */\n full_name: string;\n /** Get user's initials for avatar fallback. */\n initials: string;\n /** Get formatted username for display. */\n display_username: string;\n company?: string;\n phone?: string;\n position?: string;\n avatar: string | null;\n /** Designates whether the user can log into this admin site. */\n is_staff: boolean;\n /** Designates that this user has all permissions without explicitly assigning them. */\n is_superuser: boolean;\n date_joined: string;\n last_login: string | null;\n /** Get count of unanswered messages for the user. */\n unanswered_messages_count: number;\n}\n\n","import * as Models from \"./models\";\n\n\n/**\n * API endpoints for Endpoints.\n */\nexport class CfgEndpointsAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n /**\n * Return endpoints status data.\n */\n async drfRetrieve(): Promise<Models.EndpointsStatus> {\n const response = await this.client.request('GET', \"/cfg/endpoints/drf/\");\n return response;\n }\n\n}","/**\n * Serializer for overall endpoints status response.\n * \n * Response model (includes read-only fields).\n */\nexport interface EndpointsStatus {\n /** Overall status: healthy, degraded, or unhealthy */\n status: string;\n /** Timestamp of the check */\n timestamp: string;\n /** Total number of endpoints checked */\n total_endpoints: number;\n /** Number of healthy endpoints */\n healthy: number;\n /** Number of unhealthy endpoints */\n unhealthy: number;\n /** Number of endpoints with warnings */\n warnings: number;\n /** Number of endpoints with errors */\n errors: number;\n /** Number of skipped endpoints */\n skipped: number;\n /** List of all endpoints with their status */\n endpoints: Array<Endpoint>;\n}\n\n/**\n * Serializer for single endpoint status.\n * \n * Response model (includes read-only fields).\n */\nexport interface Endpoint {\n /** Resolved URL (for parametrized URLs) or URL pattern */\n url: string;\n /** Original URL pattern (for parametrized URLs) */\n url_pattern?: string | null;\n /** Django URL name (if available) */\n url_name?: string | null;\n /** URL namespace */\n namespace?: string;\n /** URL group (up to 3 depth) */\n group: string;\n /** View function/class name */\n view?: string;\n /** Status: healthy, unhealthy, warning, error, skipped, pending */\n status: string;\n /** HTTP status code */\n status_code?: number | null;\n /** Response time in milliseconds */\n response_time_ms?: number | null;\n /** Whether endpoint is healthy */\n is_healthy?: boolean | null;\n /** Error message if check failed */\n error?: string;\n /** Error type: database, general, etc. */\n error_type?: string;\n /** Reason for warning/skip */\n reason?: string;\n /** Timestamp of last check */\n last_checked?: string | null;\n /** Whether URL has parameters that were resolved with test values */\n has_parameters?: boolean;\n /** Whether endpoint required JWT authentication */\n required_auth?: boolean;\n /** Whether endpoint returned 429 (rate limited) */\n rate_limited?: boolean;\n}\n\n","import * as Models from \"./models\";\n\n\n/**\n * API endpoints for Health.\n */\nexport class CfgHealthAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n /**\n * Return comprehensive health check data.\n */\n async drfRetrieve(): Promise<Models.HealthCheck> {\n const response = await this.client.request('GET', \"/cfg/health/drf/\");\n return response;\n }\n\n /**\n * Return minimal health status.\n */\n async drfQuickRetrieve(): Promise<Models.QuickHealth> {\n const response = await this.client.request('GET', \"/cfg/health/drf/quick/\");\n return response;\n }\n\n}","/**\n * Serializer for health check response.\n * \n * Response model (includes read-only fields).\n */\nexport interface HealthCheck {\n /** Overall health status: healthy, degraded, or unhealthy */\n status: string;\n /** Timestamp of the health check */\n timestamp: string;\n /** Service name */\n service: string;\n /** Django-CFG version */\n version: string;\n /** Detailed health checks for databases, cache, and system */\n checks: Record<string, any>;\n /** Environment information */\n environment: Record<string, any>;\n}\n\n/**\n * Serializer for quick health check response.\n * \n * Response model (includes read-only fields).\n */\nexport interface QuickHealth {\n /** Quick health status: ok or error */\n status: string;\n /** Timestamp of the health check */\n timestamp: string;\n /** Error message if health check failed */\n error?: string;\n}\n\n","import * as Models from \"./models\";\n\n\n/**\n * API endpoints for Leads.\n */\nexport class CfgLeadsAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n async list(page?: number, page_size?: number): Promise<Models.PaginatedLeadSubmissionList>;\n async list(params?: { page?: number; page_size?: number }): Promise<Models.PaginatedLeadSubmissionList>;\n\n /**\n * ViewSet for Lead model. Provides only submission functionality for leads\n * from frontend forms.\n */\n async list(...args: any[]): Promise<Models.PaginatedLeadSubmissionList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { page: args[0], page_size: args[1] };\n }\n const response = await this.client.request('GET', \"/cfg/leads/\", { params });\n return response;\n }\n\n /**\n * ViewSet for Lead model. Provides only submission functionality for leads\n * from frontend forms.\n */\n async create(data: Models.LeadSubmissionRequest): Promise<Models.LeadSubmission> {\n const response = await this.client.request('POST', \"/cfg/leads/\", { body: data });\n return response;\n }\n\n /**\n * ViewSet for Lead model. Provides only submission functionality for leads\n * from frontend forms.\n */\n async retrieve(id: number): Promise<Models.LeadSubmission> {\n const response = await this.client.request('GET', `/cfg/leads/${id}/`);\n return response;\n }\n\n /**\n * ViewSet for Lead model. Provides only submission functionality for leads\n * from frontend forms.\n */\n async update(id: number, data: Models.LeadSubmissionRequest): Promise<Models.LeadSubmission> {\n const response = await this.client.request('PUT', `/cfg/leads/${id}/`, { body: data });\n return response;\n }\n\n /**\n * ViewSet for Lead model. Provides only submission functionality for leads\n * from frontend forms.\n */\n async partialUpdate(id: number, data?: Models.PatchedLeadSubmissionRequest): Promise<Models.LeadSubmission> {\n const response = await this.client.request('PATCH', `/cfg/leads/${id}/`, { body: data });\n return response;\n }\n\n /**\n * ViewSet for Lead model. Provides only submission functionality for leads\n * from frontend forms.\n */\n async destroy(id: number): Promise<void> {\n const response = await this.client.request('DELETE', `/cfg/leads/${id}/`);\n return;\n }\n\n}","import * as Enums from \"../enums\";\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedLeadSubmissionList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<LeadSubmission>;\n}\n\n/**\n * Serializer for lead form submission from frontend.\n * \n * Request model (no read-only fields).\n */\nexport interface LeadSubmissionRequest {\n name: string;\n email: string;\n company?: string | null;\n company_site?: string | null;\n /** * `email` - Email\n * `whatsapp` - WhatsApp\n * `telegram` - Telegram\n * `phone` - Phone\n * `other` - Other */\n contact_type?: Enums.LeadSubmissionRequestContactType;\n contact_value?: string | null;\n subject?: string | null;\n message: string;\n extra?: string | null;\n /** Frontend URL where form was submitted */\n site_url: string;\n}\n\n/**\n * Serializer for lead form submission from frontend.\n * \n * Response model (includes read-only fields).\n */\nexport interface LeadSubmission {\n name: string;\n email: string;\n company?: string | null;\n company_site?: string | null;\n /** * `email` - Email\n * `whatsapp` - WhatsApp\n * `telegram` - Telegram\n * `phone` - Phone\n * `other` - Other */\n contact_type?: Enums.LeadSubmissionContactType;\n contact_value?: string | null;\n subject?: string | null;\n message: string;\n extra?: string | null;\n /** Frontend URL where form was submitted */\n site_url: string;\n}\n\n/**\n * Serializer for lead form submission from frontend.\n * \n * Request model (no read-only fields).\n */\nexport interface PatchedLeadSubmissionRequest {\n name?: string;\n email?: string;\n company?: string | null;\n company_site?: string | null;\n /** * `email` - Email\n * `whatsapp` - WhatsApp\n * `telegram` - Telegram\n * `phone` - Phone\n * `other` - Other */\n contact_type?: Enums.PatchedLeadSubmissionRequestContactType;\n contact_value?: string | null;\n subject?: string | null;\n message?: string;\n extra?: string | null;\n /** Frontend URL where form was submitted */\n site_url?: string;\n}\n\n","import * as Models from \"./models\";\n\n\n/**\n * API endpoints for Newsletter.\n */\nexport class CfgNewsletterAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n /**\n * Retrieve, update, or delete a newsletter campaign.\n */\n async campaignsPartialUpdate(id: number, data?: Models.PatchedNewsletterCampaignRequest): Promise<Models.NewsletterCampaign> {\n const response = await this.client.request('PATCH', `/cfg/newsletter/campaigns/${id}/`, { body: data });\n return response;\n }\n\n /**\n * Handle newsletter unsubscriptions.\n */\n async unsubscribeUpdate(data: Models.UnsubscribeRequest): Promise<Models.Unsubscribe> {\n const response = await this.client.request('PUT', \"/cfg/newsletter/unsubscribe/\", { body: data });\n return response;\n }\n\n /**\n * Handle newsletter unsubscriptions.\n */\n async unsubscribePartialUpdate(data?: Models.PatchedUnsubscribeRequest): Promise<Models.Unsubscribe> {\n const response = await this.client.request('PATCH', \"/cfg/newsletter/unsubscribe/\", { body: data });\n return response;\n }\n\n}","import * as Enums from \"../enums\";\n\n/**\n * Serializer for NewsletterCampaign model.\n * \n * Request model (no read-only fields).\n */\nexport interface PatchedNewsletterCampaignRequest {\n newsletter?: number;\n subject?: string;\n email_title?: string;\n main_text?: string;\n main_html_content?: string;\n button_text?: string;\n button_url?: string;\n secondary_text?: string;\n}\n\n/**\n * Serializer for NewsletterCampaign model.\n * \n * Response model (includes read-only fields).\n */\nexport interface NewsletterCampaign {\n id: number;\n newsletter: number;\n newsletter_title: string;\n subject: string;\n email_title: string;\n main_text: string;\n main_html_content?: string;\n button_text?: string;\n button_url?: string;\n secondary_text?: string;\n /** * `draft` - Draft\n * `sending` - Sending\n * `sent` - Sent\n * `failed` - Failed */\n status: Enums.NewsletterCampaignStatus;\n created_at: string;\n sent_at: string | null;\n recipient_count: number;\n}\n\n/**\n * Simple serializer for unsubscribe.\n * \n * Request model (no read-only fields).\n */\nexport interface UnsubscribeRequest {\n subscription_id: number;\n}\n\n/**\n * Simple serializer for unsubscribe.\n * \n * Response model (includes read-only fields).\n */\nexport interface Unsubscribe {\n subscription_id: number;\n}\n\n/**\n * Simple serializer for unsubscribe.\n * \n * Request model (no read-only fields).\n */\nexport interface PatchedUnsubscribeRequest {\n subscription_id?: number;\n}\n\n","import * as Models from \"./models\";\n\n\n/**\n * API endpoints for Payments.\n */\nexport class CfgPaymentsAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n async adminApiPaymentsList(currency__code?: string, ordering?: string, page?: number, page_size?: number, provider?: string, search?: string, status?: string, user?: number): Promise<Models.PaginatedAdminPaymentListList>;\n async adminApiPaymentsList(params?: { currency__code?: string; ordering?: string; page?: number; page_size?: number; provider?: string; search?: string; status?: string; user?: number }): Promise<Models.PaginatedAdminPaymentListList>;\n\n /**\n * Admin ViewSet for payment management. Provides full CRUD operations for\n * payments with admin-specific features.\n */\n async adminApiPaymentsList(...args: any[]): Promise<Models.PaginatedAdminPaymentListList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { currency__code: args[0], ordering: args[1], page: args[2], page_size: args[3], provider: args[4], search: args[5], status: args[6], user: args[7] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/admin/api/payments/\", { params });\n return response;\n }\n\n /**\n * Create payment with enhanced error handling.\n */\n async adminApiPaymentsCreate(data: Models.AdminPaymentCreateRequest): Promise<Models.AdminPaymentCreate> {\n const response = await this.client.request('POST', \"/cfg/payments/admin/api/payments/\", { body: data });\n return response;\n }\n\n /**\n * Admin ViewSet for payment management. Provides full CRUD operations for\n * payments with admin-specific features.\n */\n async adminApiPaymentsRetrieve(id: string): Promise<Models.AdminPaymentDetail> {\n const response = await this.client.request('GET', `/cfg/payments/admin/api/payments/${id}/`);\n return response;\n }\n\n /**\n * Admin ViewSet for payment management. Provides full CRUD operations for\n * payments with admin-specific features.\n */\n async adminApiPaymentsUpdate(id: string, data: Models.AdminPaymentUpdateRequest): Promise<Models.AdminPaymentUpdate> {\n const response = await this.client.request('PUT', `/cfg/payments/admin/api/payments/${id}/`, { body: data });\n return response;\n }\n\n /**\n * Admin ViewSet for payment management. Provides full CRUD operations for\n * payments with admin-specific features.\n */\n async adminApiPaymentsPartialUpdate(id: string, data?: Models.PatchedAdminPaymentUpdateRequest): Promise<Models.AdminPaymentUpdate> {\n const response = await this.client.request('PATCH', `/cfg/payments/admin/api/payments/${id}/`, { body: data });\n return response;\n }\n\n /**\n * Admin ViewSet for payment management. Provides full CRUD operations for\n * payments with admin-specific features.\n */\n async adminApiPaymentsDestroy(id: string): Promise<void> {\n const response = await this.client.request('DELETE', `/cfg/payments/admin/api/payments/${id}/`);\n return;\n }\n\n /**\n * Cancel a payment.\n */\n async adminApiPaymentsCancelCreate(id: string): Promise<Models.AdminPaymentDetail> {\n const response = await this.client.request('POST', `/cfg/payments/admin/api/payments/${id}/cancel/`);\n return response;\n }\n\n /**\n * Refresh payment status from provider via AJAX.\n */\n async adminApiPaymentsRefreshStatusCreate(id: string): Promise<Models.AdminPaymentDetail> {\n const response = await this.client.request('POST', `/cfg/payments/admin/api/payments/${id}/refresh_status/`);\n return response;\n }\n\n /**\n * Refund a payment.\n */\n async adminApiPaymentsRefundCreate(id: string): Promise<Models.AdminPaymentDetail> {\n const response = await this.client.request('POST', `/cfg/payments/admin/api/payments/${id}/refund/`);\n return response;\n }\n\n /**\n * Get comprehensive payment statistics.\n */\n async adminApiPaymentsStatsRetrieve(): Promise<Models.AdminPaymentStats> {\n const response = await this.client.request('GET', \"/cfg/payments/admin/api/payments/stats/\");\n return response;\n }\n\n async adminApiStatsList(ordering?: string, page?: number, page_size?: number, search?: string): Promise<Models.PaginatedAdminPaymentStatsList>;\n async adminApiStatsList(params?: { ordering?: string; page?: number; page_size?: number; search?: string }): Promise<Models.PaginatedAdminPaymentStatsList>;\n\n /**\n * Get overview statistics.\n */\n async adminApiStatsList(...args: any[]): Promise<Models.PaginatedAdminPaymentStatsList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { ordering: args[0], page: args[1], page_size: args[2], search: args[3] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/admin/api/stats/\", { params });\n return response;\n }\n\n /**\n * Admin ViewSet for comprehensive system statistics. Provides aggregated\n * statistics across all system components.\n */\n async adminApiStatsRetrieve(id: string): Promise<Models.AdminPaymentStats> {\n const response = await this.client.request('GET', `/cfg/payments/admin/api/stats/${id}/`);\n return response;\n }\n\n /**\n * Get detailed payment statistics.\n */\n async adminApiStatsPaymentsRetrieve(): Promise<Models.AdminPaymentStats> {\n const response = await this.client.request('GET', \"/cfg/payments/admin/api/stats/payments/\");\n return response;\n }\n\n /**\n * Get system health and performance statistics.\n */\n async adminApiStatsSystemRetrieve(): Promise<Models.AdminPaymentStats> {\n const response = await this.client.request('GET', \"/cfg/payments/admin/api/stats/system/\");\n return response;\n }\n\n /**\n * Get detailed webhook statistics.\n */\n async adminApiStatsWebhooksRetrieve(): Promise<Models.AdminPaymentStats> {\n const response = await this.client.request('GET', \"/cfg/payments/admin/api/stats/webhooks/\");\n return response;\n }\n\n async adminApiUsersList(is_active?: boolean, is_staff?: boolean, is_superuser?: boolean, ordering?: string, page?: number, page_size?: number, search?: string): Promise<Models.PaginatedAdminUserList>;\n async adminApiUsersList(params?: { is_active?: boolean; is_staff?: boolean; is_superuser?: boolean; ordering?: string; page?: number; page_size?: number; search?: string }): Promise<Models.PaginatedAdminUserList>;\n\n /**\n * Override list to limit results for dropdown.\n */\n async adminApiUsersList(...args: any[]): Promise<Models.PaginatedAdminUserList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { is_active: args[0], is_staff: args[1], is_superuser: args[2], ordering: args[3], page: args[4], page_size: args[5], search: args[6] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/admin/api/users/\", { params });\n return response;\n }\n\n /**\n * Admin ViewSet for user management. Provides read-only access to users\n * for admin interface.\n */\n async adminApiUsersRetrieve(id: number): Promise<Models.AdminUser> {\n const response = await this.client.request('GET', `/cfg/payments/admin/api/users/${id}/`);\n return response;\n }\n\n /**\n * Test webhook endpoint. Sends a test webhook to the specified URL with\n * the given event type. Useful for developers to test their webhook\n * implementations.\n */\n async adminApiWebhookTestTestCreate(data: Models.WebhookStatsRequest): Promise<Models.WebhookStats> {\n const response = await this.client.request('POST', \"/cfg/payments/admin/api/webhook-test/test/\", { body: data });\n return response;\n }\n\n async adminApiWebhooksList(ordering?: string, page?: number, page_size?: number, search?: string): Promise<Models.PaginatedWebhookStatsList>;\n async adminApiWebhooksList(params?: { ordering?: string; page?: number; page_size?: number; search?: string }): Promise<Models.PaginatedWebhookStatsList>;\n\n /**\n * List webhook providers and configurations with real ngrok URLs.\n */\n async adminApiWebhooksList(...args: any[]): Promise<Models.PaginatedWebhookStatsList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { ordering: args[0], page: args[1], page_size: args[2], search: args[3] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/admin/api/webhooks/\", { params });\n return response;\n }\n\n /**\n * Admin ViewSet for webhook configuration management. Read-only view for\n * webhook configurations and provider info. Requires admin permissions.\n */\n async adminApiWebhooksRetrieve(id: string): Promise<Models.WebhookStats> {\n const response = await this.client.request('GET', `/cfg/payments/admin/api/webhooks/${id}/`);\n return response;\n }\n\n async adminApiWebhooksEventsList(webhook_pk: string, ordering?: string, page?: number, page_size?: number, search?: string): Promise<Models.PaginatedWebhookEventListList>;\n async adminApiWebhooksEventsList(webhook_pk: string, params?: { ordering?: string; page?: number; page_size?: number; search?: string }): Promise<Models.PaginatedWebhookEventListList>;\n\n /**\n * List webhook events with filtering and pagination.\n */\n async adminApiWebhooksEventsList(...args: any[]): Promise<Models.PaginatedWebhookEventListList> {\n const webhook_pk = args[0];\n const isParamsObject = args.length === 2 && typeof args[1] === 'object' && args[1] !== null && !Array.isArray(args[1]);\n \n let params;\n if (isParamsObject) {\n params = args[1];\n } else {\n params = { ordering: args[1], page: args[2], page_size: args[3], search: args[4] };\n }\n const response = await this.client.request('GET', `/cfg/payments/admin/api/webhooks/${webhook_pk}/events/`, { params });\n return response;\n }\n\n /**\n * Admin ViewSet for webhook events management. Provides listing,\n * filtering, and actions for webhook events. Requires admin permissions.\n */\n async adminApiWebhooksEventsRetrieve(id: string, webhook_pk: string): Promise<Models.WebhookEventList[]> {\n const response = await this.client.request('GET', `/cfg/payments/admin/api/webhooks/${webhook_pk}/events/${id}/`);\n return (response as any).results || [];\n }\n\n /**\n * Retry a failed webhook event.\n */\n async adminApiWebhooksEventsRetryCreate(id: string, webhook_pk: string, data: Models.WebhookEventListRequest): Promise<Models.WebhookEventList> {\n const response = await this.client.request('POST', `/cfg/payments/admin/api/webhooks/${webhook_pk}/events/${id}/retry/`, { body: data });\n return response;\n }\n\n /**\n * Clear all webhook events.\n */\n async adminApiWebhooksEventsClearAllCreate(webhook_pk: string, data: Models.WebhookEventListRequest): Promise<Models.WebhookEventList> {\n const response = await this.client.request('POST', `/cfg/payments/admin/api/webhooks/${webhook_pk}/events/clear_all/`, { body: data });\n return response;\n }\n\n /**\n * Retry all failed webhook events.\n */\n async adminApiWebhooksEventsRetryFailedCreate(webhook_pk: string, data: Models.WebhookEventListRequest): Promise<Models.WebhookEventList> {\n const response = await this.client.request('POST', `/cfg/payments/admin/api/webhooks/${webhook_pk}/events/retry_failed/`, { body: data });\n return response;\n }\n\n /**\n * Get webhook statistics.\n */\n async adminApiWebhooksStatsRetrieve(): Promise<Models.WebhookStats> {\n const response = await this.client.request('GET', \"/cfg/payments/admin/api/webhooks/stats/\");\n return response;\n }\n\n async apiKeysList(is_active?: boolean, ordering?: string, page?: number, page_size?: number, search?: string, user?: number): Promise<Models.PaginatedAPIKeyListList>;\n async apiKeysList(params?: { is_active?: boolean; ordering?: string; page?: number; page_size?: number; search?: string; user?: number }): Promise<Models.PaginatedAPIKeyListList>;\n\n /**\n * Global API Key ViewSet: /api/api-keys/ Provides admin-level access to\n * all API keys with filtering and stats.\n */\n async apiKeysList(...args: any[]): Promise<Models.PaginatedAPIKeyListList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { is_active: args[0], ordering: args[1], page: args[2], page_size: args[3], search: args[4], user: args[5] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/api-keys/\", { params });\n return response;\n }\n\n /**\n * Global API Key ViewSet: /api/api-keys/ Provides admin-level access to\n * all API keys with filtering and stats.\n */\n async apiKeysCreate(data: Models.APIKeyCreateRequest): Promise<Models.APIKeyCreate> {\n const response = await this.client.request('POST', \"/cfg/payments/api-keys/\", { body: data });\n return response;\n }\n\n /**\n * Global API Key ViewSet: /api/api-keys/ Provides admin-level access to\n * all API keys with filtering and stats.\n */\n async apiKeysRetrieve(id: string): Promise<Models.APIKeyDetail> {\n const response = await this.client.request('GET', `/cfg/payments/api-keys/${id}/`);\n return response;\n }\n\n /**\n * Global API Key ViewSet: /api/api-keys/ Provides admin-level access to\n * all API keys with filtering and stats.\n */\n async apiKeysUpdate(id: string, data: Models.APIKeyUpdateRequest): Promise<Models.APIKeyUpdate> {\n const response = await this.client.request('PUT', `/cfg/payments/api-keys/${id}/`, { body: data });\n return response;\n }\n\n /**\n * Global API Key ViewSet: /api/api-keys/ Provides admin-level access to\n * all API keys with filtering and stats.\n */\n async apiKeysPartialUpdate(id: string, data?: Models.PatchedAPIKeyUpdateRequest): Promise<Models.APIKeyUpdate> {\n const response = await this.client.request('PATCH', `/cfg/payments/api-keys/${id}/`, { body: data });\n return response;\n }\n\n /**\n * Global API Key ViewSet: /api/api-keys/ Provides admin-level access to\n * all API keys with filtering and stats.\n */\n async apiKeysDestroy(id: string): Promise<void> {\n const response = await this.client.request('DELETE', `/cfg/payments/api-keys/${id}/`);\n return;\n }\n\n /**\n * Perform action on API key. POST /api/api-keys/{id}/perform_action/\n */\n async apiKeysPerformActionCreate(id: string): Promise<Models.APIKeyDetail> {\n const response = await this.client.request('POST', `/cfg/payments/api-keys/${id}/perform_action/`);\n return response;\n }\n\n /**\n * Get API key analytics. GET /api/api-keys/analytics/?days=30\n */\n async apiKeysAnalyticsRetrieve(): Promise<Models.APIKeyDetail> {\n const response = await this.client.request('GET', \"/cfg/payments/api-keys/analytics/\");\n return response;\n }\n\n /**\n * Get API keys grouped by user. GET /api/api-keys/by_user/\n */\n async apiKeysByUserRetrieve(): Promise<Models.APIKeyDetail> {\n const response = await this.client.request('GET', \"/cfg/payments/api-keys/by_user/\");\n return response;\n }\n\n /**\n * Standalone API key creation endpoint: /api/api-keys/create/ Simplified\n * endpoint for API key creation.\n */\n async apiKeysCreateCreate(data: Models.APIKeyCreateRequest): Promise<Models.APIKeyCreate> {\n const response = await this.client.request('POST', \"/cfg/payments/api-keys/create/\", { body: data });\n return response;\n }\n\n /**\n * Get API keys expiring soon. GET /api/api-keys/expiring_soon/?days=7\n */\n async apiKeysExpiringSoonRetrieve(): Promise<Models.APIKeyDetail> {\n const response = await this.client.request('GET', \"/cfg/payments/api-keys/expiring_soon/\");\n return response;\n }\n\n /**\n * Health check for the ViewSet and related services. Returns service\n * status and basic metrics.\n */\n async apiKeysHealthRetrieve(): Promise<Models.APIKeyDetail> {\n const response = await this.client.request('GET', \"/cfg/payments/api-keys/health/\");\n return response;\n }\n\n /**\n * Get statistics for the current queryset. Returns counts, aggregates, and\n * breakdowns.\n */\n async apiKeysStatsRetrieve(): Promise<Models.APIKeyDetail> {\n const response = await this.client.request('GET', \"/cfg/payments/api-keys/stats/\");\n return response;\n }\n\n /**\n * Validate API Key (Standalone)\n * \n * Standalone endpoint to validate an API key and return key information\n */\n async apiKeysValidateCreate(data: Models.APIKeyValidationRequest): Promise<Models.APIKeyValidationResponse> {\n const response = await this.client.request('POST', \"/cfg/payments/api-keys/validate/\", { body: data });\n return response;\n }\n\n /**\n * Validate API Key\n * \n * Validate an API key and return key information\n */\n async apiKeysValidateKeyCreate(data: Models.APIKeyValidationRequest): Promise<Models.APIKeyValidationResponse> {\n const response = await this.client.request('POST', \"/cfg/payments/api-keys/validate_key/\", { body: data });\n return response;\n }\n\n async balancesList(ordering?: string, page?: number, page_size?: number, search?: string, user?: number): Promise<Models.PaginatedUserBalanceList>;\n async balancesList(params?: { ordering?: string; page?: number; page_size?: number; search?: string; user?: number }): Promise<Models.PaginatedUserBalanceList>;\n\n /**\n * User balance ViewSet: /api/balances/ Read-only access to user balances\n * with statistics.\n */\n async balancesList(...args: any[]): Promise<Models.PaginatedUserBalanceList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { ordering: args[0], page: args[1], page_size: args[2], search: args[3], user: args[4] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/balances/\", { params });\n return response;\n }\n\n /**\n * User balance ViewSet: /api/balances/ Read-only access to user balances\n * with statistics.\n */\n async balancesRetrieve(id: number): Promise<Models.UserBalance> {\n const response = await this.client.request('GET', `/cfg/payments/balances/${id}/`);\n return response;\n }\n\n /**\n * Get balance analytics. GET /api/balances/analytics/?days=30\n */\n async balancesAnalyticsRetrieve(): Promise<Models.UserBalance> {\n const response = await this.client.request('GET', \"/cfg/payments/balances/analytics/\");\n return response;\n }\n\n /**\n * Health check for the ViewSet and related services. Returns service\n * status and basic metrics.\n */\n async balancesHealthRetrieve(): Promise<Models.UserBalance> {\n const response = await this.client.request('GET', \"/cfg/payments/balances/health/\");\n return response;\n }\n\n /**\n * Get statistics for the current queryset. Returns counts, aggregates, and\n * breakdowns.\n */\n async balancesStatsRetrieve(): Promise<Models.UserBalance> {\n const response = await this.client.request('GET', \"/cfg/payments/balances/stats/\");\n return response;\n }\n\n /**\n * Get balance summary for all users. GET /api/balances/summary/\n */\n async balancesSummaryRetrieve(): Promise<Models.UserBalance> {\n const response = await this.client.request('GET', \"/cfg/payments/balances/summary/\");\n return response;\n }\n\n async currenciesList(currency_type?: string, is_active?: boolean, ordering?: string, page?: number, page_size?: number, search?: string): Promise<Models.PaginatedCurrencyListList>;\n async currenciesList(params?: { currency_type?: string; is_active?: boolean; ordering?: string; page?: number; page_size?: number; search?: string }): Promise<Models.PaginatedCurrencyListList>;\n\n /**\n * Currency ViewSet: /api/currencies/ Read-only access to currency\n * information with conversion capabilities.\n */\n async currenciesList(...args: any[]): Promise<Models.PaginatedCurrencyListList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { currency_type: args[0], is_active: args[1], ordering: args[2], page: args[3], page_size: args[4], search: args[5] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/currencies/\", { params });\n return response;\n }\n\n /**\n * Disable create action.\n */\n async currenciesCreate(): Promise<Models.Currency> {\n const response = await this.client.request('POST', \"/cfg/payments/currencies/\");\n return response;\n }\n\n /**\n * Currency ViewSet: /api/currencies/ Read-only access to currency\n * information with conversion capabilities.\n */\n async currenciesRetrieve(id: number): Promise<Models.Currency> {\n const response = await this.client.request('GET', `/cfg/payments/currencies/${id}/`);\n return response;\n }\n\n /**\n * Get networks for specific currency. GET /api/currencies/{id}/networks/\n */\n async currenciesNetworksRetrieve(id: number): Promise<Models.Currency> {\n const response = await this.client.request('GET', `/cfg/payments/currencies/${id}/networks/`);\n return response;\n }\n\n /**\n * Get providers supporting specific currency. GET\n * /api/currencies/{id}/providers/\n */\n async currenciesProvidersRetrieve(id: number): Promise<Models.Currency> {\n const response = await this.client.request('GET', `/cfg/payments/currencies/${id}/providers/`);\n return response;\n }\n\n /**\n * Convert between currencies. POST /api/currencies/convert/\n */\n async currenciesConvertCreate(): Promise<Models.Currency> {\n const response = await this.client.request('POST', \"/cfg/payments/currencies/convert/\");\n return response;\n }\n\n /**\n * Get only cryptocurrencies. GET /api/currencies/crypto/\n */\n async currenciesCryptoRetrieve(): Promise<Models.Currency> {\n const response = await this.client.request('GET', \"/cfg/payments/currencies/crypto/\");\n return response;\n }\n\n /**\n * Get only fiat currencies. GET /api/currencies/fiat/\n */\n async currenciesFiatRetrieve(): Promise<Models.Currency> {\n const response = await this.client.request('GET', \"/cfg/payments/currencies/fiat/\");\n return response;\n }\n\n /**\n * Health check for the ViewSet and related services. Returns service\n * status and basic metrics.\n */\n async currenciesHealthRetrieve(): Promise<Models.Currency> {\n const response = await this.client.request('GET', \"/cfg/payments/currencies/health/\");\n return response;\n }\n\n async currenciesRatesRetrieve(base_currency: string, currencies: string): Promise<Models.Currency>;\n async currenciesRatesRetrieve(params: { base_currency: string; currencies: string }): Promise<Models.Currency>;\n\n /**\n * Get exchange rates\n * \n * Get current exchange rates for specified currencies\n */\n async currenciesRatesRetrieve(...args: any[]): Promise<Models.Currency> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { base_currency: args[0], currencies: args[1] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/currencies/rates/\", { params });\n return response;\n }\n\n /**\n * Get only stablecoins. GET /api/currencies/stable/\n */\n async currenciesStableRetrieve(): Promise<Models.Currency> {\n const response = await this.client.request('GET', \"/cfg/payments/currencies/stable/\");\n return response;\n }\n\n /**\n * Get statistics for the current queryset. Returns counts, aggregates, and\n * breakdowns.\n */\n async currenciesStatsRetrieve(): Promise<Models.Currency> {\n const response = await this.client.request('GET', \"/cfg/payments/currencies/stats/\");\n return response;\n }\n\n async currenciesSupportedRetrieve(currency_type?: string, provider?: string): Promise<Models.Currency>;\n async currenciesSupportedRetrieve(params?: { currency_type?: string; provider?: string }): Promise<Models.Currency>;\n\n /**\n * Get supported currencies\n * \n * Get list of supported currencies from payment providers\n */\n async currenciesSupportedRetrieve(...args: any[]): Promise<Models.Currency> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { currency_type: args[0], provider: args[1] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/currencies/supported/\", { params });\n return response;\n }\n\n async endpointGroupsList(is_enabled?: boolean, ordering?: string, page?: number, page_size?: number, search?: string): Promise<Models.PaginatedEndpointGroupList>;\n async endpointGroupsList(params?: { is_enabled?: boolean; ordering?: string; page?: number; page_size?: number; search?: string }): Promise<Models.PaginatedEndpointGroupList>;\n\n /**\n * Endpoint Group ViewSet: /api/endpoint-groups/ Read-only access to\n * endpoint group information.\n */\n async endpointGroupsList(...args: any[]): Promise<Models.PaginatedEndpointGroupList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { is_enabled: args[0], ordering: args[1], page: args[2], page_size: args[3], search: args[4] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/endpoint-groups/\", { params });\n return response;\n }\n\n /**\n * Endpoint Group ViewSet: /api/endpoint-groups/ Read-only access to\n * endpoint group information.\n */\n async endpointGroupsRetrieve(id: number): Promise<Models.EndpointGroup> {\n const response = await this.client.request('GET', `/cfg/payments/endpoint-groups/${id}/`);\n return response;\n }\n\n /**\n * Get available endpoint groups for subscription. GET\n * /api/endpoint-groups/available/\n */\n async endpointGroupsAvailableRetrieve(): Promise<Models.EndpointGroup> {\n const response = await this.client.request('GET', \"/cfg/payments/endpoint-groups/available/\");\n return response;\n }\n\n /**\n * Health check for the ViewSet and related services. Returns service\n * status and basic metrics.\n */\n async endpointGroupsHealthRetrieve(): Promise<Models.EndpointGroup> {\n const response = await this.client.request('GET', \"/cfg/payments/endpoint-groups/health/\");\n return response;\n }\n\n /**\n * Get statistics for the current queryset. Returns counts, aggregates, and\n * breakdowns.\n */\n async endpointGroupsStatsRetrieve(): Promise<Models.EndpointGroup> {\n const response = await this.client.request('GET', \"/cfg/payments/endpoint-groups/stats/\");\n return response;\n }\n\n /**\n * Health check for the ViewSet and related services. Returns service\n * status and basic metrics.\n */\n async healthRetrieve(): Promise<Models.Payment> {\n const response = await this.client.request('GET', \"/cfg/payments/health/\");\n return response;\n }\n\n async networksList(is_active?: boolean, native_currency__code?: string, ordering?: string, page?: number, page_size?: number, search?: string): Promise<Models.PaginatedNetworkList>;\n async networksList(params?: { is_active?: boolean; native_currency__code?: string; ordering?: string; page?: number; page_size?: number; search?: string }): Promise<Models.PaginatedNetworkList>;\n\n /**\n * Network ViewSet: /api/networks/ Read-only access to blockchain network\n * information.\n */\n async networksList(...args: any[]): Promise<Models.PaginatedNetworkList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { is_active: args[0], native_currency__code: args[1], ordering: args[2], page: args[3], page_size: args[4], search: args[5] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/networks/\", { params });\n return response;\n }\n\n /**\n * Network ViewSet: /api/networks/ Read-only access to blockchain network\n * information.\n */\n async networksRetrieve(id: number): Promise<Models.Network> {\n const response = await this.client.request('GET', `/cfg/payments/networks/${id}/`);\n return response;\n }\n\n /**\n * Get networks grouped by currency. GET /api/networks/by_currency/\n */\n async networksByCurrencyRetrieve(): Promise<Models.Network> {\n const response = await this.client.request('GET', \"/cfg/payments/networks/by_currency/\");\n return response;\n }\n\n /**\n * Health check for the ViewSet and related services. Returns service\n * status and basic metrics.\n */\n async networksHealthRetrieve(): Promise<Models.Network> {\n const response = await this.client.request('GET', \"/cfg/payments/networks/health/\");\n return response;\n }\n\n /**\n * Get statistics for the current queryset. Returns counts, aggregates, and\n * breakdowns.\n */\n async networksStatsRetrieve(): Promise<Models.Network> {\n const response = await this.client.request('GET', \"/cfg/payments/networks/stats/\");\n return response;\n }\n\n /**\n * API Keys Overview\n * \n * Get API keys overview\n */\n async overviewDashboardApiKeysOverviewRetrieve(): Promise<Models.APIKeysOverview> {\n const response = await this.client.request('GET', \"/cfg/payments/overview/dashboard/api_keys_overview/\");\n return response;\n }\n\n /**\n * Balance Overview\n * \n * Get user balance overview\n */\n async overviewDashboardBalanceOverviewRetrieve(): Promise<Models.BalanceOverview> {\n const response = await this.client.request('GET', \"/cfg/payments/overview/dashboard/balance_overview/\");\n return response;\n }\n\n async overviewDashboardChartDataRetrieve(period?: string): Promise<Models.PaymentsChartResponse>;\n async overviewDashboardChartDataRetrieve(params?: { period?: string }): Promise<Models.PaymentsChartResponse>;\n\n /**\n * Payments Chart Data\n * \n * Get chart data for payments visualization\n */\n async overviewDashboardChartDataRetrieve(...args: any[]): Promise<Models.PaymentsChartResponse> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { period: args[0] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/overview/dashboard/chart_data/\", { params });\n return response;\n }\n\n /**\n * Payments Dashboard Metrics\n * \n * Get payments dashboard metrics including balance, subscriptions, API\n * keys, and payments\n */\n async overviewDashboardMetricsRetrieve(): Promise<Models.PaymentsMetrics> {\n const response = await this.client.request('GET', \"/cfg/payments/overview/dashboard/metrics/\");\n return response;\n }\n\n /**\n * Payments Dashboard Overview\n * \n * Get complete payments dashboard overview with metrics, recent payments,\n * and analytics\n */\n async overviewDashboardOverviewRetrieve(): Promise<Models.PaymentsDashboardOverview> {\n const response = await this.client.request('GET', \"/cfg/payments/overview/dashboard/overview/\");\n return response;\n }\n\n async overviewDashboardPaymentAnalyticsRetrieve(limit?: number): Promise<Models.PaymentAnalyticsResponse>;\n async overviewDashboardPaymentAnalyticsRetrieve(params?: { limit?: number }): Promise<Models.PaymentAnalyticsResponse>;\n\n /**\n * Payment Analytics\n * \n * Get analytics for payments by currency and provider\n */\n async overviewDashboardPaymentAnalyticsRetrieve(...args: any[]): Promise<Models.PaymentAnalyticsResponse> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { limit: args[0] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/overview/dashboard/payment_analytics/\", { params });\n return response;\n }\n\n async overviewDashboardRecentPaymentsList(limit?: number, page?: number, page_size?: number): Promise<Models.PaginatedRecentPaymentList>;\n async overviewDashboardRecentPaymentsList(params?: { limit?: number; page?: number; page_size?: number }): Promise<Models.PaginatedRecentPaymentList>;\n\n /**\n * Recent Payments\n * \n * Get recent payments for the user\n */\n async overviewDashboardRecentPaymentsList(...args: any[]): Promise<Models.PaginatedRecentPaymentList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { limit: args[0], page: args[1], page_size: args[2] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/overview/dashboard/recent_payments/\", { params });\n return response;\n }\n\n async overviewDashboardRecentTransactionsList(limit?: number, page?: number, page_size?: number): Promise<Models.PaginatedRecentTransactionList>;\n async overviewDashboardRecentTransactionsList(params?: { limit?: number; page?: number; page_size?: number }): Promise<Models.PaginatedRecentTransactionList>;\n\n /**\n * Recent Transactions\n * \n * Get recent balance transactions for the user\n */\n async overviewDashboardRecentTransactionsList(...args: any[]): Promise<Models.PaginatedRecentTransactionList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { limit: args[0], page: args[1], page_size: args[2] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/overview/dashboard/recent_transactions/\", { params });\n return response;\n }\n\n /**\n * Subscription Overview\n * \n * Get current subscription overview\n */\n async overviewDashboardSubscriptionOverviewRetrieve(): Promise<Models.SubscriptionOverview> {\n const response = await this.client.request('GET', \"/cfg/payments/overview/dashboard/subscription_overview/\");\n return response;\n }\n\n async paymentList(currency__code?: string, ordering?: string, page?: number, page_size?: number, provider?: string, search?: string, status?: string, user?: number): Promise<Models.PaginatedPaymentListList>;\n async paymentList(params?: { currency__code?: string; ordering?: string; page?: number; page_size?: number; provider?: string; search?: string; status?: string; user?: number }): Promise<Models.PaginatedPaymentListList>;\n\n /**\n * Global payment ViewSet: /api/v1/payments/ Provides admin-level access to\n * all payments with filtering and stats.\n */\n async paymentList(...args: any[]): Promise<Models.PaginatedPaymentListList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { currency__code: args[0], ordering: args[1], page: args[2], page_size: args[3], provider: args[4], search: args[5], status: args[6], user: args[7] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/payment/\", { params });\n return response;\n }\n\n /**\n * Global payment ViewSet: /api/v1/payments/ Provides admin-level access to\n * all payments with filtering and stats.\n */\n async paymentCreate(data: Models.PaymentCreateRequest): Promise<Models.PaymentCreate> {\n const response = await this.client.request('POST', \"/cfg/payments/payment/\", { body: data });\n return response;\n }\n\n /**\n * Global payment ViewSet: /api/v1/payments/ Provides admin-level access to\n * all payments with filtering and stats.\n */\n async paymentRetrieve(id: string): Promise<Models.Payment> {\n const response = await this.client.request('GET', `/cfg/payments/payment/${id}/`);\n return response;\n }\n\n /**\n * Global payment ViewSet: /api/v1/payments/ Provides admin-level access to\n * all payments with filtering and stats.\n */\n async paymentUpdate(id: string, data: Models.PaymentRequest): Promise<Models.Payment> {\n const response = await this.client.request('PUT', `/cfg/payments/payment/${id}/`, { body: data });\n return response;\n }\n\n /**\n * Global payment ViewSet: /api/v1/payments/ Provides admin-level access to\n * all payments with filtering and stats.\n */\n async paymentPartialUpdate(id: string, data?: Models.PatchedPaymentRequest): Promise<Models.Payment> {\n const response = await this.client.request('PATCH', `/cfg/payments/payment/${id}/`, { body: data });\n return response;\n }\n\n /**\n * Global payment ViewSet: /api/v1/payments/ Provides admin-level access to\n * all payments with filtering and stats.\n */\n async paymentDestroy(id: string): Promise<void> {\n const response = await this.client.request('DELETE', `/cfg/payments/payment/${id}/`);\n return;\n }\n\n /**\n * Cancel payment. POST /api/v1/payments/{id}/cancel/\n */\n async paymentCancelCreate(id: string, data: Models.PaymentRequest): Promise<Models.Payment> {\n const response = await this.client.request('POST', `/cfg/payments/payment/${id}/cancel/`, { body: data });\n return response;\n }\n\n /**\n * Check payment status with provider. POST\n * /api/v1/payments/{id}/check_status/\n */\n async paymentCheckStatusCreate(id: string, data: Models.PaymentRequest): Promise<Models.Payment> {\n const response = await this.client.request('POST', `/cfg/payments/payment/${id}/check_status/`, { body: data });\n return response;\n }\n\n /**\n * Get payment analytics. GET /api/v1/payments/analytics/?days=30\n */\n async paymentAnalyticsRetrieve(): Promise<Models.Payment> {\n const response = await this.client.request('GET', \"/cfg/payments/payment/analytics/\");\n return response;\n }\n\n /**\n * Get payments grouped by provider. GET /api/v1/payments/by_provider/\n */\n async paymentByProviderRetrieve(): Promise<Models.Payment> {\n const response = await this.client.request('GET', \"/cfg/payments/payment/by_provider/\");\n return response;\n }\n\n /**\n * Standalone payment creation endpoint: /api/v1/payments/create/\n * Simplified endpoint for payment creation without full ViewSet overhead.\n */\n async paymentCreateCreate(data: Models.PaymentCreateRequest): Promise<Models.PaymentCreate> {\n const response = await this.client.request('POST', \"/cfg/payments/payment/create/\", { body: data });\n return response;\n }\n\n /**\n * Health check for the ViewSet and related services. Returns service\n * status and basic metrics.\n */\n async paymentHealthRetrieve(): Promise<Models.Payment> {\n const response = await this.client.request('GET', \"/cfg/payments/payment/health/\");\n return response;\n }\n\n /**\n * Get statistics for the current queryset. Returns counts, aggregates, and\n * breakdowns.\n */\n async paymentStatsRetrieve(): Promise<Models.Payment> {\n const response = await this.client.request('GET', \"/cfg/payments/payment/stats/\");\n return response;\n }\n\n /**\n * Standalone payment status endpoint: /api/v1/payments/{id}/status/ Quick\n * status check without full ViewSet overhead.\n */\n async paymentStatusRetrieve(id: string): Promise<Models.Payment> {\n const response = await this.client.request('GET', `/cfg/payments/payment/status/${id}/`);\n return response;\n }\n\n async providerCurrenciesList(currency__code?: string, is_enabled?: boolean, network__code?: string, ordering?: string, page?: number, page_size?: number, provider?: string, search?: string): Promise<Models.PaginatedProviderCurrencyList>;\n async providerCurrenciesList(params?: { currency__code?: string; is_enabled?: boolean; network__code?: string; ordering?: string; page?: number; page_size?: number; provider?: string; search?: string }): Promise<Models.PaginatedProviderCurrencyList>;\n\n /**\n * Provider Currency ViewSet: /api/provider-currencies/ Read-only access to\n * provider-specific currency information.\n */\n async providerCurrenciesList(...args: any[]): Promise<Models.PaginatedProviderCurrencyList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { currency__code: args[0], is_enabled: args[1], network__code: args[2], ordering: args[3], page: args[4], page_size: args[5], provider: args[6], search: args[7] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/provider-currencies/\", { params });\n return response;\n }\n\n /**\n * Provider Currency ViewSet: /api/provider-currencies/ Read-only access to\n * provider-specific currency information.\n */\n async providerCurrenciesRetrieve(id: number): Promise<Models.ProviderCurrency> {\n const response = await this.client.request('GET', `/cfg/payments/provider-currencies/${id}/`);\n return response;\n }\n\n async providerCurrenciesByProviderRetrieve(provider?: string): Promise<Models.ProviderCurrency>;\n async providerCurrenciesByProviderRetrieve(params?: { provider?: string }): Promise<Models.ProviderCurrency>;\n\n /**\n * Get provider currencies grouped by provider\n * \n * Get provider currencies grouped by provider\n */\n async providerCurrenciesByProviderRetrieve(...args: any[]): Promise<Models.ProviderCurrency> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { provider: args[0] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/provider-currencies/by_provider/\", { params });\n return response;\n }\n\n /**\n * Health check for the ViewSet and related services. Returns service\n * status and basic metrics.\n */\n async providerCurrenciesHealthRetrieve(): Promise<Models.ProviderCurrency> {\n const response = await this.client.request('GET', \"/cfg/payments/provider-currencies/health/\");\n return response;\n }\n\n /**\n * Get currency limits by provider. GET\n * /api/provider-currencies/limits/?provider=nowpayments\n */\n async providerCurrenciesLimitsRetrieve(): Promise<Models.ProviderCurrency> {\n const response = await this.client.request('GET', \"/cfg/payments/provider-currencies/limits/\");\n return response;\n }\n\n /**\n * Get statistics for the current queryset. Returns counts, aggregates, and\n * breakdowns.\n */\n async providerCurrenciesStatsRetrieve(): Promise<Models.ProviderCurrency> {\n const response = await this.client.request('GET', \"/cfg/payments/provider-currencies/stats/\");\n return response;\n }\n\n async subscriptionsList(ordering?: string, page?: number, page_size?: number, search?: string, status?: string, tier?: string, user?: number): Promise<Models.PaginatedSubscriptionListList>;\n async subscriptionsList(params?: { ordering?: string; page?: number; page_size?: number; search?: string; status?: string; tier?: string; user?: number }): Promise<Models.PaginatedSubscriptionListList>;\n\n /**\n * Global subscription ViewSet: /api/subscriptions/ Provides admin-level\n * access to all subscriptions with filtering and stats.\n */\n async subscriptionsList(...args: any[]): Promise<Models.PaginatedSubscriptionListList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { ordering: args[0], page: args[1], page_size: args[2], search: args[3], status: args[4], tier: args[5], user: args[6] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/subscriptions/\", { params });\n return response;\n }\n\n /**\n * Global subscription ViewSet: /api/subscriptions/ Provides admin-level\n * access to all subscriptions with filtering and stats.\n */\n async subscriptionsCreate(data: Models.SubscriptionCreateRequest): Promise<Models.SubscriptionCreate> {\n const response = await this.client.request('POST', \"/cfg/payments/subscriptions/\", { body: data });\n return response;\n }\n\n /**\n * Global subscription ViewSet: /api/subscriptions/ Provides admin-level\n * access to all subscriptions with filtering and stats.\n */\n async subscriptionsRetrieve(id: string): Promise<Models.Subscription> {\n const response = await this.client.request('GET', `/cfg/payments/subscriptions/${id}/`);\n return response;\n }\n\n /**\n * Global subscription ViewSet: /api/subscriptions/ Provides admin-level\n * access to all subscriptions with filtering and stats.\n */\n async subscriptionsUpdate(id: string, data: Models.SubscriptionRequest): Promise<Models.Subscription> {\n const response = await this.client.request('PUT', `/cfg/payments/subscriptions/${id}/`, { body: data });\n return response;\n }\n\n /**\n * Global subscription ViewSet: /api/subscriptions/ Provides admin-level\n * access to all subscriptions with filtering and stats.\n */\n async subscriptionsPartialUpdate(id: string, data?: Models.PatchedSubscriptionRequest): Promise<Models.Subscription> {\n const response = await this.client.request('PATCH', `/cfg/payments/subscriptions/${id}/`, { body: data });\n return response;\n }\n\n /**\n * Global subscription ViewSet: /api/subscriptions/ Provides admin-level\n * access to all subscriptions with filtering and stats.\n */\n async subscriptionsDestroy(id: string): Promise<void> {\n const response = await this.client.request('DELETE', `/cfg/payments/subscriptions/${id}/`);\n return;\n }\n\n /**\n * Increment subscription usage. POST\n * /api/subscriptions/{id}/increment_usage/\n */\n async subscriptionsIncrementUsageCreate(id: string, data: Models.SubscriptionRequest): Promise<Models.Subscription> {\n const response = await this.client.request('POST', `/cfg/payments/subscriptions/${id}/increment_usage/`, { body: data });\n return response;\n }\n\n /**\n * Update subscription status. POST /api/subscriptions/{id}/update_status/\n */\n async subscriptionsUpdateStatusCreate(id: string, data: Models.SubscriptionRequest): Promise<Models.Subscription> {\n const response = await this.client.request('POST', `/cfg/payments/subscriptions/${id}/update_status/`, { body: data });\n return response;\n }\n\n /**\n * Get subscription analytics. GET /api/subscriptions/analytics/?days=30\n */\n async subscriptionsAnalyticsRetrieve(): Promise<Models.Subscription> {\n const response = await this.client.request('GET', \"/cfg/payments/subscriptions/analytics/\");\n return response;\n }\n\n /**\n * Get subscriptions grouped by status. GET /api/subscriptions/by_status/\n */\n async subscriptionsByStatusRetrieve(): Promise<Models.Subscription> {\n const response = await this.client.request('GET', \"/cfg/payments/subscriptions/by_status/\");\n return response;\n }\n\n /**\n * Get subscriptions grouped by tier. GET /api/subscriptions/by_tier/\n */\n async subscriptionsByTierRetrieve(): Promise<Models.Subscription> {\n const response = await this.client.request('GET', \"/cfg/payments/subscriptions/by_tier/\");\n return response;\n }\n\n /**\n * Health check for the ViewSet and related services. Returns service\n * status and basic metrics.\n */\n async subscriptionsHealthRetrieve(): Promise<Models.Subscription> {\n const response = await this.client.request('GET', \"/cfg/payments/subscriptions/health/\");\n return response;\n }\n\n /**\n * Get statistics for the current queryset. Returns counts, aggregates, and\n * breakdowns.\n */\n async subscriptionsStatsRetrieve(): Promise<Models.Subscription> {\n const response = await this.client.request('GET', \"/cfg/payments/subscriptions/stats/\");\n return response;\n }\n\n async tariffsList(is_active?: boolean, ordering?: string, page?: number, page_size?: number, search?: string): Promise<Models.PaginatedTariffList>;\n async tariffsList(params?: { is_active?: boolean; ordering?: string; page?: number; page_size?: number; search?: string }): Promise<Models.PaginatedTariffList>;\n\n /**\n * Tariff ViewSet: /api/tariffs/ Read-only access to tariff information for\n * subscription selection.\n */\n async tariffsList(...args: any[]): Promise<Models.PaginatedTariffList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { is_active: args[0], ordering: args[1], page: args[2], page_size: args[3], search: args[4] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/tariffs/\", { params });\n return response;\n }\n\n /**\n * Tariff ViewSet: /api/tariffs/ Read-only access to tariff information for\n * subscription selection.\n */\n async tariffsRetrieve(id: number): Promise<Models.Tariff> {\n const response = await this.client.request('GET', `/cfg/payments/tariffs/${id}/`);\n return response;\n }\n\n /**\n * Get endpoint groups for specific tariff. GET\n * /api/tariffs/{id}/endpoint_groups/\n */\n async tariffsEndpointGroupsRetrieve(id: number): Promise<Models.Tariff> {\n const response = await this.client.request('GET', `/cfg/payments/tariffs/${id}/endpoint_groups/`);\n return response;\n }\n\n /**\n * Get free tariffs. GET /api/tariffs/free/\n */\n async tariffsFreeRetrieve(): Promise<Models.Tariff> {\n const response = await this.client.request('GET', \"/cfg/payments/tariffs/free/\");\n return response;\n }\n\n /**\n * Health check for the ViewSet and related services. Returns service\n * status and basic metrics.\n */\n async tariffsHealthRetrieve(): Promise<Models.Tariff> {\n const response = await this.client.request('GET', \"/cfg/payments/tariffs/health/\");\n return response;\n }\n\n /**\n * Get paid tariffs. GET /api/tariffs/paid/\n */\n async tariffsPaidRetrieve(): Promise<Models.Tariff> {\n const response = await this.client.request('GET', \"/cfg/payments/tariffs/paid/\");\n return response;\n }\n\n /**\n * Get statistics for the current queryset. Returns counts, aggregates, and\n * breakdowns.\n */\n async tariffsStatsRetrieve(): Promise<Models.Tariff> {\n const response = await this.client.request('GET', \"/cfg/payments/tariffs/stats/\");\n return response;\n }\n\n async transactionsList(ordering?: string, page?: number, page_size?: number, payment_id?: string, search?: string, transaction_type?: string, user?: number): Promise<Models.PaginatedTransactionList>;\n async transactionsList(params?: { ordering?: string; page?: number; page_size?: number; payment_id?: string; search?: string; transaction_type?: string; user?: number }): Promise<Models.PaginatedTransactionList>;\n\n /**\n * Transaction ViewSet: /api/transactions/ Read-only access to transaction\n * history with filtering.\n */\n async transactionsList(...args: any[]): Promise<Models.PaginatedTransactionList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { ordering: args[0], page: args[1], page_size: args[2], payment_id: args[3], search: args[4], transaction_type: args[5], user: args[6] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/transactions/\", { params });\n return response;\n }\n\n /**\n * Transaction ViewSet: /api/transactions/ Read-only access to transaction\n * history with filtering.\n */\n async transactionsRetrieve(id: string): Promise<Models.Transaction> {\n const response = await this.client.request('GET', `/cfg/payments/transactions/${id}/`);\n return response;\n }\n\n /**\n * Get transactions grouped by type. GET /api/transactions/by_type/\n */\n async transactionsByTypeRetrieve(): Promise<Models.Transaction> {\n const response = await this.client.request('GET', \"/cfg/payments/transactions/by_type/\");\n return response;\n }\n\n /**\n * Health check for the ViewSet and related services. Returns service\n * status and basic metrics.\n */\n async transactionsHealthRetrieve(): Promise<Models.Transaction> {\n const response = await this.client.request('GET', \"/cfg/payments/transactions/health/\");\n return response;\n }\n\n /**\n * Get recent transactions. GET /api/transactions/recent/?limit=10\n */\n async transactionsRecentRetrieve(): Promise<Models.Transaction> {\n const response = await this.client.request('GET', \"/cfg/payments/transactions/recent/\");\n return response;\n }\n\n /**\n * Get statistics for the current queryset. Returns counts, aggregates, and\n * breakdowns.\n */\n async transactionsStatsRetrieve(): Promise<Models.Transaction> {\n const response = await this.client.request('GET', \"/cfg/payments/transactions/stats/\");\n return response;\n }\n\n async usersList(currency__code?: string, ordering?: string, page?: number, page_size?: number, provider?: string, search?: string, status?: string): Promise<Models.PaginatedPaymentListList>;\n async usersList(params?: { currency__code?: string; ordering?: string; page?: number; page_size?: number; provider?: string; search?: string; status?: string }): Promise<Models.PaginatedPaymentListList>;\n\n /**\n * User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\n * Provides user-scoped access to payments with full CRUD operations.\n */\n async usersList(...args: any[]): Promise<Models.PaginatedPaymentListList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { currency__code: args[0], ordering: args[1], page: args[2], page_size: args[3], provider: args[4], search: args[5], status: args[6] };\n }\n const response = await this.client.request('GET', \"/cfg/payments/users/\", { params });\n return response;\n }\n\n /**\n * User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\n * Provides user-scoped access to payments with full CRUD operations.\n */\n async usersCreate(data: Models.PaymentCreateRequest): Promise<Models.PaymentCreate> {\n const response = await this.client.request('POST', \"/cfg/payments/users/\", { body: data });\n return response;\n }\n\n /**\n * User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\n * Provides user-scoped access to payments with full CRUD operations.\n */\n async usersRetrieve(id: string): Promise<Models.Payment> {\n const response = await this.client.request('GET', `/cfg/payments/users/${id}/`);\n return response;\n }\n\n /**\n * User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\n * Provides user-scoped access to payments with full CRUD operations.\n */\n async usersUpdate(id: string, data: Models.PaymentRequest): Promise<Models.Payment> {\n const response = await this.client.request('PUT', `/cfg/payments/users/${id}/`, { body: data });\n return response;\n }\n\n /**\n * User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\n * Provides user-scoped access to payments with full CRUD operations.\n */\n async usersPartialUpdate(id: string, data?: Models.PatchedPaymentRequest): Promise<Models.Payment> {\n const response = await this.client.request('PATCH', `/cfg/payments/users/${id}/`, { body: data });\n return response;\n }\n\n /**\n * User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\n * Provides user-scoped access to payments with full CRUD operations.\n */\n async usersDestroy(id: string): Promise<void> {\n const response = await this.client.request('DELETE', `/cfg/payments/users/${id}/`);\n return;\n }\n\n /**\n * Cancel payment. POST /api/v1/users/{user_id}/payments/{id}/cancel/\n */\n async usersCancelCreate(id: string, data: Models.PaymentRequest): Promise<Models.Payment> {\n const response = await this.client.request('POST', `/cfg/payments/users/${id}/cancel/`, { body: data });\n return response;\n }\n\n /**\n * Check payment status with provider. POST\n * /api/v1/users/{user_id}/payments/{id}/check_status/\n */\n async usersCheckStatusCreate(id: string, data: Models.PaymentRequest): Promise<Models.Payment> {\n const response = await this.client.request('POST', `/cfg/payments/users/${id}/check_status/`, { body: data });\n return response;\n }\n\n async usersApiKeysList(user_pk: number, is_active?: boolean, ordering?: string, page?: number, page_size?: number, search?: string): Promise<Models.PaginatedAPIKeyListList>;\n async usersApiKeysList(user_pk: number, params?: { is_active?: boolean; ordering?: string; page?: number; page_size?: number; search?: string }): Promise<Models.PaginatedAPIKeyListList>;\n\n /**\n * User-specific API Key ViewSet: /api/users/{user_id}/api-keys/ Provides\n * user-scoped access to API keys with full CRUD operations.\n */\n async usersApiKeysList(...args: any[]): Promise<Models.PaginatedAPIKeyListList> {\n const user_pk = args[0];\n const isParamsObject = args.length === 2 && typeof args[1] === 'object' && args[1] !== null && !Array.isArray(args[1]);\n \n let params;\n if (isParamsObject) {\n params = args[1];\n } else {\n params = { is_active: args[1], ordering: args[2], page: args[3], page_size: args[4], search: args[5] };\n }\n const response = await this.client.request('GET', `/cfg/payments/users/${user_pk}/api-keys/`, { params });\n return response;\n }\n\n /**\n * User-specific API Key ViewSet: /api/users/{user_id}/api-keys/ Provides\n * user-scoped access to API keys with full CRUD operations.\n */\n async usersApiKeysCreate(user_pk: number, data: Models.APIKeyCreateRequest): Promise<Models.APIKeyCreate> {\n const response = await this.client.request('POST', `/cfg/payments/users/${user_pk}/api-keys/`, { body: data });\n return response;\n }\n\n /**\n * User-specific API Key ViewSet: /api/users/{user_id}/api-keys/ Provides\n * user-scoped access to API keys with full CRUD operations.\n */\n async usersApiKeysRetrieve(id: string, user_pk: number): Promise<Models.APIKeyDetail> {\n const response = await this.client.request('GET', `/cfg/payments/users/${user_pk}/api-keys/${id}/`);\n return response;\n }\n\n /**\n * User-specific API Key ViewSet: /api/users/{user_id}/api-keys/ Provides\n * user-scoped access to API keys with full CRUD operations.\n */\n async usersApiKeysUpdate(id: string, user_pk: number, data: Models.APIKeyUpdateRequest): Promise<Models.APIKeyUpdate> {\n const response = await this.client.request('PUT', `/cfg/payments/users/${user_pk}/api-keys/${id}/`, { body: data });\n return response;\n }\n\n /**\n * User-specific API Key ViewSet: /api/users/{user_id}/api-keys/ Provides\n * user-scoped access to API keys with full CRUD operations.\n */\n async usersApiKeysPartialUpdate(id: string, user_pk: number, data?: Models.PatchedAPIKeyUpdateRequest): Promise<Models.APIKeyUpdate> {\n const response = await this.client.request('PATCH', `/cfg/payments/users/${user_pk}/api-keys/${id}/`, { body: data });\n return response;\n }\n\n /**\n * User-specific API Key ViewSet: /api/users/{user_id}/api-keys/ Provides\n * user-scoped access to API keys with full CRUD operations.\n */\n async usersApiKeysDestroy(id: string, user_pk: number): Promise<void> {\n const response = await this.client.request('DELETE', `/cfg/payments/users/${user_pk}/api-keys/${id}/`);\n return;\n }\n\n /**\n * Perform action on API key. POST\n * /api/users/{user_id}/api-keys/{id}/perform_action/\n */\n async usersApiKeysPerformActionCreate(id: string, user_pk: number): Promise<Models.APIKeyDetail> {\n const response = await this.client.request('POST', `/cfg/payments/users/${user_pk}/api-keys/${id}/perform_action/`);\n return response;\n }\n\n /**\n * Get user's active API keys. GET /api/users/{user_id}/api-keys/active/\n */\n async usersApiKeysActiveRetrieve(user_pk: number): Promise<Models.APIKeyDetail> {\n const response = await this.client.request('GET', `/cfg/payments/users/${user_pk}/api-keys/active/`);\n return response;\n }\n\n /**\n * Health check for the ViewSet and related services. Returns service\n * status and basic metrics.\n */\n async usersApiKeysHealthRetrieve(user_pk: number): Promise<Models.APIKeyDetail> {\n const response = await this.client.request('GET', `/cfg/payments/users/${user_pk}/api-keys/health/`);\n return response;\n }\n\n /**\n * Get statistics for the current queryset. Returns counts, aggregates, and\n * breakdowns.\n */\n async usersApiKeysStatsRetrieve(user_pk: number): Promise<Models.APIKeyDetail> {\n const response = await this.client.request('GET', `/cfg/payments/users/${user_pk}/api-keys/stats/`);\n return response;\n }\n\n /**\n * Get user API key summary. GET /api/users/{user_id}/api-keys/summary/\n */\n async usersApiKeysSummaryRetrieve(user_pk: number): Promise<Models.APIKeyDetail> {\n const response = await this.client.request('GET', `/cfg/payments/users/${user_pk}/api-keys/summary/`);\n return response;\n }\n\n async usersPaymentList(user_pk: number, currency__code?: string, ordering?: string, page?: number, page_size?: number, provider?: string, search?: string, status?: string): Promise<Models.PaginatedPaymentListList>;\n async usersPaymentList(user_pk: number, params?: { currency__code?: string; ordering?: string; page?: number; page_size?: number; provider?: string; search?: string; status?: string }): Promise<Models.PaginatedPaymentListList>;\n\n /**\n * User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\n * Provides user-scoped access to payments with full CRUD operations.\n */\n async usersPaymentList(...args: any[]): Promise<Models.PaginatedPaymentListList> {\n const user_pk = args[0];\n const isParamsObject = args.length === 2 && typeof args[1] === 'object' && args[1] !== null && !Array.isArray(args[1]);\n \n let params;\n if (isParamsObject) {\n params = args[1];\n } else {\n params = { currency__code: args[1], ordering: args[2], page: args[3], page_size: args[4], provider: args[5], search: args[6], status: args[7] };\n }\n const response = await this.client.request('GET', `/cfg/payments/users/${user_pk}/payment/`, { params });\n return response;\n }\n\n /**\n * User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\n * Provides user-scoped access to payments with full CRUD operations.\n */\n async usersPaymentCreate(user_pk: number, data: Models.PaymentCreateRequest): Promise<Models.PaymentCreate> {\n const response = await this.client.request('POST', `/cfg/payments/users/${user_pk}/payment/`, { body: data });\n return response;\n }\n\n /**\n * User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\n * Provides user-scoped access to payments with full CRUD operations.\n */\n async usersPaymentRetrieve(id: string, user_pk: number): Promise<Models.Payment> {\n const response = await this.client.request('GET', `/cfg/payments/users/${user_pk}/payment/${id}/`);\n return response;\n }\n\n /**\n * User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\n * Provides user-scoped access to payments with full CRUD operations.\n */\n async usersPaymentUpdate(id: string, user_pk: number, data: Models.PaymentRequest): Promise<Models.Payment> {\n const response = await this.client.request('PUT', `/cfg/payments/users/${user_pk}/payment/${id}/`, { body: data });\n return response;\n }\n\n /**\n * User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\n * Provides user-scoped access to payments with full CRUD operations.\n */\n async usersPaymentPartialUpdate(id: string, user_pk: number, data?: Models.PatchedPaymentRequest): Promise<Models.Payment> {\n const response = await this.client.request('PATCH', `/cfg/payments/users/${user_pk}/payment/${id}/`, { body: data });\n return response;\n }\n\n /**\n * User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\n * Provides user-scoped access to payments with full CRUD operations.\n */\n async usersPaymentDestroy(id: string, user_pk: number): Promise<void> {\n const response = await this.client.request('DELETE', `/cfg/payments/users/${user_pk}/payment/${id}/`);\n return;\n }\n\n /**\n * Cancel payment. POST /api/v1/users/{user_id}/payments/{id}/cancel/\n */\n async usersPaymentCancelCreate(id: string, user_pk: number, data: Models.PaymentRequest): Promise<Models.Payment> {\n const response = await this.client.request('POST', `/cfg/payments/users/${user_pk}/payment/${id}/cancel/`, { body: data });\n return response;\n }\n\n /**\n * Check payment status with provider. POST\n * /api/v1/users/{user_id}/payments/{id}/check_status/\n */\n async usersPaymentCheckStatusCreate(id: string, user_pk: number, data: Models.PaymentRequest): Promise<Models.Payment> {\n const response = await this.client.request('POST', `/cfg/payments/users/${user_pk}/payment/${id}/check_status/`, { body: data });\n return response;\n }\n\n /**\n * Health check for the ViewSet and related services. Returns service\n * status and basic metrics.\n */\n async usersPaymentHealthRetrieve(user_pk: number): Promise<Models.Payment> {\n const response = await this.client.request('GET', `/cfg/payments/users/${user_pk}/payment/health/`);\n return response;\n }\n\n /**\n * Get statistics for the current queryset. Returns counts, aggregates, and\n * breakdowns.\n */\n async usersPaymentStatsRetrieve(user_pk: number): Promise<Models.Payment> {\n const response = await this.client.request('GET', `/cfg/payments/users/${user_pk}/payment/stats/`);\n return response;\n }\n\n /**\n * Get user payment summary. GET /api/v1/users/{user_id}/payments/summary/\n */\n async usersPaymentSummaryRetrieve(user_pk: number): Promise<Models.Payment> {\n const response = await this.client.request('GET', `/cfg/payments/users/${user_pk}/payment/summary/`);\n return response;\n }\n\n async usersSubscriptionsList(user_pk: number, ordering?: string, page?: number, page_size?: number, search?: string, status?: string, tier?: string): Promise<Models.PaginatedSubscriptionListList>;\n async usersSubscriptionsList(user_pk: number, params?: { ordering?: string; page?: number; page_size?: number; search?: string; status?: string; tier?: string }): Promise<Models.PaginatedSubscriptionListList>;\n\n /**\n * User-specific subscription ViewSet: /api/users/{user_id}/subscriptions/\n * Provides user-scoped access to subscriptions with full CRUD operations.\n */\n async usersSubscriptionsList(...args: any[]): Promise<Models.PaginatedSubscriptionListList> {\n const user_pk = args[0];\n const isParamsObject = args.length === 2 && typeof args[1] === 'object' && args[1] !== null && !Array.isArray(args[1]);\n \n let params;\n if (isParamsObject) {\n params = args[1];\n } else {\n params = { ordering: args[1], page: args[2], page_size: args[3], search: args[4], status: args[5], tier: args[6] };\n }\n const response = await this.client.request('GET', `/cfg/payments/users/${user_pk}/subscriptions/`, { params });\n return response;\n }\n\n /**\n * User-specific subscription ViewSet: /api/users/{user_id}/subscriptions/\n * Provides user-scoped access to subscriptions with full CRUD operations.\n */\n async usersSubscriptionsCreate(user_pk: number, data: Models.SubscriptionCreateRequest): Promise<Models.SubscriptionCreate> {\n const response = await this.client.request('POST', `/cfg/payments/users/${user_pk}/subscriptions/`, { body: data });\n return response;\n }\n\n /**\n * User-specific subscription ViewSet: /api/users/{user_id}/subscriptions/\n * Provides user-scoped access to subscriptions with full CRUD operations.\n */\n async usersSubscriptionsRetrieve(id: string, user_pk: number): Promise<Models.Subscription> {\n const response = await this.client.request('GET', `/cfg/payments/users/${user_pk}/subscriptions/${id}/`);\n return response;\n }\n\n /**\n * User-specific subscription ViewSet: /api/users/{user_id}/subscriptions/\n * Provides user-scoped access to subscriptions with full CRUD operations.\n */\n async usersSubscriptionsUpdate(id: string, user_pk: number, data: Models.SubscriptionRequest): Promise<Models.Subscription> {\n const response = await this.client.request('PUT', `/cfg/payments/users/${user_pk}/subscriptions/${id}/`, { body: data });\n return response;\n }\n\n /**\n * User-specific subscription ViewSet: /api/users/{user_id}/subscriptions/\n * Provides user-scoped access to subscriptions with full CRUD operations.\n */\n async usersSubscriptionsPartialUpdate(id: string, user_pk: number, data?: Models.PatchedSubscriptionRequest): Promise<Models.Subscription> {\n const response = await this.client.request('PATCH', `/cfg/payments/users/${user_pk}/subscriptions/${id}/`, { body: data });\n return response;\n }\n\n /**\n * User-specific subscription ViewSet: /api/users/{user_id}/subscriptions/\n * Provides user-scoped access to subscriptions with full CRUD operations.\n */\n async usersSubscriptionsDestroy(id: string, user_pk: number): Promise<void> {\n const response = await this.client.request('DELETE', `/cfg/payments/users/${user_pk}/subscriptions/${id}/`);\n return;\n }\n\n /**\n * Increment subscription usage. POST\n * /api/users/{user_id}/subscriptions/{id}/increment_usage/\n */\n async usersSubscriptionsIncrementUsageCreate(id: string, user_pk: number, data: Models.SubscriptionRequest): Promise<Models.Subscription> {\n const response = await this.client.request('POST', `/cfg/payments/users/${user_pk}/subscriptions/${id}/increment_usage/`, { body: data });\n return response;\n }\n\n /**\n * Update subscription status. POST\n * /api/users/{user_id}/subscriptions/{id}/update_status/\n */\n async usersSubscriptionsUpdateStatusCreate(id: string, user_pk: number, data: Models.SubscriptionRequest): Promise<Models.Subscription> {\n const response = await this.client.request('POST', `/cfg/payments/users/${user_pk}/subscriptions/${id}/update_status/`, { body: data });\n return response;\n }\n\n /**\n * Get user's active subscription. GET\n * /api/users/{user_id}/subscriptions/active/\n */\n async usersSubscriptionsActiveRetrieve(user_pk: number): Promise<Models.Subscription> {\n const response = await this.client.request('GET', `/cfg/payments/users/${user_pk}/subscriptions/active/`);\n return response;\n }\n\n /**\n * Health check for the ViewSet and related services. Returns service\n * status and basic metrics.\n */\n async usersSubscriptionsHealthRetrieve(user_pk: number): Promise<Models.Subscription> {\n const response = await this.client.request('GET', `/cfg/payments/users/${user_pk}/subscriptions/health/`);\n return response;\n }\n\n /**\n * Get statistics for the current queryset. Returns counts, aggregates, and\n * breakdowns.\n */\n async usersSubscriptionsStatsRetrieve(user_pk: number): Promise<Models.Subscription> {\n const response = await this.client.request('GET', `/cfg/payments/users/${user_pk}/subscriptions/stats/`);\n return response;\n }\n\n /**\n * Get user subscription summary. GET\n * /api/users/{user_id}/subscriptions/summary/\n */\n async usersSubscriptionsSummaryRetrieve(user_pk: number): Promise<Models.Subscription> {\n const response = await this.client.request('GET', `/cfg/payments/users/${user_pk}/subscriptions/summary/`);\n return response;\n }\n\n /**\n * Health check for the ViewSet and related services. Returns service\n * status and basic metrics.\n */\n async usersHealthRetrieve(): Promise<Models.Payment> {\n const response = await this.client.request('GET', \"/cfg/payments/users/health/\");\n return response;\n }\n\n /**\n * Get statistics for the current queryset. Returns counts, aggregates, and\n * breakdowns.\n */\n async usersStatsRetrieve(): Promise<Models.Payment> {\n const response = await this.client.request('GET', \"/cfg/payments/users/stats/\");\n return response;\n }\n\n /**\n * Get user payment summary. GET /api/v1/users/{user_id}/payments/summary/\n */\n async usersSummaryRetrieve(): Promise<Models.Payment> {\n const response = await this.client.request('GET', \"/cfg/payments/users/summary/\");\n return response;\n }\n\n}","import * as Enums from \"../enums\";\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedAdminPaymentListList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<AdminPaymentList>;\n}\n\n/**\n * Serializer for creating payments in admin interface. Uses UniversalPayment\n * only for data creation.\n * \n * Request model (no read-only fields).\n */\nexport interface AdminPaymentCreateRequest {\n user: number;\n amount_usd: number;\n /** Provider currency code (e.g., BTC, ZROERC20) */\n currency_code: string;\n provider: string;\n description?: string;\n callback_url?: string;\n cancel_url?: string;\n}\n\n/**\n * Serializer for creating payments in admin interface. Uses UniversalPayment\n * only for data creation.\n * \n * Response model (includes read-only fields).\n */\nexport interface AdminPaymentCreate {\n user: number;\n amount_usd: number;\n provider: string;\n description?: string;\n callback_url?: string;\n cancel_url?: string;\n}\n\n/**\n * Detailed serializer for individual payment in admin interface. Uses\n * UniversalPayment only for data extraction.\n * \n * Response model (includes read-only fields).\n */\nexport interface AdminPaymentDetail {\n id: string;\n user: Record<string, any>;\n internal_payment_id: string;\n amount_usd: number;\n actual_amount_usd: number;\n fee_amount_usd: number;\n currency_code: string;\n currency_name: string;\n provider: string;\n provider_display: string;\n status: string;\n status_display: string;\n pay_amount: string;\n pay_address: string;\n payment_url: string;\n transaction_hash: string;\n confirmations_count: number;\n security_nonce: string;\n expires_at: string;\n completed_at: string;\n status_changed_at: string;\n description: string;\n callback_url: string;\n cancel_url: string;\n provider_data: string;\n webhook_data: string;\n created_at: string;\n updated_at: string;\n age: string;\n}\n\n/**\n * Serializer for updating payments in admin interface.\n * \n * Request model (no read-only fields).\n */\nexport interface AdminPaymentUpdateRequest {\n /** Current payment status\n\n * `pending` - Pending\n * `confirming` - Confirming\n * `confirmed` - Confirmed\n * `completed` - Completed\n * `failed` - Failed\n * `expired` - Expired\n * `cancelled` - Cancelled\n * `refunded` - Refunded */\n status?: Enums.AdminPaymentUpdateRequestStatus;\n /** Payment description */\n description?: string;\n /** Success callback URL */\n callback_url?: string | null;\n /** Cancellation URL */\n cancel_url?: string | null;\n /** Provider-specific data (validated by Pydantic) */\n provider_data?: string;\n /** Webhook data (validated by Pydantic) */\n webhook_data?: string;\n}\n\n/**\n * Serializer for updating payments in admin interface.\n * \n * Response model (includes read-only fields).\n */\nexport interface AdminPaymentUpdate {\n /** Current payment status\n\n * `pending` - Pending\n * `confirming` - Confirming\n * `confirmed` - Confirmed\n * `completed` - Completed\n * `failed` - Failed\n * `expired` - Expired\n * `cancelled` - Cancelled\n * `refunded` - Refunded */\n status?: Enums.AdminPaymentUpdateStatus;\n /** Payment description */\n description?: string;\n /** Success callback URL */\n callback_url?: string | null;\n /** Cancellation URL */\n cancel_url?: string | null;\n /** Provider-specific data (validated by Pydantic) */\n provider_data?: string;\n /** Webhook data (validated by Pydantic) */\n webhook_data?: string;\n}\n\n/**\n * Serializer for updating payments in admin interface.\n * \n * Request model (no read-only fields).\n */\nexport interface PatchedAdminPaymentUpdateRequest {\n /** Current payment status\n\n * `pending` - Pending\n * `confirming` - Confirming\n * `confirmed` - Confirmed\n * `completed` - Completed\n * `failed` - Failed\n * `expired` - Expired\n * `cancelled` - Cancelled\n * `refunded` - Refunded */\n status?: Enums.PatchedAdminPaymentUpdateRequestStatus;\n /** Payment description */\n description?: string;\n /** Success callback URL */\n callback_url?: string | null;\n /** Cancellation URL */\n cancel_url?: string | null;\n /** Provider-specific data (validated by Pydantic) */\n provider_data?: string;\n /** Webhook data (validated by Pydantic) */\n webhook_data?: string;\n}\n\n/**\n * Serializer for payment statistics in admin interface.\n * \n * Response model (includes read-only fields).\n */\nexport interface AdminPaymentStats {\n total_payments: number;\n total_amount_usd: number;\n successful_payments: number;\n failed_payments: number;\n pending_payments: number;\n success_rate: number;\n /** Statistics by provider */\n by_provider: Record<string, any>;\n /** Statistics by currency */\n by_currency: Record<string, any>;\n /** Payments in last 24 hours */\n last_24h: Record<string, any>;\n /** Payments in last 7 days */\n last_7d: Record<string, any>;\n /** Payments in last 30 days */\n last_30d: Record<string, any>;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedAdminPaymentStatsList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<AdminPaymentStats>;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedAdminUserList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<AdminUser>;\n}\n\n/**\n * Simplified user serializer for admin interface.\n * \n * Response model (includes read-only fields).\n */\nexport interface AdminUser {\n id: number;\n /** Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. */\n username: string;\n email: string;\n first_name: string;\n last_name: string;\n /** Designates whether this user should be treated as active. Unselect this instead of deleting accounts. */\n is_active: boolean;\n}\n\n/**\n * Serializer for comprehensive webhook statistics.\n * \n * Request model (no read-only fields).\n */\nexport interface WebhookStatsRequest {\n total: number;\n successful: number;\n failed: number;\n pending: number;\n success_rate: number;\n /** Statistics by provider */\n providers: Record<string, any>;\n /** Events in last 24 hours */\n last_24h: Record<string, any>;\n avg_response_time: number;\n max_response_time: number;\n}\n\n/**\n * Serializer for comprehensive webhook statistics.\n * \n * Response model (includes read-only fields).\n */\nexport interface WebhookStats {\n total: number;\n successful: number;\n failed: number;\n pending: number;\n success_rate: number;\n /** Statistics by provider */\n providers: Record<string, any>;\n /** Events in last 24 hours */\n last_24h: Record<string, any>;\n avg_response_time: number;\n max_response_time: number;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedWebhookStatsList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<WebhookStats>;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedWebhookEventListList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<WebhookEventList>;\n}\n\n/**\n * Serializer for paginated webhook events list.\n * \n * Response model (includes read-only fields).\n */\nexport interface WebhookEventList {\n events: Array<WebhookEvent>;\n total: number;\n page: number;\n per_page: number;\n has_next: boolean;\n has_previous: boolean;\n}\n\n/**\n * Serializer for paginated webhook events list.\n * \n * Request model (no read-only fields).\n */\nexport interface WebhookEventListRequest {\n events: Array<WebhookEventRequest>;\n total: number;\n page: number;\n per_page: number;\n has_next: boolean;\n has_previous: boolean;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedAPIKeyListList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<APIKeyList>;\n}\n\n/**\n * API key creation serializer with service integration. Creates new API keys\n * and returns the full key value (only once).\n * \n * Request model (no read-only fields).\n */\nexport interface APIKeyCreateRequest {\n /** Descriptive name for the API key */\n name: string;\n /** Expiration in days (optional, null for no expiration) */\n expires_in_days?: number | null;\n}\n\n/**\n * API key creation serializer with service integration. Creates new API keys\n * and returns the full key value (only once).\n * \n * Response model (includes read-only fields).\n */\nexport interface APIKeyCreate {\n /** Descriptive name for the API key */\n name: string;\n /** Expiration in days (optional, null for no expiration) */\n expires_in_days?: number | null;\n}\n\n/**\n * Complete API key serializer with full details. Used for API key detail views\n * (no key value for security).\n * \n * Response model (includes read-only fields).\n */\nexport interface APIKeyDetail {\n /** Unique identifier for this record */\n id: string;\n user: string;\n /** Human-readable name for this API key */\n name: string;\n key_preview: string;\n /** Whether this API key is active */\n is_active: boolean;\n is_expired: boolean;\n is_valid: boolean;\n days_until_expiry: number;\n /** Total number of requests made with this key */\n total_requests: number;\n /** When this API key was last used */\n last_used_at: string | null;\n /** When this API key expires (null = never expires) */\n expires_at: string | null;\n /** When this record was created */\n created_at: string;\n /** When this record was last updated */\n updated_at: string;\n}\n\n/**\n * API key update serializer for modifying API key properties. Allows updating\n * name and active status only.\n * \n * Request model (no read-only fields).\n */\nexport interface APIKeyUpdateRequest {\n /** Human-readable name for this API key */\n name: string;\n /** Whether this API key is active */\n is_active?: boolean;\n}\n\n/**\n * API key update serializer for modifying API key properties. Allows updating\n * name and active status only.\n * \n * Response model (includes read-only fields).\n */\nexport interface APIKeyUpdate {\n /** Human-readable name for this API key */\n name: string;\n /** Whether this API key is active */\n is_active?: boolean;\n}\n\n/**\n * API key update serializer for modifying API key properties. Allows updating\n * name and active status only.\n * \n * Request model (no read-only fields).\n */\nexport interface PatchedAPIKeyUpdateRequest {\n /** Human-readable name for this API key */\n name?: string;\n /** Whether this API key is active */\n is_active?: boolean;\n}\n\n/**\n * API key validation serializer. Validates API key and returns key\n * information.\n * \n * Request model (no read-only fields).\n */\nexport interface APIKeyValidationRequest {\n /** API key to validate */\n key: string;\n}\n\n/**\n * API key validation response serializer. Defines the structure of API key\n * validation response for OpenAPI schema.\n * \n * Response model (includes read-only fields).\n */\nexport interface APIKeyValidationResponse {\n /** Whether the validation was successful */\n success: boolean;\n /** Whether the API key is valid */\n valid: boolean;\n api_key: Record<string, any>;\n /** Validation message */\n message: string;\n /** Error message if validation failed */\n error?: string;\n /** Error code if validation failed */\n error_code?: string;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedUserBalanceList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<UserBalance>;\n}\n\n/**\n * User balance serializer with computed fields. Provides balance information\n * with display helpers.\n * \n * Response model (includes read-only fields).\n */\nexport interface UserBalance {\n user: string;\n /** Current balance in USD (float for performance) */\n balance_usd: number;\n /** Formatted balance display. */\n balance_display: string;\n /** Check if balance is zero. */\n is_empty: boolean;\n /** Check if user has any transactions. */\n has_transactions: boolean;\n created_at: string;\n updated_at: string;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedCurrencyListList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<CurrencyList>;\n}\n\n/**\n * Complete currency serializer with full details. Used for currency\n * information and management.\n * \n * Response model (includes read-only fields).\n */\nexport interface Currency {\n id: number;\n /** Currency code (e.g., BTC, USD, ETH) */\n code: string;\n /** Full currency name (e.g., Bitcoin, US Dollar) */\n name: string;\n /** Currency symbol (e.g., $, ₿, Ξ) */\n symbol: string;\n /** Type of currency\n\n * `fiat` - Fiat Currency\n * `crypto` - Cryptocurrency */\n currency_type: Enums.CurrencyCurrencyType;\n type_display: string;\n /** Number of decimal places for this currency */\n decimal_places: number;\n /** Whether this currency is available for payments */\n is_active: boolean;\n /** Check if this is a cryptocurrency. */\n is_crypto: boolean;\n /** Check if this is a fiat currency. */\n is_fiat: boolean;\n /** When this record was created */\n created_at: string;\n /** When this record was last updated */\n updated_at: string;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedEndpointGroupList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<EndpointGroup>;\n}\n\n/**\n * Endpoint group serializer for API access management. Used for subscription\n * endpoint group configuration.\n * \n * Response model (includes read-only fields).\n */\nexport interface EndpointGroup {\n id: number;\n /** Endpoint group name (e.g., 'Payment API', 'Balance API') */\n name: string;\n /** Description of what this endpoint group provides */\n description: string;\n /** Whether this endpoint group is available */\n is_enabled: boolean;\n created_at: string;\n updated_at: string;\n}\n\n/**\n * Complete payment serializer with full details. Used for detail views and\n * updates.\n * \n * Response model (includes read-only fields).\n */\nexport interface Payment {\n /** Unique identifier for this record */\n id: string;\n user: string;\n /** Payment amount in USD (float for performance) */\n amount_usd: number;\n /** Payment currency */\n currency: number;\n /** Blockchain network (for crypto payments) */\n network?: number | null;\n /** Payment provider\n\n * `nowpayments` - NowPayments */\n provider?: Enums.PaymentProvider;\n /** Current payment status\n\n * `pending` - Pending\n * `confirming` - Confirming\n * `confirmed` - Confirmed\n * `completed` - Completed\n * `failed` - Failed\n * `expired` - Expired\n * `cancelled` - Cancelled\n * `refunded` - Refunded */\n status?: Enums.PaymentStatus;\n status_display: string;\n /** Get formatted amount display. */\n amount_display: string;\n /** Provider's payment ID */\n provider_payment_id: string | null;\n /** Payment page URL */\n payment_url: string | null;\n /** Cryptocurrency payment address */\n pay_address: string | null;\n /** Success callback URL */\n callback_url?: string | null;\n /** Cancellation URL */\n cancel_url?: string | null;\n /** Payment description */\n description?: string;\n /** Blockchain transaction hash */\n transaction_hash: string | null;\n /** Number of blockchain confirmations */\n confirmations_count: number;\n /** When this record was created */\n created_at: string;\n /** When this record was last updated */\n updated_at: string;\n /** When this payment expires */\n expires_at?: string | null;\n /** When this payment was completed */\n completed_at: string | null;\n /** Check if payment is pending. */\n is_pending: boolean;\n /** Check if payment is completed. */\n is_completed: boolean;\n /** Check if payment is failed. */\n is_failed: boolean;\n /** Check if payment is expired. */\n is_expired: boolean;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedNetworkList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<Network>;\n}\n\n/**\n * Network serializer for blockchain networks. Used for network information and\n * selection.\n * \n * Response model (includes read-only fields).\n */\nexport interface Network {\n id: number;\n currency: Record<string, any>;\n /** Network name (e.g., Ethereum, Bitcoin, Polygon) */\n name: string;\n /** Network code (e.g., ETH, BTC, MATIC) */\n code: string;\n /** Whether this network is available for payments */\n is_active: boolean;\n /** When this record was created */\n created_at: string;\n /** When this record was last updated */\n updated_at: string;\n}\n\n/**\n * API keys overview metrics\n * \n * Response model (includes read-only fields).\n */\nexport interface APIKeysOverview {\n /** Total number of API keys */\n total_keys: number;\n /** Number of active API keys */\n active_keys: number;\n /** Number of expired API keys */\n expired_keys: number;\n /** Total requests across all keys */\n total_requests: number;\n /** When any key was last used */\n last_used_at: string | null;\n /** Name of most used API key */\n most_used_key_name: string | null;\n /** Requests count for most used key */\n most_used_key_requests: number;\n /** Number of keys expiring within 7 days */\n expiring_soon_count: number;\n}\n\n/**\n * User balance overview metrics\n * \n * Response model (includes read-only fields).\n */\nexport interface BalanceOverview {\n /** Current balance in USD */\n current_balance: number;\n /** Formatted balance display */\n balance_display: string;\n /** Total amount deposited (lifetime) */\n total_deposited: number;\n /** Total amount spent (lifetime) */\n total_spent: number;\n /** Last transaction timestamp */\n last_transaction_at: string | null;\n /** Whether user has any transactions */\n has_transactions: boolean;\n /** Whether balance is zero */\n is_empty: boolean;\n}\n\n/**\n * Complete chart response for payments analytics\n * \n * Response model (includes read-only fields).\n */\nexport interface PaymentsChartResponse {\n /** Chart series data */\n series: Array<ChartSeries>;\n /** Time period */\n period: string;\n /** Total amount for period */\n total_amount: number;\n /** Total payments for period */\n total_payments: number;\n /** Success rate for period */\n success_rate: number;\n}\n\n/**\n * Complete payments dashboard metrics\n * \n * Response model (includes read-only fields).\n */\nexport interface PaymentsMetrics {\n balance: Record<string, any>;\n subscription: Record<string, any>;\n api_keys: Record<string, any>;\n payments: Record<string, any>;\n}\n\n/**\n * Complete payments dashboard overview response\n * \n * Response model (includes read-only fields).\n */\nexport interface PaymentsDashboardOverview {\n metrics: Record<string, any>;\n /** Recent payments */\n recent_payments: Array<RecentPayment>;\n /** Recent transactions */\n recent_transactions: Array<RecentTransaction>;\n chart_data: Record<string, any>;\n}\n\n/**\n * Payment analytics response with currency and provider breakdown\n * \n * Response model (includes read-only fields).\n */\nexport interface PaymentAnalyticsResponse {\n /** Analytics by currency */\n currency_analytics: Array<CurrencyAnalyticsItem>;\n /** Analytics by provider */\n provider_analytics: Array<ProviderAnalyticsItem>;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedRecentPaymentList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<RecentPayment>;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedRecentTransactionList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<RecentTransaction>;\n}\n\n/**\n * Current subscription overview\n * \n * Response model (includes read-only fields).\n */\nexport interface SubscriptionOverview {\n /** Subscription tier */\n tier: string;\n /** Human-readable tier name */\n tier_display: string;\n /** Subscription status */\n status: string;\n /** Human-readable status */\n status_display: string;\n /** Color for status display */\n status_color: string;\n /** Whether subscription is active */\n is_active: boolean;\n /** Whether subscription is expired */\n is_expired: boolean;\n /** Days until expiration */\n days_remaining: number;\n /** Hourly request limit */\n requests_per_hour: number;\n /** Daily request limit */\n requests_per_day: number;\n /** Total requests made */\n total_requests: number;\n /** Usage percentage for current period */\n usage_percentage: number;\n /** Monthly cost in USD */\n monthly_cost_usd: number;\n /** Formatted cost display */\n cost_display: string;\n /** Subscription start date */\n starts_at: string;\n /** Subscription expiration date */\n expires_at: string;\n /** Last API request timestamp */\n last_request_at: string | null;\n /** Number of accessible endpoint groups */\n endpoint_groups_count: number;\n /** List of accessible endpoint group names */\n endpoint_groups: Array<string>;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedPaymentListList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<PaymentList>;\n}\n\n/**\n * Payment creation serializer with Pydantic integration. Validates input and\n * delegates to PaymentService.\n * \n * Request model (no read-only fields).\n */\nexport interface PaymentCreateRequest {\n /** Amount in USD (1.00 - 50,000.00) */\n amount_usd: number;\n /** Cryptocurrency to receive\n\n * `BTC` - Bitcoin\n * `ETH` - Ethereum\n * `LTC` - Litecoin\n * `XMR` - Monero\n * `USDT` - Tether\n * `USDC` - USD Coin\n * `ADA` - Cardano\n * `DOT` - Polkadot */\n currency_code: Enums.PaymentCreateRequestCurrencyCode;\n /** Payment provider\n\n * `nowpayments` - NowPayments */\n provider?: Enums.PaymentCreateRequestProvider;\n /** Success callback URL */\n callback_url?: string;\n /** Cancellation URL */\n cancel_url?: string;\n /** Payment description */\n description?: string;\n /** Additional metadata */\n metadata?: string;\n}\n\n/**\n * Payment creation serializer with Pydantic integration. Validates input and\n * delegates to PaymentService.\n * \n * Response model (includes read-only fields).\n */\nexport interface PaymentCreate {\n /** Amount in USD (1.00 - 50,000.00) */\n amount_usd: number;\n /** Cryptocurrency to receive\n\n * `BTC` - Bitcoin\n * `ETH` - Ethereum\n * `LTC` - Litecoin\n * `XMR` - Monero\n * `USDT` - Tether\n * `USDC` - USD Coin\n * `ADA` - Cardano\n * `DOT` - Polkadot */\n currency_code: Enums.PaymentCreateCurrencyCode;\n /** Payment provider\n\n * `nowpayments` - NowPayments */\n provider?: Enums.PaymentCreateProvider;\n /** Success callback URL */\n callback_url?: string;\n /** Cancellation URL */\n cancel_url?: string;\n /** Payment description */\n description?: string;\n /** Additional metadata */\n metadata?: string;\n}\n\n/**\n * Complete payment serializer with full details. Used for detail views and\n * updates.\n * \n * Request model (no read-only fields).\n */\nexport interface PaymentRequest {\n /** Payment amount in USD (float for performance) */\n amount_usd: number;\n /** Payment currency */\n currency: number;\n /** Blockchain network (for crypto payments) */\n network?: number | null;\n /** Payment provider\n\n * `nowpayments` - NowPayments */\n provider?: Enums.PaymentRequestProvider;\n /** Current payment status\n\n * `pending` - Pending\n * `confirming` - Confirming\n * `confirmed` - Confirmed\n * `completed` - Completed\n * `failed` - Failed\n * `expired` - Expired\n * `cancelled` - Cancelled\n * `refunded` - Refunded */\n status?: Enums.PaymentRequestStatus;\n /** Success callback URL */\n callback_url?: string | null;\n /** Cancellation URL */\n cancel_url?: string | null;\n /** Payment description */\n description?: string;\n /** When this payment expires */\n expires_at?: string | null;\n}\n\n/**\n * Complete payment serializer with full details. Used for detail views and\n * updates.\n * \n * Request model (no read-only fields).\n */\nexport interface PatchedPaymentRequest {\n /** Payment amount in USD (float for performance) */\n amount_usd?: number;\n /** Payment currency */\n currency?: number;\n /** Blockchain network (for crypto payments) */\n network?: number | null;\n /** Payment provider\n\n * `nowpayments` - NowPayments */\n provider?: Enums.PatchedPaymentRequestProvider;\n /** Current payment status\n\n * `pending` - Pending\n * `confirming` - Confirming\n * `confirmed` - Confirmed\n * `completed` - Completed\n * `failed` - Failed\n * `expired` - Expired\n * `cancelled` - Cancelled\n * `refunded` - Refunded */\n status?: Enums.PatchedPaymentRequestStatus;\n /** Success callback URL */\n callback_url?: string | null;\n /** Cancellation URL */\n cancel_url?: string | null;\n /** Payment description */\n description?: string;\n /** When this payment expires */\n expires_at?: string | null;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedProviderCurrencyList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<ProviderCurrency>;\n}\n\n/**\n * Provider currency serializer for provider-specific currency info. Used for\n * provider currency management and rates.\n * \n * Response model (includes read-only fields).\n */\nexport interface ProviderCurrency {\n id: number;\n currency: Record<string, any>;\n network: Record<string, any>;\n /** Payment provider name (e.g., nowpayments) */\n provider: string;\n /** Currency code as used by the provider */\n provider_currency_code: string;\n /** Get minimum amount from provider configuration. */\n provider_min_amount_usd: number;\n /** Get maximum amount from provider configuration. */\n provider_max_amount_usd: number;\n /** Get fee percentage from provider configuration. */\n provider_fee_percentage: number;\n /** Get fixed fee from provider configuration. */\n provider_fixed_fee_usd: number;\n /** Whether this currency is enabled for this provider */\n is_enabled: boolean;\n /** When this record was created */\n created_at: string;\n /** When this record was last updated */\n updated_at: string;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedSubscriptionListList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<SubscriptionList>;\n}\n\n/**\n * Subscription creation serializer with service integration. Validates input\n * and delegates to SubscriptionService.\n * \n * Request model (no read-only fields).\n */\nexport interface SubscriptionCreateRequest {\n /** Tariff ID for the subscription */\n tariff_id: number;\n /** Endpoint group ID (optional) */\n endpoint_group_id?: number | null;\n /** Subscription duration in days */\n duration_days?: number;\n}\n\n/**\n * Subscription creation serializer with service integration. Validates input\n * and delegates to SubscriptionService.\n * \n * Response model (includes read-only fields).\n */\nexport interface SubscriptionCreate {\n /** Tariff ID for the subscription */\n tariff_id: number;\n /** Endpoint group ID (optional) */\n endpoint_group_id?: number | null;\n /** Subscription duration in days */\n duration_days?: number;\n}\n\n/**\n * Complete subscription serializer with full details. Used for subscription\n * detail views and updates.\n * \n * Response model (includes read-only fields).\n */\nexport interface Subscription {\n /** Unique identifier for this record */\n id: string;\n user: string;\n tariff: Record<string, any>;\n endpoint_group: Record<string, any>;\n /** Subscription status\n\n * `active` - Active\n * `inactive` - Inactive\n * `suspended` - Suspended\n * `cancelled` - Cancelled\n * `expired` - Expired */\n status?: Enums.SubscriptionStatus;\n status_display: string;\n /** Get color for status display. */\n status_color: string;\n /** Subscription tier\n\n * `free` - Free Tier\n * `basic` - Basic Tier\n * `pro` - Pro Tier\n * `enterprise` - Enterprise Tier */\n tier?: Enums.SubscriptionTier;\n /** Total API requests made with this subscription */\n total_requests: number;\n /** Get usage percentage for current period. */\n usage_percentage: number;\n /** When the last API request was made */\n last_request_at: string | null;\n /** When this subscription expires */\n expires_at: string;\n /** Check if subscription is active and not expired. */\n is_active: boolean;\n /** Check if subscription is expired. */\n is_expired: boolean;\n /** When this record was created */\n created_at: string;\n /** When this record was last updated */\n updated_at: string;\n}\n\n/**\n * Complete subscription serializer with full details. Used for subscription\n * detail views and updates.\n * \n * Request model (no read-only fields).\n */\nexport interface SubscriptionRequest {\n /** Subscription status\n\n * `active` - Active\n * `inactive` - Inactive\n * `suspended` - Suspended\n * `cancelled` - Cancelled\n * `expired` - Expired */\n status?: Enums.SubscriptionRequestStatus;\n /** Subscription tier\n\n * `free` - Free Tier\n * `basic` - Basic Tier\n * `pro` - Pro Tier\n * `enterprise` - Enterprise Tier */\n tier?: Enums.SubscriptionRequestTier;\n /** When this subscription expires */\n expires_at: string;\n}\n\n/**\n * Complete subscription serializer with full details. Used for subscription\n * detail views and updates.\n * \n * Request model (no read-only fields).\n */\nexport interface PatchedSubscriptionRequest {\n /** Subscription status\n\n * `active` - Active\n * `inactive` - Inactive\n * `suspended` - Suspended\n * `cancelled` - Cancelled\n * `expired` - Expired */\n status?: Enums.PatchedSubscriptionRequestStatus;\n /** Subscription tier\n\n * `free` - Free Tier\n * `basic` - Basic Tier\n * `pro` - Pro Tier\n * `enterprise` - Enterprise Tier */\n tier?: Enums.PatchedSubscriptionRequestTier;\n /** When this subscription expires */\n expires_at?: string;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedTariffList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<Tariff>;\n}\n\n/**\n * Tariff serializer for subscription pricing. Used for tariff information and\n * selection.\n * \n * Response model (includes read-only fields).\n */\nexport interface Tariff {\n id: number;\n /** Tariff name (e.g., 'Free', 'Basic', 'Pro') */\n name: string;\n /** Detailed description of what this tariff includes */\n description: string;\n /** Monthly price in USD */\n monthly_price_usd: number;\n /** API requests allowed per month */\n requests_per_month: number;\n /** API requests allowed per hour */\n requests_per_hour: number;\n /** Whether this tariff is available for new subscriptions */\n is_active: boolean;\n endpoint_groups: Array<EndpointGroup>;\n endpoint_groups_count: number;\n /** When this record was created */\n created_at: string;\n /** When this record was last updated */\n updated_at: string;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedTransactionList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<Transaction>;\n}\n\n/**\n * Transaction serializer with full details. Used for transaction history and\n * details.\n * \n * Response model (includes read-only fields).\n */\nexport interface Transaction {\n /** Unique identifier for this record */\n id: string;\n user: string;\n /** Transaction amount in USD (positive=credit, negative=debit) */\n amount_usd: number;\n amount_display: string;\n /** Type of transaction\n\n * `deposit` - Deposit\n * `withdrawal` - Withdrawal\n * `payment` - Payment\n * `refund` - Refund\n * `fee` - Fee\n * `bonus` - Bonus\n * `adjustment` - Adjustment */\n transaction_type: Enums.TransactionTransactionType;\n type_color: string;\n /** Transaction description */\n description: string;\n /** Related payment ID (if applicable) */\n payment_id: string | null;\n /** Additional transaction metadata */\n metadata: string;\n is_credit: boolean;\n is_debit: boolean;\n /** When this record was created */\n created_at: string;\n}\n\n/**\n * Serializer for payment list in admin interface. Uses UniversalPayment only\n * for data extraction.\n * \n * Response model (includes read-only fields).\n */\nexport interface AdminPaymentList {\n id: string;\n internal_payment_id: string;\n user: Record<string, any>;\n amount_usd: number;\n currency_code: string;\n currency_name: string;\n provider: string;\n provider_display: string;\n status: string;\n status_display: string;\n pay_amount: string;\n pay_address: string;\n transaction_hash: string;\n created_at: string;\n updated_at: string;\n description: string;\n age: string;\n}\n\n/**\n * Serializer for individual webhook event.\n * \n * Response model (includes read-only fields).\n */\nexport interface WebhookEvent {\n id: number;\n provider: string;\n event_type: string;\n /** * `success` - Success\n * `failed` - Failed\n * `pending` - Pending\n * `retry` - Retry */\n status: Enums.WebhookEventStatus;\n timestamp: string;\n /** Size in bytes */\n payload_size: number;\n /** Response time in ms */\n response_time: number;\n retry_count?: number;\n error_message?: string;\n payload_preview?: string;\n response_status_code?: number;\n webhook_url?: string;\n}\n\n/**\n * Serializer for individual webhook event.\n * \n * Request model (no read-only fields).\n */\nexport interface WebhookEventRequest {\n provider: string;\n event_type: string;\n /** * `success` - Success\n * `failed` - Failed\n * `pending` - Pending\n * `retry` - Retry */\n status: Enums.WebhookEventRequestStatus;\n timestamp: string;\n /** Size in bytes */\n payload_size: number;\n /** Response time in ms */\n response_time: number;\n retry_count?: number;\n error_message?: string;\n payload_preview?: string;\n response_status_code?: number;\n webhook_url?: string;\n}\n\n/**\n * Lightweight API key serializer for lists. Optimized for API key lists with\n * minimal data (no key value).\n * \n * Response model (includes read-only fields).\n */\nexport interface APIKeyList {\n /** Unique identifier for this record */\n id: string;\n user: string;\n /** Human-readable name for this API key */\n name: string;\n /** Whether this API key is active */\n is_active: boolean;\n is_expired: boolean;\n is_valid: boolean;\n /** Total number of requests made with this key */\n total_requests: number;\n /** When this API key was last used */\n last_used_at: string | null;\n /** When this API key expires (null = never expires) */\n expires_at: string | null;\n /** When this record was created */\n created_at: string;\n}\n\n/**\n * Lightweight currency serializer for lists. Optimized for currency selection\n * and lists.\n * \n * Response model (includes read-only fields).\n */\nexport interface CurrencyList {\n id: number;\n /** Currency code (e.g., BTC, USD, ETH) */\n code: string;\n /** Full currency name (e.g., Bitcoin, US Dollar) */\n name: string;\n /** Currency symbol (e.g., $, ₿, Ξ) */\n symbol: string;\n /** Type of currency\n\n * `fiat` - Fiat Currency\n * `crypto` - Cryptocurrency */\n currency_type: Enums.CurrencyListCurrencyType;\n type_display: string;\n /** Whether this currency is available for payments */\n is_active: boolean;\n}\n\n/**\n * Chart series data for payments visualization\n * \n * Response model (includes read-only fields).\n */\nexport interface ChartSeries {\n /** Series name */\n name: string;\n /** Data points */\n data: Array<ChartDataPoint>;\n /** Series color */\n color: string;\n}\n\n/**\n * Payments overview metrics\n * \n * Response model (includes read-only fields).\n */\nexport interface PaymentOverview {\n /** Total number of payments */\n total_payments: number;\n /** Number of completed payments */\n completed_payments: number;\n /** Number of pending payments */\n pending_payments: number;\n /** Number of failed payments */\n failed_payments: number;\n /** Total payment amount in USD */\n total_amount_usd: number;\n /** Total completed amount in USD */\n completed_amount_usd: number;\n /** Average payment amount in USD */\n average_payment_usd: number;\n /** Payment success rate percentage */\n success_rate: number;\n /** Last payment timestamp */\n last_payment_at: string | null;\n /** Number of payments this month */\n payments_this_month: number;\n /** Total amount this month */\n amount_this_month: number;\n /** Most used currency */\n top_currency: string | null;\n /** Usage count for top currency */\n top_currency_count: number;\n}\n\n/**\n * Recent payment item\n * \n * Response model (includes read-only fields).\n */\nexport interface RecentPayment {\n /** Payment ID */\n id: string;\n /** Internal payment ID */\n internal_payment_id: string;\n /** Payment amount in USD */\n amount_usd: number;\n /** Formatted amount display */\n amount_display: string;\n /** Currency code */\n currency_code: string;\n /** Payment status */\n status: string;\n /** Human-readable status */\n status_display: string;\n /** Color for status display */\n status_color: string;\n /** Payment provider */\n provider: string;\n /** Payment creation timestamp */\n created_at: string;\n /** Payment completion timestamp */\n completed_at: string | null;\n /** Whether payment is pending */\n is_pending: boolean;\n /** Whether payment is completed */\n is_completed: boolean;\n /** Whether payment failed */\n is_failed: boolean;\n}\n\n/**\n * Recent transaction item\n * \n * Response model (includes read-only fields).\n */\nexport interface RecentTransaction {\n /** Transaction ID */\n id: string;\n /** Transaction type */\n transaction_type: string;\n /** Transaction amount in USD */\n amount_usd: number;\n /** Formatted amount display */\n amount_display: string;\n /** Balance after transaction */\n balance_after: number;\n /** Transaction description */\n description: string;\n /** Transaction timestamp */\n created_at: string;\n /** Related payment ID */\n payment_id: string | null;\n /** Whether this is a credit transaction */\n is_credit: boolean;\n /** Whether this is a debit transaction */\n is_debit: boolean;\n /** Color for transaction type display */\n type_color: string;\n}\n\n/**\n * Analytics data for a single currency\n * \n * Response model (includes read-only fields).\n */\nexport interface CurrencyAnalyticsItem {\n /** Currency code (e.g., BTC) */\n currency_code: string;\n /** Currency name (e.g., Bitcoin) */\n currency_name: string;\n /** Total number of payments */\n total_payments: number;\n /** Total amount in USD */\n total_amount: number;\n /** Number of completed payments */\n completed_payments: number;\n /** Average payment amount in USD */\n average_amount: number;\n /** Success rate percentage */\n success_rate: number;\n}\n\n/**\n * Analytics data for a single payment provider\n * \n * Response model (includes read-only fields).\n */\nexport interface ProviderAnalyticsItem {\n /** Provider code */\n provider: string;\n /** Provider display name */\n provider_display: string;\n /** Total number of payments */\n total_payments: number;\n /** Total amount in USD */\n total_amount: number;\n /** Number of completed payments */\n completed_payments: number;\n /** Success rate percentage */\n success_rate: number;\n}\n\n/**\n * Lightweight serializer for payment lists. Optimized for list views with\n * minimal data.\n * \n * Response model (includes read-only fields).\n */\nexport interface PaymentList {\n /** Unique identifier for this record */\n id: string;\n /** Payment amount in USD (float for performance) */\n amount_usd: number;\n /** Payment currency */\n currency: number;\n /** Payment provider\n\n * `nowpayments` - NowPayments */\n provider: Enums.PaymentListProvider;\n /** Current payment status\n\n * `pending` - Pending\n * `confirming` - Confirming\n * `confirmed` - Confirmed\n * `completed` - Completed\n * `failed` - Failed\n * `expired` - Expired\n * `cancelled` - Cancelled\n * `refunded` - Refunded */\n status: Enums.PaymentListStatus;\n status_display: string;\n /** Get formatted amount display. */\n amount_display: string;\n /** When this record was created */\n created_at: string;\n /** When this payment expires */\n expires_at: string | null;\n}\n\n/**\n * Lightweight subscription serializer for lists. Optimized for subscription\n * lists with minimal data.\n * \n * Response model (includes read-only fields).\n */\nexport interface SubscriptionList {\n /** Unique identifier for this record */\n id: string;\n user: string;\n tariff_name: string;\n /** Subscription status\n\n * `active` - Active\n * `inactive` - Inactive\n * `suspended` - Suspended\n * `cancelled` - Cancelled\n * `expired` - Expired */\n status: Enums.SubscriptionListStatus;\n status_display: string;\n /** Check if subscription is active and not expired. */\n is_active: boolean;\n /** Check if subscription is expired. */\n is_expired: boolean;\n /** When this subscription expires */\n expires_at: string;\n /** When this record was created */\n created_at: string;\n}\n\n/**\n * Chart data point for payments analytics\n * \n * Response model (includes read-only fields).\n */\nexport interface ChartDataPoint {\n /** X-axis value (date) */\n x: string;\n /** Y-axis value (amount or count) */\n y: number;\n}\n\n","import * as Models from \"./models\";\n\n\n/**\n * API endpoints for Support.\n */\nexport class CfgSupportAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n async ticketsList(page?: number, page_size?: number): Promise<Models.PaginatedTicketList>;\n async ticketsList(params?: { page?: number; page_size?: number }): Promise<Models.PaginatedTicketList>;\n\n /**\n * ViewSet for managing support tickets.\n */\n async ticketsList(...args: any[]): Promise<Models.PaginatedTicketList> {\n const isParamsObject = args.length === 1 && typeof args[0] === 'object' && args[0] !== null && !Array.isArray(args[0]);\n \n let params;\n if (isParamsObject) {\n params = args[0];\n } else {\n params = { page: args[0], page_size: args[1] };\n }\n const response = await this.client.request('GET', \"/cfg/support/tickets/\", { params });\n return response;\n }\n\n /**\n * ViewSet for managing support tickets.\n */\n async ticketsCreate(data: Models.TicketRequest): Promise<Models.Ticket> {\n const response = await this.client.request('POST', \"/cfg/support/tickets/\", { body: data });\n return response;\n }\n\n async ticketsMessagesList(ticket_uuid: string, page?: number, page_size?: number): Promise<Models.PaginatedMessageList>;\n async ticketsMessagesList(ticket_uuid: string, params?: { page?: number; page_size?: number }): Promise<Models.PaginatedMessageList>;\n\n /**\n * ViewSet for managing support messages.\n */\n async ticketsMessagesList(...args: any[]): Promise<Models.PaginatedMessageList> {\n const ticket_uuid = args[0];\n const isParamsObject = args.length === 2 && typeof args[1] === 'object' && args[1] !== null && !Array.isArray(args[1]);\n \n let params;\n if (isParamsObject) {\n params = args[1];\n } else {\n params = { page: args[1], page_size: args[2] };\n }\n const response = await this.client.request('GET', `/cfg/support/tickets/${ticket_uuid}/messages/`, { params });\n return response;\n }\n\n /**\n * ViewSet for managing support messages.\n */\n async ticketsMessagesCreate(ticket_uuid: string, data: Models.MessageCreateRequest): Promise<Models.MessageCreate> {\n const response = await this.client.request('POST', `/cfg/support/tickets/${ticket_uuid}/messages/`, { body: data });\n return response;\n }\n\n /**\n * ViewSet for managing support messages.\n */\n async ticketsMessagesRetrieve(ticket_uuid: string, uuid: string): Promise<Models.Message> {\n const response = await this.client.request('GET', `/cfg/support/tickets/${ticket_uuid}/messages/${uuid}/`);\n return response;\n }\n\n /**\n * ViewSet for managing support messages.\n */\n async ticketsMessagesUpdate(ticket_uuid: string, uuid: string, data: Models.MessageRequest): Promise<Models.Message> {\n const response = await this.client.request('PUT', `/cfg/support/tickets/${ticket_uuid}/messages/${uuid}/`, { body: data });\n return response;\n }\n\n /**\n * ViewSet for managing support messages.\n */\n async ticketsMessagesPartialUpdate(ticket_uuid: string, uuid: string, data?: Models.PatchedMessageRequest): Promise<Models.Message> {\n const response = await this.client.request('PATCH', `/cfg/support/tickets/${ticket_uuid}/messages/${uuid}/`, { body: data });\n return response;\n }\n\n /**\n * ViewSet for managing support messages.\n */\n async ticketsMessagesDestroy(ticket_uuid: string, uuid: string): Promise<void> {\n const response = await this.client.request('DELETE', `/cfg/support/tickets/${ticket_uuid}/messages/${uuid}/`);\n return;\n }\n\n /**\n * ViewSet for managing support tickets.\n */\n async ticketsRetrieve(uuid: string): Promise<Models.Ticket> {\n const response = await this.client.request('GET', `/cfg/support/tickets/${uuid}/`);\n return response;\n }\n\n /**\n * ViewSet for managing support tickets.\n */\n async ticketsUpdate(uuid: string, data: Models.TicketRequest): Promise<Models.Ticket> {\n const response = await this.client.request('PUT', `/cfg/support/tickets/${uuid}/`, { body: data });\n return response;\n }\n\n /**\n * ViewSet for managing support tickets.\n */\n async ticketsPartialUpdate(uuid: string, data?: Models.PatchedTicketRequest): Promise<Models.Ticket> {\n const response = await this.client.request('PATCH', `/cfg/support/tickets/${uuid}/`, { body: data });\n return response;\n }\n\n /**\n * ViewSet for managing support tickets.\n */\n async ticketsDestroy(uuid: string): Promise<void> {\n const response = await this.client.request('DELETE', `/cfg/support/tickets/${uuid}/`);\n return;\n }\n\n}","import * as Enums from \"../enums\";\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedTicketList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<Ticket>;\n}\n\n/**\n * \n * Request model (no read-only fields).\n */\nexport interface TicketRequest {\n user: number;\n subject: string;\n /** * `open` - Open\n * `waiting_for_user` - Waiting for User\n * `waiting_for_admin` - Waiting for Admin\n * `resolved` - Resolved\n * `closed` - Closed */\n status?: Enums.TicketRequestStatus;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface Ticket {\n uuid: string;\n user: number;\n subject: string;\n /** * `open` - Open\n * `waiting_for_user` - Waiting for User\n * `waiting_for_admin` - Waiting for Admin\n * `resolved` - Resolved\n * `closed` - Closed */\n status?: Enums.TicketStatus;\n created_at: string;\n /** Get count of unanswered messages for this specific ticket. */\n unanswered_messages_count: number;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface PaginatedMessageList {\n /** Total number of items across all pages */\n count: number;\n /** Current page number (1-based) */\n page: number;\n /** Total number of pages */\n pages: number;\n /** Number of items per page */\n page_size: number;\n /** Whether there is a next page */\n has_next: boolean;\n /** Whether there is a previous page */\n has_previous: boolean;\n /** Next page number (null if no next page) */\n next_page?: number | null;\n /** Previous page number (null if no previous page) */\n previous_page?: number | null;\n /** Array of items for current page */\n results: Array<Message>;\n}\n\n/**\n * \n * Request model (no read-only fields).\n */\nexport interface MessageCreateRequest {\n text: string;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface MessageCreate {\n text: string;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface Message {\n uuid: string;\n ticket: string;\n sender: Record<string, any>;\n /** Check if this message is from the ticket author. */\n is_from_author: boolean;\n text: string;\n created_at: string;\n}\n\n/**\n * \n * Request model (no read-only fields).\n */\nexport interface MessageRequest {\n text: string;\n}\n\n/**\n * \n * Request model (no read-only fields).\n */\nexport interface PatchedMessageRequest {\n text?: string;\n}\n\n/**\n * \n * Request model (no read-only fields).\n */\nexport interface PatchedTicketRequest {\n user?: number;\n subject?: string;\n /** * `open` - Open\n * `waiting_for_user` - Waiting for User\n * `waiting_for_admin` - Waiting for Admin\n * `resolved` - Resolved\n * `closed` - Closed */\n status?: Enums.PatchedTicketRequestStatus;\n}\n\n/**\n * \n * Response model (includes read-only fields).\n */\nexport interface Sender {\n id: number;\n /** Get formatted username for display. */\n display_username: string;\n email: string;\n avatar: string | null;\n /** Get user's initials for avatar fallback. */\n initials: string;\n /** Designates whether the user can log into this admin site. */\n is_staff: boolean;\n /** Designates that this user has all permissions without explicitly assigning them. */\n is_superuser: boolean;\n}\n\n","import * as Models from \"./models\";\n\n\n/**\n * API endpoints for Tasks.\n */\nexport class CfgTasksAPI {\n private client: any;\n\n constructor(client: any) {\n this.client = client;\n }\n\n /**\n * Clear all test data from Redis.\n */\n async apiClearCreate(data: Models.APIResponseRequest): Promise<Models.APIResponse> {\n const response = await this.client.request('POST', \"/cfg/tasks/api/clear/\", { body: data });\n return response;\n }\n\n /**\n * Clear all tasks from all Dramatiq queues.\n */\n async apiClearQueuesCreate(data: Models.APIResponseRequest): Promise<Models.APIResponse> {\n const response = await this.client.request('POST', \"/cfg/tasks/api/clear-queues/\", { body: data });\n return response;\n }\n\n /**\n * Purge all failed tasks from queues.\n */\n async apiPurgeFailedCreate(data: Models.APIResponseRequest): Promise<Models.APIResponse> {\n const response = await this.client.request('POST', \"/cfg/tasks/api/purge-failed/\", { body: data });\n return response;\n }\n\n /**\n * Manage queue operations (clear, purge, etc.).\n */\n async apiQueuesManageCreate(data: Models.QueueActionRequest): Promise<Models.QueueAction> {\n const response = await this.client.request('POST', \"/cfg/tasks/api/queues/manage/\", { body: data });\n return response;\n }\n\n /**\n * Get current status of all queues.\n */\n async apiQueuesStatusRetrieve(): Promise<Models.QueueStatus> {\n const response = await this.client.request('GET', \"/cfg/tasks/api/queues/status/\");\n return response;\n }\n\n /**\n * Simulate test data for dashboard testing.\n */\n async apiSimulateCreate(data: Models.APIResponseRequest): Promise<Models.APIResponse> {\n const response = await this.client.request('POST', \"/cfg/tasks/api/simulate/\", { body: data });\n return response;\n }\n\n /**\n * Get paginated task list with filtering.\n */\n async apiTasksListRetrieve(): Promise<Models.APIResponse> {\n const response = await this.client.request('GET', \"/cfg/tasks/api/tasks/list/\");\n return response;\n }\n\n /**\n * Get task execution statistics.\n */\n async apiTasksStatsRetrieve(): Promise<Models.TaskStatistics> {\n const response = await this.client.request('GET', \"/cfg/tasks/api/tasks/stats/\");\n return response;\n }\n\n /**\n * Get detailed list of workers.\n */\n async apiWorkersListRetrieve(): Promise<Models.APIResponse> {\n const response = await this.client.request('GET', \"/cfg/tasks/api/workers/list/\");\n return response;\n }\n\n /**\n * Manage worker operations.\n */\n async apiWorkersManageCreate(data: Models.WorkerActionRequest): Promise<Models.WorkerAction> {\n const response = await this.client.request('POST', \"/cfg/tasks/api/workers/manage/\", { body: data });\n return response;\n }\n\n}","import * as Enums from \"../enums\";\n\n/**\n * Standard API response serializer.\n * \n * Request model (no read-only fields).\n */\nexport interface APIResponseRequest {\n /** Operation success status */\n success: boolean;\n /** Success message */\n message?: string;\n /** Error message */\n error?: string;\n /** Response data */\n data?: Record<string, any>;\n}\n\n/**\n * Standard API response serializer.\n * \n * Response model (includes read-only fields).\n */\nexport interface APIResponse {\n /** Operation success status */\n success: boolean;\n /** Success message */\n message?: string;\n /** Error message */\n error?: string;\n /** Response data */\n data?: Record<string, any>;\n}\n\n/**\n * Serializer for queue management actions.\n * \n * Request model (no read-only fields).\n */\nexport interface QueueActionRequest {\n /** Action to perform on queues\n\n * `clear` - clear\n * `clear_all` - clear_all\n * `purge` - purge\n * `purge_failed` - purge_failed\n * `flush` - flush */\n action: Enums.QueueActionRequestAction;\n /** Specific queues to target (empty = all queues) */\n queue_names?: Array<string>;\n}\n\n/**\n * Serializer for queue management actions.\n * \n * Response model (includes read-only fields).\n */\nexport interface QueueAction {\n /** Action to perform on queues\n\n * `clear` - clear\n * `clear_all` - clear_all\n * `purge` - purge\n * `purge_failed` - purge_failed\n * `flush` - flush */\n action: Enums.QueueActionAction;\n /** Specific queues to target (empty = all queues) */\n queue_names?: Array<string>;\n}\n\n/**\n * Serializer for queue status data.\n * \n * Response model (includes read-only fields).\n */\nexport interface QueueStatus {\n /** Queue information with pending/failed counts */\n queues: Record<string, any>;\n /** Number of active workers */\n workers: number;\n /** Redis connection status */\n redis_connected: boolean;\n /** Current timestamp */\n timestamp: string;\n /** Error message if any */\n error?: string;\n}\n\n/**\n * Serializer for task statistics data.\n * \n * Response model (includes read-only fields).\n */\nexport interface TaskStatistics {\n /** Task count statistics */\n statistics: Record<string, any>;\n /** List of recent tasks */\n recent_tasks: Array<Record<string, any>>;\n /** Current timestamp */\n timestamp: string;\n /** Error message if any */\n error?: string;\n}\n\n/**\n * Serializer for worker management actions.\n * \n * Request model (no read-only fields).\n */\nexport interface WorkerActionRequest {\n /** Action to perform on workers\n\n * `start` - start\n * `stop` - stop\n * `restart` - restart */\n action: Enums.WorkerActionRequestAction;\n /** Number of worker processes */\n processes?: number;\n /** Number of threads per process */\n threads?: number;\n}\n\n/**\n * Serializer for worker management actions.\n * \n * Response model (includes read-only fields).\n */\nexport interface WorkerAction {\n /** Action to perform on workers\n\n * `start` - start\n * `stop` - stop\n * `restart` - restart */\n action: Enums.WorkerActionAction;\n /** Number of worker processes */\n processes?: number;\n /** Number of threads per process */\n threads?: number;\n}\n\n","/**\n * HTTP Client Adapter Pattern\n *\n * Allows switching between fetch/axios/httpx without changing generated code.\n * Provides unified interface for making HTTP requests.\n */\n\nexport interface HttpRequest {\n method: string;\n url: string;\n headers?: Record<string, string>;\n body?: any;\n params?: Record<string, any>;\n /** FormData for file uploads (multipart/form-data) */\n formData?: FormData;\n}\n\nexport interface HttpResponse<T = any> {\n data: T;\n status: number;\n statusText: string;\n headers: Record<string, string>;\n}\n\n/**\n * HTTP Client Adapter Interface.\n * Implement this to use custom HTTP clients (axios, httpx, etc.)\n */\nexport interface HttpClientAdapter {\n request<T = any>(request: HttpRequest): Promise<HttpResponse<T>>;\n}\n\n/**\n * Default Fetch API adapter.\n * Uses native browser fetch() with proper error handling.\n */\nexport class FetchAdapter implements HttpClientAdapter {\n async request<T = any>(request: HttpRequest): Promise<HttpResponse<T>> {\n const { method, url, headers, body, params, formData } = request;\n\n // Build URL with query params\n const finalUrl = new URL(url);\n if (params) {\n Object.entries(params).forEach(([key, value]) => {\n if (value !== null && value !== undefined) {\n finalUrl.searchParams.append(key, String(value));\n }\n });\n }\n\n // Build headers\n const finalHeaders: Record<string, string> = { ...headers };\n\n // Determine body and content-type\n let requestBody: string | FormData | undefined;\n\n if (formData) {\n // For multipart/form-data, let browser set Content-Type with boundary\n requestBody = formData;\n // Don't set Content-Type - browser will set it with boundary\n } else if (body) {\n // JSON request\n finalHeaders['Content-Type'] = 'application/json';\n requestBody = JSON.stringify(body);\n }\n\n // Make request\n const response = await fetch(finalUrl.toString(), {\n method,\n headers: finalHeaders,\n body: requestBody,\n credentials: 'include', // Include Django session cookies\n });\n\n // Parse response\n let data: any = null;\n const contentType = response.headers.get('content-type');\n\n if (response.status !== 204 && contentType?.includes('application/json')) {\n data = await response.json();\n } else if (response.status !== 204) {\n data = await response.text();\n }\n\n // Convert Headers to plain object\n const responseHeaders: Record<string, string> = {};\n response.headers.forEach((value, key) => {\n responseHeaders[key] = value;\n });\n\n return {\n data,\n status: response.status,\n statusText: response.statusText,\n headers: responseHeaders,\n };\n }\n}","/**\n * API Error Classes\n *\n * Typed error classes with Django REST Framework support.\n */\n\n/**\n * HTTP API Error with DRF field-specific validation errors.\n *\n * Usage:\n * ```typescript\n * try {\n * await api.users.create(userData);\n * } catch (error) {\n * if (error instanceof APIError) {\n * if (error.isValidationError) {\n * console.log('Field errors:', error.fieldErrors);\n * // { \"email\": [\"Email already exists\"], \"username\": [\"Required\"] }\n * }\n * }\n * }\n * ```\n */\nexport class APIError extends Error {\n constructor(\n public statusCode: number,\n public statusText: string,\n public response: any,\n public url: string,\n message?: string\n ) {\n super(message || `HTTP ${statusCode}: ${statusText}`);\n this.name = 'APIError';\n }\n\n /**\n * Get error details from response.\n * DRF typically returns: { \"detail\": \"Error message\" } or { \"field\": [\"error1\", \"error2\"] }\n */\n get details(): Record<string, any> | null {\n if (typeof this.response === 'object' && this.response !== null) {\n return this.response;\n }\n return null;\n }\n\n /**\n * Get field-specific validation errors from DRF.\n * Returns: { \"field_name\": [\"error1\", \"error2\"], ... }\n */\n get fieldErrors(): Record<string, string[]> | null {\n const details = this.details;\n if (!details) return null;\n\n // DRF typically returns: { \"field\": [\"error1\", \"error2\"] }\n const fieldErrors: Record<string, string[]> = {};\n for (const [key, value] of Object.entries(details)) {\n if (Array.isArray(value)) {\n fieldErrors[key] = value;\n }\n }\n\n return Object.keys(fieldErrors).length > 0 ? fieldErrors : null;\n }\n\n /**\n * Get single error message from DRF.\n * Checks for \"detail\", \"message\", or first field error.\n */\n get errorMessage(): string {\n const details = this.details;\n if (!details) return this.message;\n\n // Check for \"detail\" field (common in DRF)\n if (details.detail) {\n return Array.isArray(details.detail) ? details.detail.join(', ') : String(details.detail);\n }\n\n // Check for \"message\" field\n if (details.message) {\n return String(details.message);\n }\n\n // Return first field error\n const fieldErrors = this.fieldErrors;\n if (fieldErrors) {\n const firstField = Object.keys(fieldErrors)[0];\n if (firstField) {\n return `${firstField}: ${fieldErrors[firstField]?.join(', ')}`;\n }\n }\n\n return this.message;\n }\n\n // Helper methods for common HTTP status codes\n get isValidationError(): boolean { return this.statusCode === 400; }\n get isAuthError(): boolean { return this.statusCode === 401; }\n get isPermissionError(): boolean { return this.statusCode === 403; }\n get isNotFoundError(): boolean { return this.statusCode === 404; }\n get isServerError(): boolean { return this.statusCode >= 500 && this.statusCode < 600; }\n}\n\n/**\n * Network Error (connection failed, timeout, etc.)\n */\nexport class NetworkError extends Error {\n constructor(\n message: string,\n public url: string,\n public originalError?: Error\n ) {\n super(message);\n this.name = 'NetworkError';\n }\n}","/**\n * API Logger with Consola\n * Beautiful console logging for API requests and responses\n *\n * Installation:\n * npm install consola\n */\n\nimport { type ConsolaInstance, createConsola } from 'consola';\n\n/**\n * Request log data\n */\nexport interface RequestLog {\n method: string;\n url: string;\n headers?: Record<string, string>;\n body?: any;\n timestamp: number;\n}\n\n/**\n * Response log data\n */\nexport interface ResponseLog {\n status: number;\n statusText: string;\n data?: any;\n duration: number;\n timestamp: number;\n}\n\n/**\n * Error log data\n */\nexport interface ErrorLog {\n message: string;\n statusCode?: number;\n fieldErrors?: Record<string, string[]>;\n duration: number;\n timestamp: number;\n}\n\n/**\n * Logger configuration\n */\nexport interface LoggerConfig {\n /** Enable logging */\n enabled: boolean;\n /** Log requests */\n logRequests: boolean;\n /** Log responses */\n logResponses: boolean;\n /** Log errors */\n logErrors: boolean;\n /** Log request/response bodies */\n logBodies: boolean;\n /** Log headers (excluding sensitive ones) */\n logHeaders: boolean;\n /** Custom consola instance */\n consola?: ConsolaInstance;\n}\n\n/**\n * Default logger configuration\n */\nconst DEFAULT_CONFIG: LoggerConfig = {\n enabled: process.env.NODE_ENV !== 'production',\n logRequests: true,\n logResponses: true,\n logErrors: true,\n logBodies: true,\n logHeaders: false,\n};\n\n/**\n * Sensitive header names to filter out\n */\nconst SENSITIVE_HEADERS = [\n 'authorization',\n 'cookie',\n 'set-cookie',\n 'x-api-key',\n 'x-csrf-token',\n];\n\n/**\n * API Logger class\n */\nexport class APILogger {\n private config: LoggerConfig;\n private consola: ConsolaInstance;\n\n constructor(config: Partial<LoggerConfig> = {}) {\n this.config = { ...DEFAULT_CONFIG, ...config };\n this.consola = config.consola || createConsola({\n level: this.config.enabled ? 4 : 0,\n });\n }\n\n /**\n * Enable logging\n */\n enable(): void {\n this.config.enabled = true;\n }\n\n /**\n * Disable logging\n */\n disable(): void {\n this.config.enabled = false;\n }\n\n /**\n * Update configuration\n */\n setConfig(config: Partial<LoggerConfig>): void {\n this.config = { ...this.config, ...config };\n }\n\n /**\n * Filter sensitive headers\n */\n private filterHeaders(headers?: Record<string, string>): Record<string, string> {\n if (!headers) return {};\n\n const filtered: Record<string, string> = {};\n Object.keys(headers).forEach((key) => {\n const lowerKey = key.toLowerCase();\n if (SENSITIVE_HEADERS.includes(lowerKey)) {\n filtered[key] = '***';\n } else {\n filtered[key] = headers[key] || '';\n }\n });\n\n return filtered;\n }\n\n /**\n * Log request\n */\n logRequest(request: RequestLog): void {\n if (!this.config.enabled || !this.config.logRequests) return;\n\n const { method, url, headers, body } = request;\n\n this.consola.start(`${method} ${url}`);\n\n if (this.config.logHeaders && headers) {\n this.consola.debug('Headers:', this.filterHeaders(headers));\n }\n\n if (this.config.logBodies && body) {\n this.consola.debug('Body:', body);\n }\n }\n\n /**\n * Log response\n */\n logResponse(request: RequestLog, response: ResponseLog): void {\n if (!this.config.enabled || !this.config.logResponses) return;\n\n const { method, url } = request;\n const { status, statusText, data, duration } = response;\n\n const statusColor = status >= 500 ? 'red'\n : status >= 400 ? 'yellow'\n : status >= 300 ? 'cyan'\n : 'green';\n\n this.consola.success(\n `${method} ${url} ${status} ${statusText} (${duration}ms)`\n );\n\n if (this.config.logBodies && data) {\n this.consola.debug('Response:', data);\n }\n }\n\n /**\n * Log error\n */\n logError(request: RequestLog, error: ErrorLog): void {\n if (!this.config.enabled || !this.config.logErrors) return;\n\n const { method, url } = request;\n const { message, statusCode, fieldErrors, duration } = error;\n\n this.consola.error(\n `${method} ${url} ${statusCode || 'Network'} Error (${duration}ms)`\n );\n\n this.consola.error('Message:', message);\n\n if (fieldErrors && Object.keys(fieldErrors).length > 0) {\n this.consola.error('Field Errors:');\n Object.entries(fieldErrors).forEach(([field, errors]) => {\n errors.forEach((err) => {\n this.consola.error(` • ${field}: ${err}`);\n });\n });\n }\n }\n\n /**\n * Log general info\n */\n info(message: string, ...args: any[]): void {\n if (!this.config.enabled) return;\n this.consola.info(message, ...args);\n }\n\n /**\n * Log warning\n */\n warn(message: string, ...args: any[]): void {\n if (!this.config.enabled) return;\n this.consola.warn(message, ...args);\n }\n\n /**\n * Log error\n */\n error(message: string, ...args: any[]): void {\n if (!this.config.enabled) return;\n this.consola.error(message, ...args);\n }\n\n /**\n * Log debug\n */\n debug(message: string, ...args: any[]): void {\n if (!this.config.enabled) return;\n this.consola.debug(message, ...args);\n }\n\n /**\n * Log success\n */\n success(message: string, ...args: any[]): void {\n if (!this.config.enabled) return;\n this.consola.success(message, ...args);\n }\n\n /**\n * Create a sub-logger with prefix\n */\n withTag(tag: string): ConsolaInstance {\n return this.consola.withTag(tag);\n }\n}\n\n/**\n * Default logger instance\n */\nexport const defaultLogger = new APILogger();","/**\n * Retry Configuration and Utilities\n *\n * Provides automatic retry logic for failed HTTP requests using p-retry.\n * Retries only on network errors and server errors (5xx), not client errors (4xx).\n */\n\nimport pRetry, { AbortError } from 'p-retry';\nimport { APIError, NetworkError } from './errors';\n\n/**\n * Information about a failed retry attempt.\n */\nexport interface FailedAttemptInfo {\n /** The error that caused the failure */\n error: Error;\n /** The attempt number (1-indexed) */\n attemptNumber: number;\n /** Number of retries left */\n retriesLeft: number;\n}\n\n/**\n * Retry configuration options.\n *\n * Uses exponential backoff with jitter by default to avoid thundering herd.\n */\nexport interface RetryConfig {\n /**\n * Maximum number of retry attempts.\n * @default 3\n */\n retries?: number;\n\n /**\n * Exponential backoff factor.\n * @default 2\n */\n factor?: number;\n\n /**\n * Minimum wait time between retries (ms).\n * @default 1000\n */\n minTimeout?: number;\n\n /**\n * Maximum wait time between retries (ms).\n * @default 60000\n */\n maxTimeout?: number;\n\n /**\n * Add randomness to wait times (jitter).\n * Helps avoid thundering herd problem.\n * @default true\n */\n randomize?: boolean;\n\n /**\n * Callback called on each failed attempt.\n */\n onFailedAttempt?: (info: FailedAttemptInfo) => void;\n}\n\n/**\n * Default retry configuration.\n */\nexport const DEFAULT_RETRY_CONFIG: Required<RetryConfig> = {\n retries: 3,\n factor: 2,\n minTimeout: 1000,\n maxTimeout: 60000,\n randomize: true,\n onFailedAttempt: () => {},\n};\n\n/**\n * Determine if an error should trigger a retry.\n *\n * Retries on:\n * - Network errors (connection refused, timeout, etc.)\n * - Server errors (5xx status codes)\n * - Rate limiting (429 status code)\n *\n * Does NOT retry on:\n * - Client errors (4xx except 429)\n * - Authentication errors (401, 403)\n * - Not found (404)\n *\n * @param error - The error to check\n * @returns true if should retry, false otherwise\n */\nexport function shouldRetry(error: any): boolean {\n // Always retry network errors\n if (error instanceof NetworkError) {\n return true;\n }\n\n // For API errors, check status code\n if (error instanceof APIError) {\n const status = error.statusCode;\n\n // Retry on 5xx server errors\n if (status >= 500 && status < 600) {\n return true;\n }\n\n // Retry on 429 (rate limit)\n if (status === 429) {\n return true;\n }\n\n // Do NOT retry on 4xx client errors\n return false;\n }\n\n // Retry on unknown errors (might be network issues)\n return true;\n}\n\n/**\n * Wrap a function with retry logic.\n *\n * @param fn - Async function to retry\n * @param config - Retry configuration\n * @returns Result of the function\n *\n * @example\n * ```typescript\n * const result = await withRetry(\n * async () => fetch('https://api.example.com/users'),\n * { retries: 5, minTimeout: 2000 }\n * );\n * ```\n */\nexport async function withRetry<T>(\n fn: () => Promise<T>,\n config?: RetryConfig\n): Promise<T> {\n const finalConfig = { ...DEFAULT_RETRY_CONFIG, ...config };\n\n return pRetry(\n async () => {\n try {\n return await fn();\n } catch (error) {\n // Check if we should retry this error\n if (!shouldRetry(error)) {\n // Abort retry immediately for non-retryable errors\n throw new AbortError(error as Error);\n }\n\n // Re-throw error to trigger retry\n throw error;\n }\n },\n {\n retries: finalConfig.retries,\n factor: finalConfig.factor,\n minTimeout: finalConfig.minTimeout,\n maxTimeout: finalConfig.maxTimeout,\n randomize: finalConfig.randomize,\n onFailedAttempt: finalConfig.onFailedAttempt ? (error) => {\n // Adapt p-retry's FailedAttemptError to our FailedAttemptInfo\n const pRetryError = error as any; // p-retry's internal type\n finalConfig.onFailedAttempt!({\n error: pRetryError as Error,\n attemptNumber: pRetryError.attemptNumber,\n retriesLeft: pRetryError.retriesLeft,\n });\n } : undefined,\n }\n );\n}","import { CfgAuthAPI } from \"./cfg__accounts__auth\";\nimport { CfgBulkEmailAPI } from \"./cfg__newsletter__bulk_email\";\nimport { CfgCampaignsAPI } from \"./cfg__newsletter__campaigns\";\nimport { CfgLeadSubmissionAPI } from \"./cfg__leads__lead_submission\";\nimport { CfgLogsAPI } from \"./cfg__newsletter__logs\";\nimport { CfgNewslettersAPI } from \"./cfg__newsletter__newsletters\";\nimport { CfgSubscriptionsAPI } from \"./cfg__newsletter__subscriptions\";\nimport { CfgTestingAPI } from \"./cfg__newsletter__testing\";\nimport { CfgUserProfileAPI } from \"./cfg__accounts__user_profile\";\nimport { CfgWebhooksAPI } from \"./cfg__payments__webhooks\";\nimport { CfgAccountsAPI } from \"./cfg__accounts\";\nimport { CfgEndpointsAPI } from \"./cfg__endpoints\";\nimport { CfgHealthAPI } from \"./cfg__health\";\nimport { CfgLeadsAPI } from \"./cfg__leads\";\nimport { CfgNewsletterAPI } from \"./cfg__newsletter\";\nimport { CfgPaymentsAPI } from \"./cfg__payments\";\nimport { CfgSupportAPI } from \"./cfg__support\";\nimport { CfgTasksAPI } from \"./cfg__tasks\";\nimport { HttpClientAdapter, FetchAdapter } from \"./http\";\nimport { APIError, NetworkError } from \"./errors\";\nimport { APILogger, type LoggerConfig } from \"./logger\";\nimport { withRetry, type RetryConfig } from \"./retry\";\n\n\n/**\n * Async API client for Django CFG Sample API.\n *\n * Usage:\n * ```typescript\n * const client = new APIClient('https://api.example.com');\n * const users = await client.users.list();\n * const post = await client.posts.create(newPost);\n *\n * // Custom HTTP adapter (e.g., Axios)\n * const client = new APIClient('https://api.example.com', {\n * httpClient: new AxiosAdapter()\n * });\n * ```\n */\nexport class APIClient {\n private baseUrl: string;\n private httpClient: HttpClientAdapter;\n private logger: APILogger | null = null;\n private retryConfig: RetryConfig | null = null;\n\n // Sub-clients\n public cfg_auth: CfgAuthAPI;\n public cfg_bulk_email: CfgBulkEmailAPI;\n public cfg_campaigns: CfgCampaignsAPI;\n public cfg_lead_submission: CfgLeadSubmissionAPI;\n public cfg_logs: CfgLogsAPI;\n public cfg_newsletters: CfgNewslettersAPI;\n public cfg_subscriptions: CfgSubscriptionsAPI;\n public cfg_testing: CfgTestingAPI;\n public cfg_user_profile: CfgUserProfileAPI;\n public cfg_webhooks: CfgWebhooksAPI;\n public cfg_accounts: CfgAccountsAPI;\n public cfg_endpoints: CfgEndpointsAPI;\n public cfg_health: CfgHealthAPI;\n public cfg_leads: CfgLeadsAPI;\n public cfg_newsletter: CfgNewsletterAPI;\n public cfg_payments: CfgPaymentsAPI;\n public cfg_support: CfgSupportAPI;\n public cfg_tasks: CfgTasksAPI;\n\n constructor(\n baseUrl: string,\n options?: {\n httpClient?: HttpClientAdapter;\n loggerConfig?: Partial<LoggerConfig>;\n retryConfig?: RetryConfig;\n }\n ) {\n this.baseUrl = baseUrl.replace(/\\/$/, '');\n this.httpClient = options?.httpClient || new FetchAdapter();\n\n // Initialize logger if config provided\n if (options?.loggerConfig !== undefined) {\n this.logger = new APILogger(options.loggerConfig);\n }\n\n // Store retry configuration\n if (options?.retryConfig !== undefined) {\n this.retryConfig = options.retryConfig;\n }\n\n // Initialize sub-clients\n this.cfg_auth = new CfgAuthAPI(this);\n this.cfg_bulk_email = new CfgBulkEmailAPI(this);\n this.cfg_campaigns = new CfgCampaignsAPI(this);\n this.cfg_lead_submission = new CfgLeadSubmissionAPI(this);\n this.cfg_logs = new CfgLogsAPI(this);\n this.cfg_newsletters = new CfgNewslettersAPI(this);\n this.cfg_subscriptions = new CfgSubscriptionsAPI(this);\n this.cfg_testing = new CfgTestingAPI(this);\n this.cfg_user_profile = new CfgUserProfileAPI(this);\n this.cfg_webhooks = new CfgWebhooksAPI(this);\n this.cfg_accounts = new CfgAccountsAPI(this);\n this.cfg_endpoints = new CfgEndpointsAPI(this);\n this.cfg_health = new CfgHealthAPI(this);\n this.cfg_leads = new CfgLeadsAPI(this);\n this.cfg_newsletter = new CfgNewsletterAPI(this);\n this.cfg_payments = new CfgPaymentsAPI(this);\n this.cfg_support = new CfgSupportAPI(this);\n this.cfg_tasks = new CfgTasksAPI(this);\n }\n\n /**\n * Get CSRF token from cookies.\n */\n getCsrfToken(): string | null {\n const name = 'csrftoken';\n const value = `; ${document.cookie}`;\n const parts = value.split(`; ${name}=`);\n if (parts.length === 2) {\n return parts.pop()?.split(';').shift() || null;\n }\n return null;\n }\n\n /**\n * Make HTTP request with Django CSRF and session handling.\n * Automatically retries on network errors and 5xx server errors.\n */\n async request<T>(\n method: string,\n path: string,\n options?: {\n params?: Record<string, any>;\n body?: any;\n formData?: FormData;\n headers?: Record<string, string>;\n }\n ): Promise<T> {\n // Wrap request in retry logic if configured\n if (this.retryConfig) {\n return withRetry(() => this._makeRequest<T>(method, path, options), {\n ...this.retryConfig,\n onFailedAttempt: (info) => {\n // Log retry attempts\n if (this.logger) {\n this.logger.warn(\n `Retry attempt ${info.attemptNumber}/${info.retriesLeft + info.attemptNumber} ` +\n `for ${method} ${path}: ${info.error.message}`\n );\n }\n // Call user's onFailedAttempt if provided\n this.retryConfig?.onFailedAttempt?.(info);\n },\n });\n }\n\n // No retry configured, make request directly\n return this._makeRequest<T>(method, path, options);\n }\n\n /**\n * Internal request method (without retry wrapper).\n * Used by request() method with optional retry logic.\n */\n private async _makeRequest<T>(\n method: string,\n path: string,\n options?: {\n params?: Record<string, any>;\n body?: any;\n formData?: FormData;\n headers?: Record<string, string>;\n }\n ): Promise<T> {\n const url = new URL(path, this.baseUrl);\n const startTime = Date.now();\n\n // Build headers - start with custom headers from options\n const headers: Record<string, string> = {\n ...(options?.headers || {})\n };\n\n // Don't set Content-Type for FormData (browser will set it with boundary)\n if (!options?.formData && !headers['Content-Type']) {\n headers['Content-Type'] = 'application/json';\n }\n\n // Add CSRF token for non-GET requests\n if (method !== 'GET') {\n const csrfToken = this.getCsrfToken();\n if (csrfToken) {\n headers['X-CSRFToken'] = csrfToken;\n }\n }\n\n // Log request\n if (this.logger) {\n this.logger.logRequest({\n method,\n url: url.toString(),\n headers,\n body: options?.formData || options?.body,\n timestamp: startTime,\n });\n }\n\n try {\n // Make request via HTTP adapter\n const response = await this.httpClient.request<T>({\n method,\n url: url.toString(),\n headers,\n params: options?.params,\n body: options?.body,\n formData: options?.formData,\n });\n\n const duration = Date.now() - startTime;\n\n // Check for HTTP errors\n if (response.status >= 400) {\n const error = new APIError(\n response.status,\n response.statusText,\n response.data,\n url.toString()\n );\n\n // Log error\n if (this.logger) {\n this.logger.logError(\n {\n method,\n url: url.toString(),\n headers,\n body: options?.formData || options?.body,\n timestamp: startTime,\n },\n {\n message: error.message,\n statusCode: response.status,\n duration,\n timestamp: Date.now(),\n }\n );\n }\n\n throw error;\n }\n\n // Log successful response\n if (this.logger) {\n this.logger.logResponse(\n {\n method,\n url: url.toString(),\n headers,\n body: options?.formData || options?.body,\n timestamp: startTime,\n },\n {\n status: response.status,\n statusText: response.statusText,\n data: response.data,\n duration,\n timestamp: Date.now(),\n }\n );\n }\n\n return response.data as T;\n } catch (error) {\n const duration = Date.now() - startTime;\n\n // Re-throw APIError as-is\n if (error instanceof APIError) {\n throw error;\n }\n\n // Wrap other errors as NetworkError\n const networkError = error instanceof Error\n ? new NetworkError(error.message, url.toString(), error)\n : new NetworkError('Unknown error', url.toString());\n\n // Log network error\n if (this.logger) {\n this.logger.logError(\n {\n method,\n url: url.toString(),\n headers,\n body: options?.formData || options?.body,\n timestamp: startTime,\n },\n {\n message: networkError.message,\n duration,\n timestamp: Date.now(),\n }\n );\n }\n\n throw networkError;\n }\n }\n}\n","/**\n * OpenAPI Schema Export\n *\n * Contains the complete OpenAPI specification for runtime access.\n */\n\nexport const OPENAPI_SCHEMA = {\n \"components\": {\n \"schemas\": {\n \"APIKeyCreate\": {\n \"description\": \"API key creation serializer with service integration.\\n\\nCreates new API keys and returns the full key value (only once).\",\n \"properties\": {\n \"expires_in_days\": {\n \"description\": \"Expiration in days (optional, null for no expiration)\",\n \"maximum\": 365,\n \"minimum\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"Descriptive name for the API key\",\n \"maxLength\": 100,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"APIKeyCreateRequest\": {\n \"description\": \"API key creation serializer with service integration.\\n\\nCreates new API keys and returns the full key value (only once).\",\n \"properties\": {\n \"expires_in_days\": {\n \"description\": \"Expiration in days (optional, null for no expiration)\",\n \"maximum\": 365,\n \"minimum\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"name\": {\n \"description\": \"Descriptive name for the API key\",\n \"maxLength\": 100,\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"APIKeyDetail\": {\n \"description\": \"Complete API key serializer with full details.\\n\\nUsed for API key detail views (no key value for security).\",\n \"properties\": {\n \"created_at\": {\n \"description\": \"When this record was created\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"days_until_expiry\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"expires_at\": {\n \"description\": \"When this API key expires (null = never expires)\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"id\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"is_active\": {\n \"description\": \"Whether this API key is active\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"is_expired\": {\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"is_valid\": {\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"key_preview\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"last_used_at\": {\n \"description\": \"When this API key was last used\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Human-readable name for this API key\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"total_requests\": {\n \"description\": \"Total number of requests made with this key\",\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"updated_at\": {\n \"description\": \"When this record was last updated\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"user\": {\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"created_at\",\n \"days_until_expiry\",\n \"expires_at\",\n \"id\",\n \"is_active\",\n \"is_expired\",\n \"is_valid\",\n \"key_preview\",\n \"last_used_at\",\n \"name\",\n \"total_requests\",\n \"updated_at\",\n \"user\"\n ],\n \"type\": \"object\"\n },\n \"APIKeyList\": {\n \"description\": \"Lightweight API key serializer for lists.\\n\\nOptimized for API key lists with minimal data (no key value).\",\n \"properties\": {\n \"created_at\": {\n \"description\": \"When this record was created\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"expires_at\": {\n \"description\": \"When this API key expires (null = never expires)\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"id\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"is_active\": {\n \"description\": \"Whether this API key is active\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"is_expired\": {\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"is_valid\": {\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"last_used_at\": {\n \"description\": \"When this API key was last used\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"name\": {\n \"description\": \"Human-readable name for this API key\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"total_requests\": {\n \"description\": \"Total number of requests made with this key\",\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"user\": {\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"created_at\",\n \"expires_at\",\n \"id\",\n \"is_active\",\n \"is_expired\",\n \"is_valid\",\n \"last_used_at\",\n \"name\",\n \"total_requests\",\n \"user\"\n ],\n \"type\": \"object\"\n },\n \"APIKeyUpdate\": {\n \"description\": \"API key update serializer for modifying API key properties.\\n\\nAllows updating name and active status only.\",\n \"properties\": {\n \"is_active\": {\n \"description\": \"Whether this API key is active\",\n \"type\": \"boolean\"\n },\n \"name\": {\n \"description\": \"Human-readable name for this API key\",\n \"maxLength\": 100,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"APIKeyUpdateRequest\": {\n \"description\": \"API key update serializer for modifying API key properties.\\n\\nAllows updating name and active status only.\",\n \"properties\": {\n \"is_active\": {\n \"description\": \"Whether this API key is active\",\n \"type\": \"boolean\"\n },\n \"name\": {\n \"description\": \"Human-readable name for this API key\",\n \"maxLength\": 100,\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"APIKeyValidationRequest\": {\n \"description\": \"API key validation serializer.\\n\\nValidates API key and returns key information.\",\n \"properties\": {\n \"key\": {\n \"description\": \"API key to validate\",\n \"maxLength\": 64,\n \"minLength\": 32,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"key\"\n ],\n \"type\": \"object\"\n },\n \"APIKeyValidationResponse\": {\n \"description\": \"API key validation response serializer.\\n\\nDefines the structure of API key validation response for OpenAPI schema.\",\n \"properties\": {\n \"api_key\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/APIKeyDetail\"\n }\n ],\n \"description\": \"API key details if valid\",\n \"nullable\": true,\n \"readOnly\": true\n },\n \"error\": {\n \"description\": \"Error message if validation failed\",\n \"type\": \"string\"\n },\n \"error_code\": {\n \"description\": \"Error code if validation failed\",\n \"type\": \"string\"\n },\n \"message\": {\n \"description\": \"Validation message\",\n \"type\": \"string\"\n },\n \"success\": {\n \"description\": \"Whether the validation was successful\",\n \"type\": \"boolean\"\n },\n \"valid\": {\n \"description\": \"Whether the API key is valid\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"api_key\",\n \"message\",\n \"success\",\n \"valid\"\n ],\n \"type\": \"object\"\n },\n \"APIKeysOverview\": {\n \"description\": \"API keys overview metrics\",\n \"properties\": {\n \"active_keys\": {\n \"description\": \"Number of active API keys\",\n \"type\": \"integer\"\n },\n \"expired_keys\": {\n \"description\": \"Number of expired API keys\",\n \"type\": \"integer\"\n },\n \"expiring_soon_count\": {\n \"description\": \"Number of keys expiring within 7 days\",\n \"type\": \"integer\"\n },\n \"last_used_at\": {\n \"description\": \"When any key was last used\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"most_used_key_name\": {\n \"description\": \"Name of most used API key\",\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"most_used_key_requests\": {\n \"description\": \"Requests count for most used key\",\n \"type\": \"integer\"\n },\n \"total_keys\": {\n \"description\": \"Total number of API keys\",\n \"type\": \"integer\"\n },\n \"total_requests\": {\n \"description\": \"Total requests across all keys\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"active_keys\",\n \"expired_keys\",\n \"expiring_soon_count\",\n \"last_used_at\",\n \"most_used_key_name\",\n \"most_used_key_requests\",\n \"total_keys\",\n \"total_requests\"\n ],\n \"type\": \"object\"\n },\n \"APIResponse\": {\n \"description\": \"Standard API response serializer.\",\n \"properties\": {\n \"data\": {\n \"additionalProperties\": {},\n \"description\": \"Response data\",\n \"type\": \"object\"\n },\n \"error\": {\n \"description\": \"Error message\",\n \"type\": \"string\"\n },\n \"message\": {\n \"description\": \"Success message\",\n \"type\": \"string\"\n },\n \"success\": {\n \"description\": \"Operation success status\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"success\"\n ],\n \"type\": \"object\"\n },\n \"APIResponseRequest\": {\n \"description\": \"Standard API response serializer.\",\n \"properties\": {\n \"data\": {\n \"additionalProperties\": {},\n \"description\": \"Response data\",\n \"type\": \"object\"\n },\n \"error\": {\n \"description\": \"Error message\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"message\": {\n \"description\": \"Success message\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"success\": {\n \"description\": \"Operation success status\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"success\"\n ],\n \"type\": \"object\"\n },\n \"AdminPaymentCreate\": {\n \"description\": \"Serializer for creating payments in admin interface.\\nUses UniversalPayment only for data creation.\",\n \"properties\": {\n \"amount_usd\": {\n \"format\": \"double\",\n \"maximum\": 100000.0,\n \"minimum\": 1.0,\n \"type\": \"number\"\n },\n \"callback_url\": {\n \"format\": \"uri\",\n \"type\": \"string\"\n },\n \"cancel_url\": {\n \"format\": \"uri\",\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"provider\": {\n \"maxLength\": 50,\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"amount_usd\",\n \"provider\",\n \"user\"\n ],\n \"type\": \"object\"\n },\n \"AdminPaymentCreateRequest\": {\n \"description\": \"Serializer for creating payments in admin interface.\\nUses UniversalPayment only for data creation.\",\n \"properties\": {\n \"amount_usd\": {\n \"format\": \"double\",\n \"maximum\": 100000.0,\n \"minimum\": 1.0,\n \"type\": \"number\"\n },\n \"callback_url\": {\n \"format\": \"uri\",\n \"type\": \"string\"\n },\n \"cancel_url\": {\n \"format\": \"uri\",\n \"type\": \"string\"\n },\n \"currency_code\": {\n \"description\": \"Provider currency code (e.g., BTC, ZROERC20)\",\n \"maxLength\": 20,\n \"minLength\": 1,\n \"type\": \"string\",\n \"writeOnly\": true\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"provider\": {\n \"maxLength\": 50,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"amount_usd\",\n \"currency_code\",\n \"provider\",\n \"user\"\n ],\n \"type\": \"object\"\n },\n \"AdminPaymentDetail\": {\n \"description\": \"Detailed serializer for individual payment in admin interface.\\nUses UniversalPayment only for data extraction.\",\n \"properties\": {\n \"actual_amount_usd\": {\n \"format\": \"double\",\n \"readOnly\": true,\n \"type\": \"number\"\n },\n \"age\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"amount_usd\": {\n \"format\": \"double\",\n \"readOnly\": true,\n \"type\": \"number\"\n },\n \"callback_url\": {\n \"format\": \"uri\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"cancel_url\": {\n \"format\": \"uri\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"completed_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"confirmations_count\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"created_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"currency_code\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"currency_name\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"description\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"expires_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"fee_amount_usd\": {\n \"format\": \"double\",\n \"readOnly\": true,\n \"type\": \"number\"\n },\n \"id\": {\n \"format\": \"uuid\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"internal_payment_id\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"pay_address\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"pay_amount\": {\n \"format\": \"decimal\",\n \"pattern\": \"^-?\\\\d{0,12}(?:\\\\.\\\\d{0,8})?$\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"payment_url\": {\n \"format\": \"uri\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"provider\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"provider_data\": {\n \"readOnly\": true\n },\n \"provider_display\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"security_nonce\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"status\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"status_changed_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"status_display\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"transaction_hash\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"updated_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"user\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/AdminUser\"\n }\n ],\n \"readOnly\": true\n },\n \"webhook_data\": {\n \"readOnly\": true\n }\n },\n \"required\": [\n \"actual_amount_usd\",\n \"age\",\n \"amount_usd\",\n \"callback_url\",\n \"cancel_url\",\n \"completed_at\",\n \"confirmations_count\",\n \"created_at\",\n \"currency_code\",\n \"currency_name\",\n \"description\",\n \"expires_at\",\n \"fee_amount_usd\",\n \"id\",\n \"internal_payment_id\",\n \"pay_address\",\n \"pay_amount\",\n \"payment_url\",\n \"provider\",\n \"provider_data\",\n \"provider_display\",\n \"security_nonce\",\n \"status\",\n \"status_changed_at\",\n \"status_display\",\n \"transaction_hash\",\n \"updated_at\",\n \"user\",\n \"webhook_data\"\n ],\n \"type\": \"object\"\n },\n \"AdminPaymentList\": {\n \"description\": \"Serializer for payment list in admin interface.\\nUses UniversalPayment only for data extraction.\",\n \"properties\": {\n \"age\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"amount_usd\": {\n \"format\": \"double\",\n \"readOnly\": true,\n \"type\": \"number\"\n },\n \"created_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"currency_code\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"currency_name\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"description\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"id\": {\n \"format\": \"uuid\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"internal_payment_id\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"pay_address\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"pay_amount\": {\n \"format\": \"decimal\",\n \"pattern\": \"^-?\\\\d{0,12}(?:\\\\.\\\\d{0,8})?$\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"provider\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"provider_display\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"status\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"status_display\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"transaction_hash\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"updated_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"user\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/AdminUser\"\n }\n ],\n \"readOnly\": true\n }\n },\n \"required\": [\n \"age\",\n \"amount_usd\",\n \"created_at\",\n \"currency_code\",\n \"currency_name\",\n \"description\",\n \"id\",\n \"internal_payment_id\",\n \"pay_address\",\n \"pay_amount\",\n \"provider\",\n \"provider_display\",\n \"status\",\n \"status_display\",\n \"transaction_hash\",\n \"updated_at\",\n \"user\"\n ],\n \"type\": \"object\"\n },\n \"AdminPaymentStats\": {\n \"description\": \"Serializer for payment statistics in admin interface.\",\n \"properties\": {\n \"by_currency\": {\n \"additionalProperties\": {\n \"additionalProperties\": {},\n \"type\": \"object\"\n },\n \"description\": \"Statistics by currency\",\n \"type\": \"object\"\n },\n \"by_provider\": {\n \"additionalProperties\": {\n \"additionalProperties\": {},\n \"type\": \"object\"\n },\n \"description\": \"Statistics by provider\",\n \"type\": \"object\"\n },\n \"failed_payments\": {\n \"type\": \"integer\"\n },\n \"last_24h\": {\n \"additionalProperties\": {\n \"type\": \"integer\"\n },\n \"description\": \"Payments in last 24 hours\",\n \"type\": \"object\"\n },\n \"last_30d\": {\n \"additionalProperties\": {\n \"type\": \"integer\"\n },\n \"description\": \"Payments in last 30 days\",\n \"type\": \"object\"\n },\n \"last_7d\": {\n \"additionalProperties\": {\n \"type\": \"integer\"\n },\n \"description\": \"Payments in last 7 days\",\n \"type\": \"object\"\n },\n \"pending_payments\": {\n \"type\": \"integer\"\n },\n \"success_rate\": {\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"successful_payments\": {\n \"type\": \"integer\"\n },\n \"total_amount_usd\": {\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"total_payments\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"by_currency\",\n \"by_provider\",\n \"failed_payments\",\n \"last_24h\",\n \"last_30d\",\n \"last_7d\",\n \"pending_payments\",\n \"success_rate\",\n \"successful_payments\",\n \"total_amount_usd\",\n \"total_payments\"\n ],\n \"type\": \"object\"\n },\n \"AdminPaymentUpdate\": {\n \"description\": \"Serializer for updating payments in admin interface.\",\n \"properties\": {\n \"callback_url\": {\n \"description\": \"Success callback URL\",\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"cancel_url\": {\n \"description\": \"Cancellation URL\",\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"description\": {\n \"description\": \"Payment description\",\n \"type\": \"string\"\n },\n \"provider_data\": {\n \"description\": \"Provider-specific data (validated by Pydantic)\"\n },\n \"status\": {\n \"description\": \"Current payment status\\n\\n* `pending` - Pending\\n* `confirming` - Confirming\\n* `confirmed` - Confirmed\\n* `completed` - Completed\\n* `failed` - Failed\\n* `expired` - Expired\\n* `cancelled` - Cancelled\\n* `refunded` - Refunded\",\n \"enum\": [\n \"pending\",\n \"confirming\",\n \"confirmed\",\n \"completed\",\n \"failed\",\n \"expired\",\n \"cancelled\",\n \"refunded\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"59d07a8608d1bdb9\"\n },\n \"webhook_data\": {\n \"description\": \"Webhook data (validated by Pydantic)\"\n }\n },\n \"type\": \"object\"\n },\n \"AdminPaymentUpdateRequest\": {\n \"description\": \"Serializer for updating payments in admin interface.\",\n \"properties\": {\n \"callback_url\": {\n \"description\": \"Success callback URL\",\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"cancel_url\": {\n \"description\": \"Cancellation URL\",\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"description\": {\n \"description\": \"Payment description\",\n \"type\": \"string\"\n },\n \"provider_data\": {\n \"description\": \"Provider-specific data (validated by Pydantic)\"\n },\n \"status\": {\n \"description\": \"Current payment status\\n\\n* `pending` - Pending\\n* `confirming` - Confirming\\n* `confirmed` - Confirmed\\n* `completed` - Completed\\n* `failed` - Failed\\n* `expired` - Expired\\n* `cancelled` - Cancelled\\n* `refunded` - Refunded\",\n \"enum\": [\n \"pending\",\n \"confirming\",\n \"confirmed\",\n \"completed\",\n \"failed\",\n \"expired\",\n \"cancelled\",\n \"refunded\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"59d07a8608d1bdb9\"\n },\n \"webhook_data\": {\n \"description\": \"Webhook data (validated by Pydantic)\"\n }\n },\n \"type\": \"object\"\n },\n \"AdminUser\": {\n \"description\": \"Simplified user serializer for admin interface.\",\n \"properties\": {\n \"email\": {\n \"format\": \"email\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"first_name\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"id\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"is_active\": {\n \"description\": \"Designates whether this user should be treated as active. Unselect this instead of deleting accounts.\",\n \"readOnly\": true,\n \"title\": \"Active\",\n \"type\": \"boolean\"\n },\n \"last_name\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"username\": {\n \"description\": \"Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.\",\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"email\",\n \"first_name\",\n \"id\",\n \"is_active\",\n \"last_name\",\n \"username\"\n ],\n \"type\": \"object\"\n },\n \"BalanceOverview\": {\n \"description\": \"User balance overview metrics\",\n \"properties\": {\n \"balance_display\": {\n \"description\": \"Formatted balance display\",\n \"type\": \"string\"\n },\n \"current_balance\": {\n \"description\": \"Current balance in USD\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"has_transactions\": {\n \"description\": \"Whether user has any transactions\",\n \"type\": \"boolean\"\n },\n \"is_empty\": {\n \"description\": \"Whether balance is zero\",\n \"type\": \"boolean\"\n },\n \"last_transaction_at\": {\n \"description\": \"Last transaction timestamp\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"total_deposited\": {\n \"description\": \"Total amount deposited (lifetime)\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"total_spent\": {\n \"description\": \"Total amount spent (lifetime)\",\n \"format\": \"double\",\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"balance_display\",\n \"current_balance\",\n \"has_transactions\",\n \"is_empty\",\n \"last_transaction_at\",\n \"total_deposited\",\n \"total_spent\"\n ],\n \"type\": \"object\"\n },\n \"BulkEmailRequest\": {\n \"description\": \"Simple serializer for bulk email.\",\n \"properties\": {\n \"button_text\": {\n \"maxLength\": 100,\n \"type\": \"string\"\n },\n \"button_url\": {\n \"format\": \"uri\",\n \"type\": \"string\"\n },\n \"email_title\": {\n \"maxLength\": 255,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"main_html_content\": {\n \"type\": \"string\"\n },\n \"main_text\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"recipients\": {\n \"items\": {\n \"format\": \"email\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"maxItems\": 100,\n \"minItems\": 1,\n \"type\": \"array\"\n },\n \"secondary_text\": {\n \"type\": \"string\"\n },\n \"subject\": {\n \"maxLength\": 255,\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"email_title\",\n \"main_text\",\n \"recipients\",\n \"subject\"\n ],\n \"type\": \"object\"\n },\n \"BulkEmailResponse\": {\n \"description\": \"Response for bulk email sending.\",\n \"properties\": {\n \"error\": {\n \"type\": \"string\"\n },\n \"failed_count\": {\n \"type\": \"integer\"\n },\n \"sent_count\": {\n \"type\": \"integer\"\n },\n \"success\": {\n \"type\": \"boolean\"\n },\n \"total_recipients\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"failed_count\",\n \"sent_count\",\n \"success\",\n \"total_recipients\"\n ],\n \"type\": \"object\"\n },\n \"ChartDataPoint\": {\n \"description\": \"Chart data point for payments analytics\",\n \"properties\": {\n \"x\": {\n \"description\": \"X-axis value (date)\",\n \"type\": \"string\"\n },\n \"y\": {\n \"description\": \"Y-axis value (amount or count)\",\n \"format\": \"double\",\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"x\",\n \"y\"\n ],\n \"type\": \"object\"\n },\n \"ChartSeries\": {\n \"description\": \"Chart series data for payments visualization\",\n \"properties\": {\n \"color\": {\n \"description\": \"Series color\",\n \"type\": \"string\"\n },\n \"data\": {\n \"description\": \"Data points\",\n \"items\": {\n \"$ref\": \"#/components/schemas/ChartDataPoint\"\n },\n \"type\": \"array\"\n },\n \"name\": {\n \"description\": \"Series name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"color\",\n \"data\",\n \"name\"\n ],\n \"type\": \"object\"\n },\n \"Currency\": {\n \"description\": \"Complete currency serializer with full details.\\n\\nUsed for currency information and management.\",\n \"properties\": {\n \"code\": {\n \"description\": \"Currency code (e.g., BTC, USD, ETH)\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"created_at\": {\n \"description\": \"When this record was created\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"currency_type\": {\n \"description\": \"Type of currency\\n\\n* `fiat` - Fiat Currency\\n* `crypto` - Cryptocurrency\",\n \"enum\": [\n \"fiat\",\n \"crypto\"\n ],\n \"readOnly\": true,\n \"type\": \"string\",\n \"x-spec-enum-id\": \"1fd14ececc7d641f\"\n },\n \"decimal_places\": {\n \"description\": \"Number of decimal places for this currency\",\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"id\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"is_active\": {\n \"description\": \"Whether this currency is available for payments\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"is_crypto\": {\n \"description\": \"Check if this is a cryptocurrency.\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"is_fiat\": {\n \"description\": \"Check if this is a fiat currency.\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"name\": {\n \"description\": \"Full currency name (e.g., Bitcoin, US Dollar)\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"symbol\": {\n \"description\": \"Currency symbol (e.g., $, \\u20bf, \\u039e)\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"type_display\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"updated_at\": {\n \"description\": \"When this record was last updated\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"code\",\n \"created_at\",\n \"currency_type\",\n \"decimal_places\",\n \"id\",\n \"is_active\",\n \"is_crypto\",\n \"is_fiat\",\n \"name\",\n \"symbol\",\n \"type_display\",\n \"updated_at\"\n ],\n \"type\": \"object\"\n },\n \"CurrencyAnalyticsItem\": {\n \"description\": \"Analytics data for a single currency\",\n \"properties\": {\n \"average_amount\": {\n \"description\": \"Average payment amount in USD\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"completed_payments\": {\n \"description\": \"Number of completed payments\",\n \"type\": \"integer\"\n },\n \"currency_code\": {\n \"description\": \"Currency code (e.g., BTC)\",\n \"type\": \"string\"\n },\n \"currency_name\": {\n \"description\": \"Currency name (e.g., Bitcoin)\",\n \"type\": \"string\"\n },\n \"success_rate\": {\n \"description\": \"Success rate percentage\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"total_amount\": {\n \"description\": \"Total amount in USD\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"total_payments\": {\n \"description\": \"Total number of payments\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"average_amount\",\n \"completed_payments\",\n \"currency_code\",\n \"currency_name\",\n \"success_rate\",\n \"total_amount\",\n \"total_payments\"\n ],\n \"type\": \"object\"\n },\n \"CurrencyList\": {\n \"description\": \"Lightweight currency serializer for lists.\\n\\nOptimized for currency selection and lists.\",\n \"properties\": {\n \"code\": {\n \"description\": \"Currency code (e.g., BTC, USD, ETH)\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"currency_type\": {\n \"description\": \"Type of currency\\n\\n* `fiat` - Fiat Currency\\n* `crypto` - Cryptocurrency\",\n \"enum\": [\n \"fiat\",\n \"crypto\"\n ],\n \"readOnly\": true,\n \"type\": \"string\",\n \"x-spec-enum-id\": \"1fd14ececc7d641f\"\n },\n \"id\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"is_active\": {\n \"description\": \"Whether this currency is available for payments\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"name\": {\n \"description\": \"Full currency name (e.g., Bitcoin, US Dollar)\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"symbol\": {\n \"description\": \"Currency symbol (e.g., $, \\u20bf, \\u039e)\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"type_display\": {\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"code\",\n \"currency_type\",\n \"id\",\n \"is_active\",\n \"name\",\n \"symbol\",\n \"type_display\"\n ],\n \"type\": \"object\"\n },\n \"EmailLog\": {\n \"description\": \"Serializer for EmailLog model.\",\n \"properties\": {\n \"body\": {\n \"readOnly\": true,\n \"title\": \"Body (HTML)\",\n \"type\": \"string\"\n },\n \"created_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"error_message\": {\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"id\": {\n \"format\": \"uuid\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"newsletter\": {\n \"nullable\": true,\n \"readOnly\": true,\n \"title\": \"Related Newsletter\",\n \"type\": \"integer\"\n },\n \"newsletter_title\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"recipient\": {\n \"description\": \"Comma-separated email addresses\",\n \"readOnly\": true,\n \"title\": \"Recipient(s)\",\n \"type\": \"string\"\n },\n \"sent_at\": {\n \"format\": \"date-time\",\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"status\": {\n \"description\": \"* `pending` - Pending\\n* `sent` - Sent\\n* `failed` - Failed\",\n \"enum\": [\n \"pending\",\n \"sent\",\n \"failed\"\n ],\n \"readOnly\": true,\n \"type\": \"string\",\n \"x-spec-enum-id\": \"6c875617d5f34e96\"\n },\n \"subject\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"user\": {\n \"nullable\": true,\n \"readOnly\": true,\n \"title\": \"User Account\",\n \"type\": \"integer\"\n },\n \"user_email\": {\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"body\",\n \"created_at\",\n \"error_message\",\n \"id\",\n \"newsletter\",\n \"newsletter_title\",\n \"recipient\",\n \"sent_at\",\n \"status\",\n \"subject\",\n \"user\",\n \"user_email\"\n ],\n \"type\": \"object\"\n },\n \"Endpoint\": {\n \"description\": \"Serializer for single endpoint status.\",\n \"properties\": {\n \"error\": {\n \"description\": \"Error message if check failed\",\n \"type\": \"string\"\n },\n \"error_type\": {\n \"description\": \"Error type: database, general, etc.\",\n \"type\": \"string\"\n },\n \"group\": {\n \"description\": \"URL group (up to 3 depth)\",\n \"type\": \"string\"\n },\n \"has_parameters\": {\n \"default\": false,\n \"description\": \"Whether URL has parameters that were resolved with test values\",\n \"type\": \"boolean\"\n },\n \"is_healthy\": {\n \"description\": \"Whether endpoint is healthy\",\n \"nullable\": true,\n \"type\": \"boolean\"\n },\n \"last_checked\": {\n \"description\": \"Timestamp of last check\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"namespace\": {\n \"description\": \"URL namespace\",\n \"type\": \"string\"\n },\n \"rate_limited\": {\n \"default\": false,\n \"description\": \"Whether endpoint returned 429 (rate limited)\",\n \"type\": \"boolean\"\n },\n \"reason\": {\n \"description\": \"Reason for warning/skip\",\n \"type\": \"string\"\n },\n \"required_auth\": {\n \"default\": false,\n \"description\": \"Whether endpoint required JWT authentication\",\n \"type\": \"boolean\"\n },\n \"response_time_ms\": {\n \"description\": \"Response time in milliseconds\",\n \"format\": \"double\",\n \"nullable\": true,\n \"type\": \"number\"\n },\n \"status\": {\n \"description\": \"Status: healthy, unhealthy, warning, error, skipped, pending\",\n \"type\": \"string\"\n },\n \"status_code\": {\n \"description\": \"HTTP status code\",\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"url\": {\n \"description\": \"Resolved URL (for parametrized URLs) or URL pattern\",\n \"type\": \"string\"\n },\n \"url_name\": {\n \"description\": \"Django URL name (if available)\",\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"url_pattern\": {\n \"description\": \"Original URL pattern (for parametrized URLs)\",\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"view\": {\n \"description\": \"View function/class name\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"group\",\n \"status\",\n \"url\"\n ],\n \"type\": \"object\"\n },\n \"EndpointGroup\": {\n \"description\": \"Endpoint group serializer for API access management.\\n\\nUsed for subscription endpoint group configuration.\",\n \"properties\": {\n \"created_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"description\": {\n \"description\": \"Description of what this endpoint group provides\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"id\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"is_enabled\": {\n \"description\": \"Whether this endpoint group is available\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"name\": {\n \"description\": \"Endpoint group name (e.g., \\u0027Payment API\\u0027, \\u0027Balance API\\u0027)\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"updated_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"created_at\",\n \"description\",\n \"id\",\n \"is_enabled\",\n \"name\",\n \"updated_at\"\n ],\n \"type\": \"object\"\n },\n \"EndpointsStatus\": {\n \"description\": \"Serializer for overall endpoints status response.\",\n \"properties\": {\n \"endpoints\": {\n \"description\": \"List of all endpoints with their status\",\n \"items\": {\n \"$ref\": \"#/components/schemas/Endpoint\"\n },\n \"type\": \"array\"\n },\n \"errors\": {\n \"description\": \"Number of endpoints with errors\",\n \"type\": \"integer\"\n },\n \"healthy\": {\n \"description\": \"Number of healthy endpoints\",\n \"type\": \"integer\"\n },\n \"skipped\": {\n \"description\": \"Number of skipped endpoints\",\n \"type\": \"integer\"\n },\n \"status\": {\n \"description\": \"Overall status: healthy, degraded, or unhealthy\",\n \"type\": \"string\"\n },\n \"timestamp\": {\n \"description\": \"Timestamp of the check\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"total_endpoints\": {\n \"description\": \"Total number of endpoints checked\",\n \"type\": \"integer\"\n },\n \"unhealthy\": {\n \"description\": \"Number of unhealthy endpoints\",\n \"type\": \"integer\"\n },\n \"warnings\": {\n \"description\": \"Number of endpoints with warnings\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"endpoints\",\n \"errors\",\n \"healthy\",\n \"skipped\",\n \"status\",\n \"timestamp\",\n \"total_endpoints\",\n \"unhealthy\",\n \"warnings\"\n ],\n \"type\": \"object\"\n },\n \"ErrorResponse\": {\n \"description\": \"Generic error response.\",\n \"properties\": {\n \"message\": {\n \"type\": \"string\"\n },\n \"success\": {\n \"default\": false,\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"message\"\n ],\n \"type\": \"object\"\n },\n \"HealthCheck\": {\n \"description\": \"Serializer for health check response.\",\n \"properties\": {\n \"checks\": {\n \"additionalProperties\": {},\n \"description\": \"Detailed health checks for databases, cache, and system\",\n \"type\": \"object\"\n },\n \"environment\": {\n \"additionalProperties\": {},\n \"description\": \"Environment information\",\n \"type\": \"object\"\n },\n \"service\": {\n \"description\": \"Service name\",\n \"type\": \"string\"\n },\n \"status\": {\n \"description\": \"Overall health status: healthy, degraded, or unhealthy\",\n \"type\": \"string\"\n },\n \"timestamp\": {\n \"description\": \"Timestamp of the health check\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"version\": {\n \"description\": \"Django-CFG version\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"checks\",\n \"environment\",\n \"service\",\n \"status\",\n \"timestamp\",\n \"version\"\n ],\n \"type\": \"object\"\n },\n \"LeadSubmission\": {\n \"description\": \"Serializer for lead form submission from frontend.\",\n \"properties\": {\n \"company\": {\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"company_site\": {\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"contact_type\": {\n \"description\": \"* `email` - Email\\n* `whatsapp` - WhatsApp\\n* `telegram` - Telegram\\n* `phone` - Phone\\n* `other` - Other\",\n \"enum\": [\n \"email\",\n \"whatsapp\",\n \"telegram\",\n \"phone\",\n \"other\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"2d58a06dc3d54732\"\n },\n \"contact_value\": {\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"email\": {\n \"format\": \"email\",\n \"maxLength\": 254,\n \"type\": \"string\"\n },\n \"extra\": {\n \"nullable\": true,\n \"title\": \"Extra Data\"\n },\n \"message\": {\n \"type\": \"string\"\n },\n \"name\": {\n \"maxLength\": 200,\n \"title\": \"Full Name\",\n \"type\": \"string\"\n },\n \"site_url\": {\n \"description\": \"Frontend URL where form was submitted\",\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"type\": \"string\"\n },\n \"subject\": {\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"email\",\n \"message\",\n \"name\",\n \"site_url\"\n ],\n \"type\": \"object\"\n },\n \"LeadSubmissionError\": {\n \"description\": \"Response serializer for lead submission errors.\",\n \"properties\": {\n \"details\": {\n \"additionalProperties\": {},\n \"type\": \"object\"\n },\n \"error\": {\n \"type\": \"string\"\n },\n \"success\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"error\",\n \"success\"\n ],\n \"type\": \"object\"\n },\n \"LeadSubmissionRequest\": {\n \"description\": \"Serializer for lead form submission from frontend.\",\n \"properties\": {\n \"company\": {\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"company_site\": {\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"contact_type\": {\n \"description\": \"* `email` - Email\\n* `whatsapp` - WhatsApp\\n* `telegram` - Telegram\\n* `phone` - Phone\\n* `other` - Other\",\n \"enum\": [\n \"email\",\n \"whatsapp\",\n \"telegram\",\n \"phone\",\n \"other\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"2d58a06dc3d54732\"\n },\n \"contact_value\": {\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"email\": {\n \"format\": \"email\",\n \"maxLength\": 254,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"extra\": {\n \"nullable\": true,\n \"title\": \"Extra Data\"\n },\n \"message\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"name\": {\n \"maxLength\": 200,\n \"minLength\": 1,\n \"title\": \"Full Name\",\n \"type\": \"string\"\n },\n \"site_url\": {\n \"description\": \"Frontend URL where form was submitted\",\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"subject\": {\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"email\",\n \"message\",\n \"name\",\n \"site_url\"\n ],\n \"type\": \"object\"\n },\n \"LeadSubmissionResponse\": {\n \"description\": \"Response serializer for successful lead submission.\",\n \"properties\": {\n \"lead_id\": {\n \"type\": \"integer\"\n },\n \"message\": {\n \"type\": \"string\"\n },\n \"success\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"lead_id\",\n \"message\",\n \"success\"\n ],\n \"type\": \"object\"\n },\n \"Message\": {\n \"properties\": {\n \"created_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"is_from_author\": {\n \"description\": \"Check if this message is from the ticket author.\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"sender\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/Sender\"\n }\n ],\n \"readOnly\": true\n },\n \"text\": {\n \"type\": \"string\"\n },\n \"ticket\": {\n \"format\": \"uuid\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"uuid\": {\n \"format\": \"uuid\",\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"created_at\",\n \"is_from_author\",\n \"sender\",\n \"text\",\n \"ticket\",\n \"uuid\"\n ],\n \"type\": \"object\"\n },\n \"MessageCreate\": {\n \"properties\": {\n \"text\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"text\"\n ],\n \"type\": \"object\"\n },\n \"MessageCreateRequest\": {\n \"properties\": {\n \"text\": {\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"text\"\n ],\n \"type\": \"object\"\n },\n \"MessageRequest\": {\n \"properties\": {\n \"text\": {\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"text\"\n ],\n \"type\": \"object\"\n },\n \"Network\": {\n \"description\": \"Network serializer for blockchain networks.\\n\\nUsed for network information and selection.\",\n \"properties\": {\n \"code\": {\n \"description\": \"Network code (e.g., ETH, BTC, MATIC)\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"created_at\": {\n \"description\": \"When this record was created\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"currency\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/CurrencyList\"\n }\n ],\n \"readOnly\": true\n },\n \"id\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"is_active\": {\n \"description\": \"Whether this network is available for payments\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"name\": {\n \"description\": \"Network name (e.g., Ethereum, Bitcoin, Polygon)\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"updated_at\": {\n \"description\": \"When this record was last updated\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"code\",\n \"created_at\",\n \"currency\",\n \"id\",\n \"is_active\",\n \"name\",\n \"updated_at\"\n ],\n \"type\": \"object\"\n },\n \"Newsletter\": {\n \"description\": \"Serializer for Newsletter model.\",\n \"properties\": {\n \"auto_subscribe\": {\n \"description\": \"Automatically subscribe new users to this newsletter\",\n \"title\": \"Auto Subscribe New Users\",\n \"type\": \"boolean\"\n },\n \"created_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"description\": {\n \"type\": \"string\"\n },\n \"id\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"is_active\": {\n \"title\": \"Active\",\n \"type\": \"boolean\"\n },\n \"subscribers_count\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"title\": {\n \"maxLength\": 255,\n \"title\": \"Newsletter Title\",\n \"type\": \"string\"\n },\n \"updated_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"created_at\",\n \"id\",\n \"subscribers_count\",\n \"title\",\n \"updated_at\"\n ],\n \"type\": \"object\"\n },\n \"NewsletterCampaign\": {\n \"description\": \"Serializer for NewsletterCampaign model.\",\n \"properties\": {\n \"button_text\": {\n \"maxLength\": 100,\n \"type\": \"string\"\n },\n \"button_url\": {\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"type\": \"string\"\n },\n \"created_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"email_title\": {\n \"maxLength\": 255,\n \"type\": \"string\"\n },\n \"id\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"main_html_content\": {\n \"title\": \"HTML Content\",\n \"type\": \"string\"\n },\n \"main_text\": {\n \"type\": \"string\"\n },\n \"newsletter\": {\n \"type\": \"integer\"\n },\n \"newsletter_title\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"recipient_count\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"secondary_text\": {\n \"type\": \"string\"\n },\n \"sent_at\": {\n \"format\": \"date-time\",\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"status\": {\n \"description\": \"* `draft` - Draft\\n* `sending` - Sending\\n* `sent` - Sent\\n* `failed` - Failed\",\n \"enum\": [\n \"draft\",\n \"sending\",\n \"sent\",\n \"failed\"\n ],\n \"readOnly\": true,\n \"type\": \"string\",\n \"x-spec-enum-id\": \"a459055d142d5a82\"\n },\n \"subject\": {\n \"maxLength\": 255,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"created_at\",\n \"email_title\",\n \"id\",\n \"main_text\",\n \"newsletter\",\n \"newsletter_title\",\n \"recipient_count\",\n \"sent_at\",\n \"status\",\n \"subject\"\n ],\n \"type\": \"object\"\n },\n \"NewsletterCampaignRequest\": {\n \"description\": \"Serializer for NewsletterCampaign model.\",\n \"properties\": {\n \"button_text\": {\n \"maxLength\": 100,\n \"type\": \"string\"\n },\n \"button_url\": {\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"type\": \"string\"\n },\n \"email_title\": {\n \"maxLength\": 255,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"main_html_content\": {\n \"title\": \"HTML Content\",\n \"type\": \"string\"\n },\n \"main_text\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"newsletter\": {\n \"type\": \"integer\"\n },\n \"secondary_text\": {\n \"type\": \"string\"\n },\n \"subject\": {\n \"maxLength\": 255,\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"email_title\",\n \"main_text\",\n \"newsletter\",\n \"subject\"\n ],\n \"type\": \"object\"\n },\n \"NewsletterSubscription\": {\n \"description\": \"Serializer for NewsletterSubscription model.\",\n \"properties\": {\n \"email\": {\n \"format\": \"email\",\n \"maxLength\": 254,\n \"title\": \"Email Address\",\n \"type\": \"string\"\n },\n \"id\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"is_active\": {\n \"title\": \"Active\",\n \"type\": \"boolean\"\n },\n \"newsletter\": {\n \"type\": \"integer\"\n },\n \"newsletter_title\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"subscribed_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"unsubscribed_at\": {\n \"format\": \"date-time\",\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"user\": {\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"user_email\": {\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"email\",\n \"id\",\n \"newsletter\",\n \"newsletter_title\",\n \"subscribed_at\",\n \"unsubscribed_at\",\n \"user_email\"\n ],\n \"type\": \"object\"\n },\n \"OTPErrorResponse\": {\n \"description\": \"Error response for OTP operations.\",\n \"properties\": {\n \"error\": {\n \"description\": \"Error message\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"error\"\n ],\n \"type\": \"object\"\n },\n \"OTPRequestRequest\": {\n \"description\": \"Serializer for OTP request.\",\n \"properties\": {\n \"channel\": {\n \"description\": \"Delivery channel: \\u0027email\\u0027 or \\u0027phone\\u0027. Auto-detected if not provided.\\n\\n* `email` - Email\\n* `phone` - Phone\",\n \"enum\": [\n \"email\",\n \"phone\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"17f11a3a6a4008ba\"\n },\n \"identifier\": {\n \"description\": \"Email address or phone number for OTP delivery\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"source_url\": {\n \"description\": \"Source URL for tracking registration (e.g., https://dashboard.unrealon.com)\",\n \"format\": \"uri\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"identifier\"\n ],\n \"type\": \"object\"\n },\n \"OTPRequestResponse\": {\n \"description\": \"OTP request response.\",\n \"properties\": {\n \"message\": {\n \"description\": \"Success message\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"message\"\n ],\n \"type\": \"object\"\n },\n \"OTPVerifyRequest\": {\n \"description\": \"Serializer for OTP verification.\",\n \"properties\": {\n \"channel\": {\n \"description\": \"Delivery channel: \\u0027email\\u0027 or \\u0027phone\\u0027. Auto-detected if not provided.\\n\\n* `email` - Email\\n* `phone` - Phone\",\n \"enum\": [\n \"email\",\n \"phone\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"17f11a3a6a4008ba\"\n },\n \"identifier\": {\n \"description\": \"Email address or phone number used for OTP request\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"otp\": {\n \"maxLength\": 6,\n \"minLength\": 6,\n \"type\": \"string\"\n },\n \"source_url\": {\n \"description\": \"Source URL for tracking login (e.g., https://dashboard.unrealon.com)\",\n \"format\": \"uri\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"identifier\",\n \"otp\"\n ],\n \"type\": \"object\"\n },\n \"OTPVerifyResponse\": {\n \"description\": \"OTP verification response.\",\n \"properties\": {\n \"access\": {\n \"description\": \"JWT access token\",\n \"type\": \"string\"\n },\n \"refresh\": {\n \"description\": \"JWT refresh token\",\n \"type\": \"string\"\n },\n \"user\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/User\"\n }\n ],\n \"description\": \"User information\"\n }\n },\n \"required\": [\n \"access\",\n \"refresh\",\n \"user\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedAPIKeyListList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/APIKeyList\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedAdminPaymentListList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/AdminPaymentList\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedAdminPaymentStatsList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/AdminPaymentStats\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedAdminUserList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/AdminUser\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedCurrencyListList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/CurrencyList\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedEmailLogList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/EmailLog\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedEndpointGroupList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/EndpointGroup\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedLeadSubmissionList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/LeadSubmission\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedMessageList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/Message\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedNetworkList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/Network\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedNewsletterCampaignList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/NewsletterCampaign\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedNewsletterList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/Newsletter\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedNewsletterSubscriptionList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/NewsletterSubscription\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedPaymentListList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/PaymentList\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedProviderCurrencyList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/ProviderCurrency\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedRecentPaymentList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/RecentPayment\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedRecentTransactionList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/RecentTransaction\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedSubscriptionListList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/SubscriptionList\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedTariffList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/Tariff\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedTicketList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/Ticket\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedTransactionList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/Transaction\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedUserBalanceList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/UserBalance\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedWebhookEventListList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/WebhookEventList\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PaginatedWebhookStatsList\": {\n \"properties\": {\n \"count\": {\n \"description\": \"Total number of items across all pages\",\n \"example\": 150,\n \"type\": \"integer\"\n },\n \"has_next\": {\n \"description\": \"Whether there is a next page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"description\": \"Whether there is a previous page\",\n \"example\": true,\n \"type\": \"boolean\"\n },\n \"next_page\": {\n \"description\": \"Next page number (null if no next page)\",\n \"example\": 3,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"page\": {\n \"description\": \"Current page number (1-based)\",\n \"example\": 2,\n \"type\": \"integer\"\n },\n \"page_size\": {\n \"description\": \"Number of items per page\",\n \"example\": 10,\n \"type\": \"integer\"\n },\n \"pages\": {\n \"description\": \"Total number of pages\",\n \"example\": 15,\n \"type\": \"integer\"\n },\n \"previous_page\": {\n \"description\": \"Previous page number (null if no previous page)\",\n \"example\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"results\": {\n \"description\": \"Array of items for current page\",\n \"items\": {\n \"$ref\": \"#/components/schemas/WebhookStats\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"count\",\n \"page\",\n \"pages\",\n \"page_size\",\n \"has_next\",\n \"has_previous\",\n \"results\"\n ],\n \"type\": \"object\"\n },\n \"PatchedAPIKeyUpdateRequest\": {\n \"description\": \"API key update serializer for modifying API key properties.\\n\\nAllows updating name and active status only.\",\n \"properties\": {\n \"is_active\": {\n \"description\": \"Whether this API key is active\",\n \"type\": \"boolean\"\n },\n \"name\": {\n \"description\": \"Human-readable name for this API key\",\n \"maxLength\": 100,\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"PatchedAdminPaymentUpdateRequest\": {\n \"description\": \"Serializer for updating payments in admin interface.\",\n \"properties\": {\n \"callback_url\": {\n \"description\": \"Success callback URL\",\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"cancel_url\": {\n \"description\": \"Cancellation URL\",\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"description\": {\n \"description\": \"Payment description\",\n \"type\": \"string\"\n },\n \"provider_data\": {\n \"description\": \"Provider-specific data (validated by Pydantic)\"\n },\n \"status\": {\n \"description\": \"Current payment status\\n\\n* `pending` - Pending\\n* `confirming` - Confirming\\n* `confirmed` - Confirmed\\n* `completed` - Completed\\n* `failed` - Failed\\n* `expired` - Expired\\n* `cancelled` - Cancelled\\n* `refunded` - Refunded\",\n \"enum\": [\n \"pending\",\n \"confirming\",\n \"confirmed\",\n \"completed\",\n \"failed\",\n \"expired\",\n \"cancelled\",\n \"refunded\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"59d07a8608d1bdb9\"\n },\n \"webhook_data\": {\n \"description\": \"Webhook data (validated by Pydantic)\"\n }\n },\n \"type\": \"object\"\n },\n \"PatchedLeadSubmissionRequest\": {\n \"description\": \"Serializer for lead form submission from frontend.\",\n \"properties\": {\n \"company\": {\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"company_site\": {\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"contact_type\": {\n \"description\": \"* `email` - Email\\n* `whatsapp` - WhatsApp\\n* `telegram` - Telegram\\n* `phone` - Phone\\n* `other` - Other\",\n \"enum\": [\n \"email\",\n \"whatsapp\",\n \"telegram\",\n \"phone\",\n \"other\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"2d58a06dc3d54732\"\n },\n \"contact_value\": {\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"email\": {\n \"format\": \"email\",\n \"maxLength\": 254,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"extra\": {\n \"nullable\": true,\n \"title\": \"Extra Data\"\n },\n \"message\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"name\": {\n \"maxLength\": 200,\n \"minLength\": 1,\n \"title\": \"Full Name\",\n \"type\": \"string\"\n },\n \"site_url\": {\n \"description\": \"Frontend URL where form was submitted\",\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"subject\": {\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"PatchedMessageRequest\": {\n \"properties\": {\n \"text\": {\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"PatchedNewsletterCampaignRequest\": {\n \"description\": \"Serializer for NewsletterCampaign model.\",\n \"properties\": {\n \"button_text\": {\n \"maxLength\": 100,\n \"type\": \"string\"\n },\n \"button_url\": {\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"type\": \"string\"\n },\n \"email_title\": {\n \"maxLength\": 255,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"main_html_content\": {\n \"title\": \"HTML Content\",\n \"type\": \"string\"\n },\n \"main_text\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"newsletter\": {\n \"type\": \"integer\"\n },\n \"secondary_text\": {\n \"type\": \"string\"\n },\n \"subject\": {\n \"maxLength\": 255,\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"PatchedPaymentRequest\": {\n \"description\": \"Complete payment serializer with full details.\\n\\nUsed for detail views and updates.\",\n \"properties\": {\n \"amount_usd\": {\n \"description\": \"Payment amount in USD (float for performance)\",\n \"format\": \"double\",\n \"maximum\": 50000.0,\n \"minimum\": 1.0,\n \"type\": \"number\"\n },\n \"callback_url\": {\n \"description\": \"Success callback URL\",\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"cancel_url\": {\n \"description\": \"Cancellation URL\",\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"currency\": {\n \"description\": \"Payment currency\",\n \"type\": \"integer\"\n },\n \"description\": {\n \"description\": \"Payment description\",\n \"type\": \"string\"\n },\n \"expires_at\": {\n \"description\": \"When this payment expires\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"network\": {\n \"description\": \"Blockchain network (for crypto payments)\",\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"provider\": {\n \"description\": \"Payment provider\\n\\n* `nowpayments` - NowPayments\",\n \"enum\": [\n \"nowpayments\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"47694db6bd068cb3\"\n },\n \"status\": {\n \"description\": \"Current payment status\\n\\n* `pending` - Pending\\n* `confirming` - Confirming\\n* `confirmed` - Confirmed\\n* `completed` - Completed\\n* `failed` - Failed\\n* `expired` - Expired\\n* `cancelled` - Cancelled\\n* `refunded` - Refunded\",\n \"enum\": [\n \"pending\",\n \"confirming\",\n \"confirmed\",\n \"completed\",\n \"failed\",\n \"expired\",\n \"cancelled\",\n \"refunded\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"59d07a8608d1bdb9\"\n }\n },\n \"type\": \"object\"\n },\n \"PatchedSubscriptionRequest\": {\n \"description\": \"Complete subscription serializer with full details.\\n\\nUsed for subscription detail views and updates.\",\n \"properties\": {\n \"expires_at\": {\n \"description\": \"When this subscription expires\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"status\": {\n \"description\": \"Subscription status\\n\\n* `active` - Active\\n* `inactive` - Inactive\\n* `suspended` - Suspended\\n* `cancelled` - Cancelled\\n* `expired` - Expired\",\n \"enum\": [\n \"active\",\n \"inactive\",\n \"suspended\",\n \"cancelled\",\n \"expired\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"20d0bcc8b3c2bafa\"\n },\n \"tier\": {\n \"description\": \"Subscription tier\\n\\n* `free` - Free Tier\\n* `basic` - Basic Tier\\n* `pro` - Pro Tier\\n* `enterprise` - Enterprise Tier\",\n \"enum\": [\n \"free\",\n \"basic\",\n \"pro\",\n \"enterprise\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"776e806f04431486\"\n }\n },\n \"type\": \"object\"\n },\n \"PatchedTicketRequest\": {\n \"properties\": {\n \"status\": {\n \"description\": \"* `open` - Open\\n* `waiting_for_user` - Waiting for User\\n* `waiting_for_admin` - Waiting for Admin\\n* `resolved` - Resolved\\n* `closed` - Closed\",\n \"enum\": [\n \"open\",\n \"waiting_for_user\",\n \"waiting_for_admin\",\n \"resolved\",\n \"closed\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"c21b48fabf2398aa\"\n },\n \"subject\": {\n \"maxLength\": 255,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"PatchedUnsubscribeRequest\": {\n \"description\": \"Simple serializer for unsubscribe.\",\n \"properties\": {\n \"subscription_id\": {\n \"type\": \"integer\"\n }\n },\n \"type\": \"object\"\n },\n \"PatchedUserProfileUpdateRequest\": {\n \"description\": \"Serializer for updating user profile.\",\n \"properties\": {\n \"company\": {\n \"maxLength\": 100,\n \"type\": \"string\"\n },\n \"first_name\": {\n \"maxLength\": 50,\n \"type\": \"string\"\n },\n \"last_name\": {\n \"maxLength\": 50,\n \"type\": \"string\"\n },\n \"phone\": {\n \"maxLength\": 20,\n \"type\": \"string\"\n },\n \"position\": {\n \"maxLength\": 100,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"Payment\": {\n \"description\": \"Complete payment serializer with full details.\\n\\nUsed for detail views and updates.\",\n \"properties\": {\n \"amount_display\": {\n \"description\": \"Get formatted amount display.\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"amount_usd\": {\n \"description\": \"Payment amount in USD (float for performance)\",\n \"format\": \"double\",\n \"maximum\": 50000.0,\n \"minimum\": 1.0,\n \"type\": \"number\"\n },\n \"callback_url\": {\n \"description\": \"Success callback URL\",\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"cancel_url\": {\n \"description\": \"Cancellation URL\",\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"completed_at\": {\n \"description\": \"When this payment was completed\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"confirmations_count\": {\n \"description\": \"Number of blockchain confirmations\",\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"created_at\": {\n \"description\": \"When this record was created\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"currency\": {\n \"description\": \"Payment currency\",\n \"type\": \"integer\"\n },\n \"description\": {\n \"description\": \"Payment description\",\n \"type\": \"string\"\n },\n \"expires_at\": {\n \"description\": \"When this payment expires\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"id\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"is_completed\": {\n \"description\": \"Check if payment is completed.\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"is_expired\": {\n \"description\": \"Check if payment is expired.\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"is_failed\": {\n \"description\": \"Check if payment is failed.\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"is_pending\": {\n \"description\": \"Check if payment is pending.\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"network\": {\n \"description\": \"Blockchain network (for crypto payments)\",\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"pay_address\": {\n \"description\": \"Cryptocurrency payment address\",\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"payment_url\": {\n \"description\": \"Payment page URL\",\n \"format\": \"uri\",\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"provider\": {\n \"description\": \"Payment provider\\n\\n* `nowpayments` - NowPayments\",\n \"enum\": [\n \"nowpayments\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"47694db6bd068cb3\"\n },\n \"provider_payment_id\": {\n \"description\": \"Provider\\u0027s payment ID\",\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"status\": {\n \"description\": \"Current payment status\\n\\n* `pending` - Pending\\n* `confirming` - Confirming\\n* `confirmed` - Confirmed\\n* `completed` - Completed\\n* `failed` - Failed\\n* `expired` - Expired\\n* `cancelled` - Cancelled\\n* `refunded` - Refunded\",\n \"enum\": [\n \"pending\",\n \"confirming\",\n \"confirmed\",\n \"completed\",\n \"failed\",\n \"expired\",\n \"cancelled\",\n \"refunded\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"59d07a8608d1bdb9\"\n },\n \"status_display\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"transaction_hash\": {\n \"description\": \"Blockchain transaction hash\",\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"updated_at\": {\n \"description\": \"When this record was last updated\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"user\": {\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"amount_display\",\n \"amount_usd\",\n \"completed_at\",\n \"confirmations_count\",\n \"created_at\",\n \"currency\",\n \"id\",\n \"is_completed\",\n \"is_expired\",\n \"is_failed\",\n \"is_pending\",\n \"pay_address\",\n \"payment_url\",\n \"provider_payment_id\",\n \"status_display\",\n \"transaction_hash\",\n \"updated_at\",\n \"user\"\n ],\n \"type\": \"object\"\n },\n \"PaymentAnalyticsResponse\": {\n \"description\": \"Payment analytics response with currency and provider breakdown\",\n \"properties\": {\n \"currency_analytics\": {\n \"description\": \"Analytics by currency\",\n \"items\": {\n \"$ref\": \"#/components/schemas/CurrencyAnalyticsItem\"\n },\n \"type\": \"array\"\n },\n \"provider_analytics\": {\n \"description\": \"Analytics by provider\",\n \"items\": {\n \"$ref\": \"#/components/schemas/ProviderAnalyticsItem\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"currency_analytics\",\n \"provider_analytics\"\n ],\n \"type\": \"object\"\n },\n \"PaymentCreate\": {\n \"description\": \"Payment creation serializer with Pydantic integration.\\n\\nValidates input and delegates to PaymentService.\",\n \"properties\": {\n \"amount_usd\": {\n \"description\": \"Amount in USD (1.00 - 50,000.00)\",\n \"format\": \"double\",\n \"maximum\": 50000.0,\n \"minimum\": 1.0,\n \"type\": \"number\"\n },\n \"callback_url\": {\n \"description\": \"Success callback URL\",\n \"format\": \"uri\",\n \"type\": \"string\"\n },\n \"cancel_url\": {\n \"description\": \"Cancellation URL\",\n \"format\": \"uri\",\n \"type\": \"string\"\n },\n \"currency_code\": {\n \"description\": \"Cryptocurrency to receive\\n\\n* `BTC` - Bitcoin\\n* `ETH` - Ethereum\\n* `LTC` - Litecoin\\n* `XMR` - Monero\\n* `USDT` - Tether\\n* `USDC` - USD Coin\\n* `ADA` - Cardano\\n* `DOT` - Polkadot\",\n \"enum\": [\n \"BTC\",\n \"ETH\",\n \"LTC\",\n \"XMR\",\n \"USDT\",\n \"USDC\",\n \"ADA\",\n \"DOT\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"a26a773d0d4fed5c\"\n },\n \"description\": {\n \"description\": \"Payment description\",\n \"maxLength\": 500,\n \"type\": \"string\"\n },\n \"metadata\": {\n \"description\": \"Additional metadata\"\n },\n \"provider\": {\n \"default\": \"nowpayments\",\n \"description\": \"Payment provider\\n\\n* `nowpayments` - NowPayments\",\n \"enum\": [\n \"nowpayments\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"47694db6bd068cb3\"\n }\n },\n \"required\": [\n \"amount_usd\",\n \"currency_code\"\n ],\n \"type\": \"object\"\n },\n \"PaymentCreateRequest\": {\n \"description\": \"Payment creation serializer with Pydantic integration.\\n\\nValidates input and delegates to PaymentService.\",\n \"properties\": {\n \"amount_usd\": {\n \"description\": \"Amount in USD (1.00 - 50,000.00)\",\n \"format\": \"double\",\n \"maximum\": 50000.0,\n \"minimum\": 1.0,\n \"type\": \"number\"\n },\n \"callback_url\": {\n \"description\": \"Success callback URL\",\n \"format\": \"uri\",\n \"type\": \"string\"\n },\n \"cancel_url\": {\n \"description\": \"Cancellation URL\",\n \"format\": \"uri\",\n \"type\": \"string\"\n },\n \"currency_code\": {\n \"description\": \"Cryptocurrency to receive\\n\\n* `BTC` - Bitcoin\\n* `ETH` - Ethereum\\n* `LTC` - Litecoin\\n* `XMR` - Monero\\n* `USDT` - Tether\\n* `USDC` - USD Coin\\n* `ADA` - Cardano\\n* `DOT` - Polkadot\",\n \"enum\": [\n \"BTC\",\n \"ETH\",\n \"LTC\",\n \"XMR\",\n \"USDT\",\n \"USDC\",\n \"ADA\",\n \"DOT\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"a26a773d0d4fed5c\"\n },\n \"description\": {\n \"description\": \"Payment description\",\n \"maxLength\": 500,\n \"type\": \"string\"\n },\n \"metadata\": {\n \"description\": \"Additional metadata\"\n },\n \"provider\": {\n \"default\": \"nowpayments\",\n \"description\": \"Payment provider\\n\\n* `nowpayments` - NowPayments\",\n \"enum\": [\n \"nowpayments\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"47694db6bd068cb3\"\n }\n },\n \"required\": [\n \"amount_usd\",\n \"currency_code\"\n ],\n \"type\": \"object\"\n },\n \"PaymentList\": {\n \"description\": \"Lightweight serializer for payment lists.\\n\\nOptimized for list views with minimal data.\",\n \"properties\": {\n \"amount_display\": {\n \"description\": \"Get formatted amount display.\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"amount_usd\": {\n \"description\": \"Payment amount in USD (float for performance)\",\n \"format\": \"double\",\n \"readOnly\": true,\n \"type\": \"number\"\n },\n \"created_at\": {\n \"description\": \"When this record was created\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"currency\": {\n \"description\": \"Payment currency\",\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"expires_at\": {\n \"description\": \"When this payment expires\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"id\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"provider\": {\n \"description\": \"Payment provider\\n\\n* `nowpayments` - NowPayments\",\n \"enum\": [\n \"nowpayments\"\n ],\n \"readOnly\": true,\n \"type\": \"string\",\n \"x-spec-enum-id\": \"47694db6bd068cb3\"\n },\n \"status\": {\n \"description\": \"Current payment status\\n\\n* `pending` - Pending\\n* `confirming` - Confirming\\n* `confirmed` - Confirmed\\n* `completed` - Completed\\n* `failed` - Failed\\n* `expired` - Expired\\n* `cancelled` - Cancelled\\n* `refunded` - Refunded\",\n \"enum\": [\n \"pending\",\n \"confirming\",\n \"confirmed\",\n \"completed\",\n \"failed\",\n \"expired\",\n \"cancelled\",\n \"refunded\"\n ],\n \"readOnly\": true,\n \"type\": \"string\",\n \"x-spec-enum-id\": \"59d07a8608d1bdb9\"\n },\n \"status_display\": {\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"amount_display\",\n \"amount_usd\",\n \"created_at\",\n \"currency\",\n \"expires_at\",\n \"id\",\n \"provider\",\n \"status\",\n \"status_display\"\n ],\n \"type\": \"object\"\n },\n \"PaymentOverview\": {\n \"description\": \"Payments overview metrics\",\n \"properties\": {\n \"amount_this_month\": {\n \"description\": \"Total amount this month\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"average_payment_usd\": {\n \"description\": \"Average payment amount in USD\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"completed_amount_usd\": {\n \"description\": \"Total completed amount in USD\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"completed_payments\": {\n \"description\": \"Number of completed payments\",\n \"type\": \"integer\"\n },\n \"failed_payments\": {\n \"description\": \"Number of failed payments\",\n \"type\": \"integer\"\n },\n \"last_payment_at\": {\n \"description\": \"Last payment timestamp\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"payments_this_month\": {\n \"description\": \"Number of payments this month\",\n \"type\": \"integer\"\n },\n \"pending_payments\": {\n \"description\": \"Number of pending payments\",\n \"type\": \"integer\"\n },\n \"success_rate\": {\n \"description\": \"Payment success rate percentage\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"top_currency\": {\n \"description\": \"Most used currency\",\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"top_currency_count\": {\n \"description\": \"Usage count for top currency\",\n \"type\": \"integer\"\n },\n \"total_amount_usd\": {\n \"description\": \"Total payment amount in USD\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"total_payments\": {\n \"description\": \"Total number of payments\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"amount_this_month\",\n \"average_payment_usd\",\n \"completed_amount_usd\",\n \"completed_payments\",\n \"failed_payments\",\n \"last_payment_at\",\n \"payments_this_month\",\n \"pending_payments\",\n \"success_rate\",\n \"top_currency\",\n \"top_currency_count\",\n \"total_amount_usd\",\n \"total_payments\"\n ],\n \"type\": \"object\"\n },\n \"PaymentRequest\": {\n \"description\": \"Complete payment serializer with full details.\\n\\nUsed for detail views and updates.\",\n \"properties\": {\n \"amount_usd\": {\n \"description\": \"Payment amount in USD (float for performance)\",\n \"format\": \"double\",\n \"maximum\": 50000.0,\n \"minimum\": 1.0,\n \"type\": \"number\"\n },\n \"callback_url\": {\n \"description\": \"Success callback URL\",\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"cancel_url\": {\n \"description\": \"Cancellation URL\",\n \"format\": \"uri\",\n \"maxLength\": 200,\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"currency\": {\n \"description\": \"Payment currency\",\n \"type\": \"integer\"\n },\n \"description\": {\n \"description\": \"Payment description\",\n \"type\": \"string\"\n },\n \"expires_at\": {\n \"description\": \"When this payment expires\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"network\": {\n \"description\": \"Blockchain network (for crypto payments)\",\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"provider\": {\n \"description\": \"Payment provider\\n\\n* `nowpayments` - NowPayments\",\n \"enum\": [\n \"nowpayments\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"47694db6bd068cb3\"\n },\n \"status\": {\n \"description\": \"Current payment status\\n\\n* `pending` - Pending\\n* `confirming` - Confirming\\n* `confirmed` - Confirmed\\n* `completed` - Completed\\n* `failed` - Failed\\n* `expired` - Expired\\n* `cancelled` - Cancelled\\n* `refunded` - Refunded\",\n \"enum\": [\n \"pending\",\n \"confirming\",\n \"confirmed\",\n \"completed\",\n \"failed\",\n \"expired\",\n \"cancelled\",\n \"refunded\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"59d07a8608d1bdb9\"\n }\n },\n \"required\": [\n \"amount_usd\",\n \"currency\"\n ],\n \"type\": \"object\"\n },\n \"PaymentsChartResponse\": {\n \"description\": \"Complete chart response for payments analytics\",\n \"properties\": {\n \"period\": {\n \"description\": \"Time period\",\n \"type\": \"string\"\n },\n \"series\": {\n \"description\": \"Chart series data\",\n \"items\": {\n \"$ref\": \"#/components/schemas/ChartSeries\"\n },\n \"type\": \"array\"\n },\n \"success_rate\": {\n \"description\": \"Success rate for period\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"total_amount\": {\n \"description\": \"Total amount for period\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"total_payments\": {\n \"description\": \"Total payments for period\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"period\",\n \"series\",\n \"success_rate\",\n \"total_amount\",\n \"total_payments\"\n ],\n \"type\": \"object\"\n },\n \"PaymentsDashboardOverview\": {\n \"description\": \"Complete payments dashboard overview response\",\n \"properties\": {\n \"chart_data\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/PaymentsChartResponse\"\n }\n ],\n \"description\": \"Chart data for analytics\"\n },\n \"metrics\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/PaymentsMetrics\"\n }\n ],\n \"description\": \"Dashboard metrics\"\n },\n \"recent_payments\": {\n \"description\": \"Recent payments\",\n \"items\": {\n \"$ref\": \"#/components/schemas/RecentPayment\"\n },\n \"type\": \"array\"\n },\n \"recent_transactions\": {\n \"description\": \"Recent transactions\",\n \"items\": {\n \"$ref\": \"#/components/schemas/RecentTransaction\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"chart_data\",\n \"metrics\",\n \"recent_payments\",\n \"recent_transactions\"\n ],\n \"type\": \"object\"\n },\n \"PaymentsMetrics\": {\n \"description\": \"Complete payments dashboard metrics\",\n \"properties\": {\n \"api_keys\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/APIKeysOverview\"\n }\n ],\n \"description\": \"API keys overview\"\n },\n \"balance\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/BalanceOverview\"\n }\n ],\n \"description\": \"Balance overview\"\n },\n \"payments\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/PaymentOverview\"\n }\n ],\n \"description\": \"Payments overview\"\n },\n \"subscription\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/SubscriptionOverview\"\n }\n ],\n \"description\": \"Subscription overview\",\n \"nullable\": true\n }\n },\n \"required\": [\n \"api_keys\",\n \"balance\",\n \"payments\",\n \"subscription\"\n ],\n \"type\": \"object\"\n },\n \"ProviderAnalyticsItem\": {\n \"description\": \"Analytics data for a single payment provider\",\n \"properties\": {\n \"completed_payments\": {\n \"description\": \"Number of completed payments\",\n \"type\": \"integer\"\n },\n \"provider\": {\n \"description\": \"Provider code\",\n \"type\": \"string\"\n },\n \"provider_display\": {\n \"description\": \"Provider display name\",\n \"type\": \"string\"\n },\n \"success_rate\": {\n \"description\": \"Success rate percentage\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"total_amount\": {\n \"description\": \"Total amount in USD\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"total_payments\": {\n \"description\": \"Total number of payments\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"completed_payments\",\n \"provider\",\n \"provider_display\",\n \"success_rate\",\n \"total_amount\",\n \"total_payments\"\n ],\n \"type\": \"object\"\n },\n \"ProviderCurrency\": {\n \"description\": \"Provider currency serializer for provider-specific currency info.\\n\\nUsed for provider currency management and rates.\",\n \"properties\": {\n \"created_at\": {\n \"description\": \"When this record was created\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"currency\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/CurrencyList\"\n }\n ],\n \"readOnly\": true\n },\n \"id\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"is_enabled\": {\n \"description\": \"Whether this currency is enabled for this provider\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"network\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/Network\"\n }\n ],\n \"readOnly\": true\n },\n \"provider\": {\n \"description\": \"Payment provider name (e.g., nowpayments)\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"provider_currency_code\": {\n \"description\": \"Currency code as used by the provider\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"provider_fee_percentage\": {\n \"description\": \"Get fee percentage from provider configuration.\",\n \"format\": \"double\",\n \"readOnly\": true,\n \"type\": \"number\"\n },\n \"provider_fixed_fee_usd\": {\n \"description\": \"Get fixed fee from provider configuration.\",\n \"format\": \"double\",\n \"readOnly\": true,\n \"type\": \"number\"\n },\n \"provider_max_amount_usd\": {\n \"description\": \"Get maximum amount from provider configuration.\",\n \"format\": \"double\",\n \"readOnly\": true,\n \"type\": \"number\"\n },\n \"provider_min_amount_usd\": {\n \"description\": \"Get minimum amount from provider configuration.\",\n \"format\": \"double\",\n \"readOnly\": true,\n \"type\": \"number\"\n },\n \"updated_at\": {\n \"description\": \"When this record was last updated\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"created_at\",\n \"currency\",\n \"id\",\n \"is_enabled\",\n \"network\",\n \"provider\",\n \"provider_currency_code\",\n \"provider_fee_percentage\",\n \"provider_fixed_fee_usd\",\n \"provider_max_amount_usd\",\n \"provider_min_amount_usd\",\n \"updated_at\"\n ],\n \"type\": \"object\"\n },\n \"QueueAction\": {\n \"description\": \"Serializer for queue management actions.\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform on queues\\n\\n* `clear` - clear\\n* `clear_all` - clear_all\\n* `purge` - purge\\n* `purge_failed` - purge_failed\\n* `flush` - flush\",\n \"enum\": [\n \"clear\",\n \"clear_all\",\n \"purge\",\n \"purge_failed\",\n \"flush\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"4a60a2c6249b0803\"\n },\n \"queue_names\": {\n \"description\": \"Specific queues to target (empty = all queues)\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"action\"\n ],\n \"type\": \"object\"\n },\n \"QueueActionRequest\": {\n \"description\": \"Serializer for queue management actions.\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform on queues\\n\\n* `clear` - clear\\n* `clear_all` - clear_all\\n* `purge` - purge\\n* `purge_failed` - purge_failed\\n* `flush` - flush\",\n \"enum\": [\n \"clear\",\n \"clear_all\",\n \"purge\",\n \"purge_failed\",\n \"flush\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"4a60a2c6249b0803\"\n },\n \"queue_names\": {\n \"description\": \"Specific queues to target (empty = all queues)\",\n \"items\": {\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"type\": \"array\"\n }\n },\n \"required\": [\n \"action\"\n ],\n \"type\": \"object\"\n },\n \"QueueStatus\": {\n \"description\": \"Serializer for queue status data.\",\n \"properties\": {\n \"error\": {\n \"description\": \"Error message if any\",\n \"type\": \"string\"\n },\n \"queues\": {\n \"additionalProperties\": {\n \"additionalProperties\": {\n \"type\": \"integer\"\n },\n \"type\": \"object\"\n },\n \"description\": \"Queue information with pending/failed counts\",\n \"type\": \"object\"\n },\n \"redis_connected\": {\n \"description\": \"Redis connection status\",\n \"type\": \"boolean\"\n },\n \"timestamp\": {\n \"description\": \"Current timestamp\",\n \"type\": \"string\"\n },\n \"workers\": {\n \"description\": \"Number of active workers\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"queues\",\n \"redis_connected\",\n \"timestamp\",\n \"workers\"\n ],\n \"type\": \"object\"\n },\n \"QuickHealth\": {\n \"description\": \"Serializer for quick health check response.\",\n \"properties\": {\n \"error\": {\n \"description\": \"Error message if health check failed\",\n \"type\": \"string\"\n },\n \"status\": {\n \"description\": \"Quick health status: ok or error\",\n \"type\": \"string\"\n },\n \"timestamp\": {\n \"description\": \"Timestamp of the health check\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"status\",\n \"timestamp\"\n ],\n \"type\": \"object\"\n },\n \"RecentPayment\": {\n \"description\": \"Recent payment item\",\n \"properties\": {\n \"amount_display\": {\n \"description\": \"Formatted amount display\",\n \"type\": \"string\"\n },\n \"amount_usd\": {\n \"description\": \"Payment amount in USD\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"completed_at\": {\n \"description\": \"Payment completion timestamp\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"created_at\": {\n \"description\": \"Payment creation timestamp\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"currency_code\": {\n \"description\": \"Currency code\",\n \"type\": \"string\"\n },\n \"id\": {\n \"description\": \"Payment ID\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n },\n \"internal_payment_id\": {\n \"description\": \"Internal payment ID\",\n \"type\": \"string\"\n },\n \"is_completed\": {\n \"description\": \"Whether payment is completed\",\n \"type\": \"boolean\"\n },\n \"is_failed\": {\n \"description\": \"Whether payment failed\",\n \"type\": \"boolean\"\n },\n \"is_pending\": {\n \"description\": \"Whether payment is pending\",\n \"type\": \"boolean\"\n },\n \"provider\": {\n \"description\": \"Payment provider\",\n \"type\": \"string\"\n },\n \"status\": {\n \"description\": \"Payment status\",\n \"type\": \"string\"\n },\n \"status_color\": {\n \"description\": \"Color for status display\",\n \"type\": \"string\"\n },\n \"status_display\": {\n \"description\": \"Human-readable status\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"amount_display\",\n \"amount_usd\",\n \"completed_at\",\n \"created_at\",\n \"currency_code\",\n \"id\",\n \"internal_payment_id\",\n \"is_completed\",\n \"is_failed\",\n \"is_pending\",\n \"provider\",\n \"status\",\n \"status_color\",\n \"status_display\"\n ],\n \"type\": \"object\"\n },\n \"RecentTransaction\": {\n \"description\": \"Recent transaction item\",\n \"properties\": {\n \"amount_display\": {\n \"description\": \"Formatted amount display\",\n \"type\": \"string\"\n },\n \"amount_usd\": {\n \"description\": \"Transaction amount in USD\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"balance_after\": {\n \"description\": \"Balance after transaction\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"created_at\": {\n \"description\": \"Transaction timestamp\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"description\": {\n \"description\": \"Transaction description\",\n \"type\": \"string\"\n },\n \"id\": {\n \"description\": \"Transaction ID\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n },\n \"is_credit\": {\n \"description\": \"Whether this is a credit transaction\",\n \"type\": \"boolean\"\n },\n \"is_debit\": {\n \"description\": \"Whether this is a debit transaction\",\n \"type\": \"boolean\"\n },\n \"payment_id\": {\n \"description\": \"Related payment ID\",\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"transaction_type\": {\n \"description\": \"Transaction type\",\n \"type\": \"string\"\n },\n \"type_color\": {\n \"description\": \"Color for transaction type display\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"amount_display\",\n \"amount_usd\",\n \"balance_after\",\n \"created_at\",\n \"description\",\n \"id\",\n \"is_credit\",\n \"is_debit\",\n \"payment_id\",\n \"transaction_type\",\n \"type_color\"\n ],\n \"type\": \"object\"\n },\n \"SendCampaignRequest\": {\n \"description\": \"Simple serializer for sending campaign.\",\n \"properties\": {\n \"campaign_id\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"campaign_id\"\n ],\n \"type\": \"object\"\n },\n \"SendCampaignResponse\": {\n \"description\": \"Response for sending campaign.\",\n \"properties\": {\n \"error\": {\n \"type\": \"string\"\n },\n \"message\": {\n \"type\": \"string\"\n },\n \"sent_count\": {\n \"type\": \"integer\"\n },\n \"success\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"success\"\n ],\n \"type\": \"object\"\n },\n \"Sender\": {\n \"properties\": {\n \"avatar\": {\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"display_username\": {\n \"description\": \"Get formatted username for display.\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"email\": {\n \"format\": \"email\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"id\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"initials\": {\n \"description\": \"Get user\\u0027s initials for avatar fallback.\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"is_staff\": {\n \"description\": \"Designates whether the user can log into this admin site.\",\n \"readOnly\": true,\n \"title\": \"Staff status\",\n \"type\": \"boolean\"\n },\n \"is_superuser\": {\n \"description\": \"Designates that this user has all permissions without explicitly assigning them.\",\n \"readOnly\": true,\n \"title\": \"Superuser status\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"avatar\",\n \"display_username\",\n \"email\",\n \"id\",\n \"initials\",\n \"is_staff\",\n \"is_superuser\"\n ],\n \"type\": \"object\"\n },\n \"SubscribeRequest\": {\n \"description\": \"Simple serializer for newsletter subscription.\",\n \"properties\": {\n \"email\": {\n \"format\": \"email\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"newsletter_id\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"email\",\n \"newsletter_id\"\n ],\n \"type\": \"object\"\n },\n \"SubscribeResponse\": {\n \"description\": \"Response for subscription.\",\n \"properties\": {\n \"message\": {\n \"type\": \"string\"\n },\n \"subscription_id\": {\n \"type\": \"integer\"\n },\n \"success\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"message\",\n \"success\"\n ],\n \"type\": \"object\"\n },\n \"Subscription\": {\n \"description\": \"Complete subscription serializer with full details.\\n\\nUsed for subscription detail views and updates.\",\n \"properties\": {\n \"created_at\": {\n \"description\": \"When this record was created\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"endpoint_group\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/EndpointGroup\"\n }\n ],\n \"readOnly\": true\n },\n \"expires_at\": {\n \"description\": \"When this subscription expires\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"id\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"is_active\": {\n \"description\": \"Check if subscription is active and not expired.\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"is_expired\": {\n \"description\": \"Check if subscription is expired.\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"last_request_at\": {\n \"description\": \"When the last API request was made\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"status\": {\n \"description\": \"Subscription status\\n\\n* `active` - Active\\n* `inactive` - Inactive\\n* `suspended` - Suspended\\n* `cancelled` - Cancelled\\n* `expired` - Expired\",\n \"enum\": [\n \"active\",\n \"inactive\",\n \"suspended\",\n \"cancelled\",\n \"expired\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"20d0bcc8b3c2bafa\"\n },\n \"status_color\": {\n \"description\": \"Get color for status display.\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"status_display\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"tariff\": {\n \"allOf\": [\n {\n \"$ref\": \"#/components/schemas/Tariff\"\n }\n ],\n \"readOnly\": true\n },\n \"tier\": {\n \"description\": \"Subscription tier\\n\\n* `free` - Free Tier\\n* `basic` - Basic Tier\\n* `pro` - Pro Tier\\n* `enterprise` - Enterprise Tier\",\n \"enum\": [\n \"free\",\n \"basic\",\n \"pro\",\n \"enterprise\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"776e806f04431486\"\n },\n \"total_requests\": {\n \"description\": \"Total API requests made with this subscription\",\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"updated_at\": {\n \"description\": \"When this record was last updated\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"usage_percentage\": {\n \"description\": \"Get usage percentage for current period.\",\n \"format\": \"double\",\n \"readOnly\": true,\n \"type\": \"number\"\n },\n \"user\": {\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"created_at\",\n \"endpoint_group\",\n \"expires_at\",\n \"id\",\n \"is_active\",\n \"is_expired\",\n \"last_request_at\",\n \"status_color\",\n \"status_display\",\n \"tariff\",\n \"total_requests\",\n \"updated_at\",\n \"usage_percentage\",\n \"user\"\n ],\n \"type\": \"object\"\n },\n \"SubscriptionCreate\": {\n \"description\": \"Subscription creation serializer with service integration.\\n\\nValidates input and delegates to SubscriptionService.\",\n \"properties\": {\n \"duration_days\": {\n \"default\": 30,\n \"description\": \"Subscription duration in days\",\n \"maximum\": 365,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"endpoint_group_id\": {\n \"description\": \"Endpoint group ID (optional)\",\n \"minimum\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"tariff_id\": {\n \"description\": \"Tariff ID for the subscription\",\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"tariff_id\"\n ],\n \"type\": \"object\"\n },\n \"SubscriptionCreateRequest\": {\n \"description\": \"Subscription creation serializer with service integration.\\n\\nValidates input and delegates to SubscriptionService.\",\n \"properties\": {\n \"duration_days\": {\n \"default\": 30,\n \"description\": \"Subscription duration in days\",\n \"maximum\": 365,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"endpoint_group_id\": {\n \"description\": \"Endpoint group ID (optional)\",\n \"minimum\": 1,\n \"nullable\": true,\n \"type\": \"integer\"\n },\n \"tariff_id\": {\n \"description\": \"Tariff ID for the subscription\",\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"tariff_id\"\n ],\n \"type\": \"object\"\n },\n \"SubscriptionList\": {\n \"description\": \"Lightweight subscription serializer for lists.\\n\\nOptimized for subscription lists with minimal data.\",\n \"properties\": {\n \"created_at\": {\n \"description\": \"When this record was created\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"expires_at\": {\n \"description\": \"When this subscription expires\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"id\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"is_active\": {\n \"description\": \"Check if subscription is active and not expired.\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"is_expired\": {\n \"description\": \"Check if subscription is expired.\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"status\": {\n \"description\": \"Subscription status\\n\\n* `active` - Active\\n* `inactive` - Inactive\\n* `suspended` - Suspended\\n* `cancelled` - Cancelled\\n* `expired` - Expired\",\n \"enum\": [\n \"active\",\n \"inactive\",\n \"suspended\",\n \"cancelled\",\n \"expired\"\n ],\n \"readOnly\": true,\n \"type\": \"string\",\n \"x-spec-enum-id\": \"20d0bcc8b3c2bafa\"\n },\n \"status_display\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"tariff_name\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"user\": {\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"created_at\",\n \"expires_at\",\n \"id\",\n \"is_active\",\n \"is_expired\",\n \"status\",\n \"status_display\",\n \"tariff_name\",\n \"user\"\n ],\n \"type\": \"object\"\n },\n \"SubscriptionOverview\": {\n \"description\": \"Current subscription overview\",\n \"properties\": {\n \"cost_display\": {\n \"description\": \"Formatted cost display\",\n \"type\": \"string\"\n },\n \"days_remaining\": {\n \"description\": \"Days until expiration\",\n \"type\": \"integer\"\n },\n \"endpoint_groups\": {\n \"description\": \"List of accessible endpoint group names\",\n \"items\": {\n \"type\": \"string\"\n },\n \"type\": \"array\"\n },\n \"endpoint_groups_count\": {\n \"description\": \"Number of accessible endpoint groups\",\n \"type\": \"integer\"\n },\n \"expires_at\": {\n \"description\": \"Subscription expiration date\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"is_active\": {\n \"description\": \"Whether subscription is active\",\n \"type\": \"boolean\"\n },\n \"is_expired\": {\n \"description\": \"Whether subscription is expired\",\n \"type\": \"boolean\"\n },\n \"last_request_at\": {\n \"description\": \"Last API request timestamp\",\n \"format\": \"date-time\",\n \"nullable\": true,\n \"type\": \"string\"\n },\n \"monthly_cost_usd\": {\n \"description\": \"Monthly cost in USD\",\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"requests_per_day\": {\n \"description\": \"Daily request limit\",\n \"type\": \"integer\"\n },\n \"requests_per_hour\": {\n \"description\": \"Hourly request limit\",\n \"type\": \"integer\"\n },\n \"starts_at\": {\n \"description\": \"Subscription start date\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"status\": {\n \"description\": \"Subscription status\",\n \"type\": \"string\"\n },\n \"status_color\": {\n \"description\": \"Color for status display\",\n \"type\": \"string\"\n },\n \"status_display\": {\n \"description\": \"Human-readable status\",\n \"type\": \"string\"\n },\n \"tier\": {\n \"description\": \"Subscription tier\",\n \"type\": \"string\"\n },\n \"tier_display\": {\n \"description\": \"Human-readable tier name\",\n \"type\": \"string\"\n },\n \"total_requests\": {\n \"description\": \"Total requests made\",\n \"type\": \"integer\"\n },\n \"usage_percentage\": {\n \"description\": \"Usage percentage for current period\",\n \"format\": \"double\",\n \"type\": \"number\"\n }\n },\n \"required\": [\n \"cost_display\",\n \"days_remaining\",\n \"endpoint_groups\",\n \"endpoint_groups_count\",\n \"expires_at\",\n \"is_active\",\n \"is_expired\",\n \"last_request_at\",\n \"monthly_cost_usd\",\n \"requests_per_day\",\n \"requests_per_hour\",\n \"starts_at\",\n \"status\",\n \"status_color\",\n \"status_display\",\n \"tier\",\n \"tier_display\",\n \"total_requests\",\n \"usage_percentage\"\n ],\n \"type\": \"object\"\n },\n \"SubscriptionRequest\": {\n \"description\": \"Complete subscription serializer with full details.\\n\\nUsed for subscription detail views and updates.\",\n \"properties\": {\n \"expires_at\": {\n \"description\": \"When this subscription expires\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"status\": {\n \"description\": \"Subscription status\\n\\n* `active` - Active\\n* `inactive` - Inactive\\n* `suspended` - Suspended\\n* `cancelled` - Cancelled\\n* `expired` - Expired\",\n \"enum\": [\n \"active\",\n \"inactive\",\n \"suspended\",\n \"cancelled\",\n \"expired\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"20d0bcc8b3c2bafa\"\n },\n \"tier\": {\n \"description\": \"Subscription tier\\n\\n* `free` - Free Tier\\n* `basic` - Basic Tier\\n* `pro` - Pro Tier\\n* `enterprise` - Enterprise Tier\",\n \"enum\": [\n \"free\",\n \"basic\",\n \"pro\",\n \"enterprise\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"776e806f04431486\"\n }\n },\n \"required\": [\n \"expires_at\"\n ],\n \"type\": \"object\"\n },\n \"SuccessResponse\": {\n \"description\": \"Generic success response.\",\n \"properties\": {\n \"message\": {\n \"type\": \"string\"\n },\n \"success\": {\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"message\",\n \"success\"\n ],\n \"type\": \"object\"\n },\n \"SupportedProviders\": {\n \"description\": \"Serializer for supported providers response.\",\n \"properties\": {\n \"providers\": {\n \"description\": \"List of supported providers\"\n },\n \"success\": {\n \"description\": \"Request success status\",\n \"type\": \"boolean\"\n },\n \"timestamp\": {\n \"description\": \"Response timestamp\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"total_count\": {\n \"description\": \"Total number of providers\",\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"providers\",\n \"success\",\n \"timestamp\",\n \"total_count\"\n ],\n \"type\": \"object\"\n },\n \"Tariff\": {\n \"description\": \"Tariff serializer for subscription pricing.\\n\\nUsed for tariff information and selection.\",\n \"properties\": {\n \"created_at\": {\n \"description\": \"When this record was created\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"description\": {\n \"description\": \"Detailed description of what this tariff includes\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"endpoint_groups\": {\n \"items\": {\n \"$ref\": \"#/components/schemas/EndpointGroup\"\n },\n \"readOnly\": true,\n \"type\": \"array\"\n },\n \"endpoint_groups_count\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"id\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"is_active\": {\n \"description\": \"Whether this tariff is available for new subscriptions\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"monthly_price_usd\": {\n \"description\": \"Monthly price in USD\",\n \"format\": \"double\",\n \"readOnly\": true,\n \"type\": \"number\"\n },\n \"name\": {\n \"description\": \"Tariff name (e.g., \\u0027Free\\u0027, \\u0027Basic\\u0027, \\u0027Pro\\u0027)\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"requests_per_hour\": {\n \"description\": \"API requests allowed per hour\",\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"requests_per_month\": {\n \"description\": \"API requests allowed per month\",\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"updated_at\": {\n \"description\": \"When this record was last updated\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"created_at\",\n \"description\",\n \"endpoint_groups\",\n \"endpoint_groups_count\",\n \"id\",\n \"is_active\",\n \"monthly_price_usd\",\n \"name\",\n \"requests_per_hour\",\n \"requests_per_month\",\n \"updated_at\"\n ],\n \"type\": \"object\"\n },\n \"TaskStatistics\": {\n \"description\": \"Serializer for task statistics data.\",\n \"properties\": {\n \"error\": {\n \"description\": \"Error message if any\",\n \"type\": \"string\"\n },\n \"recent_tasks\": {\n \"description\": \"List of recent tasks\",\n \"items\": {\n \"additionalProperties\": {},\n \"type\": \"object\"\n },\n \"type\": \"array\"\n },\n \"statistics\": {\n \"additionalProperties\": {\n \"type\": \"integer\"\n },\n \"description\": \"Task count statistics\",\n \"type\": \"object\"\n },\n \"timestamp\": {\n \"description\": \"Current timestamp\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"recent_tasks\",\n \"statistics\",\n \"timestamp\"\n ],\n \"type\": \"object\"\n },\n \"TestEmailRequest\": {\n \"description\": \"Simple serializer for test email.\",\n \"properties\": {\n \"email\": {\n \"format\": \"email\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"message\": {\n \"default\": \"This is a test email from Django CFG Newsletter.\",\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"subject\": {\n \"default\": \"Django CFG Newsletter Test\",\n \"maxLength\": 255,\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"email\"\n ],\n \"type\": \"object\"\n },\n \"Ticket\": {\n \"properties\": {\n \"created_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"status\": {\n \"description\": \"* `open` - Open\\n* `waiting_for_user` - Waiting for User\\n* `waiting_for_admin` - Waiting for Admin\\n* `resolved` - Resolved\\n* `closed` - Closed\",\n \"enum\": [\n \"open\",\n \"waiting_for_user\",\n \"waiting_for_admin\",\n \"resolved\",\n \"closed\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"c21b48fabf2398aa\"\n },\n \"subject\": {\n \"maxLength\": 255,\n \"type\": \"string\"\n },\n \"unanswered_messages_count\": {\n \"description\": \"Get count of unanswered messages for this specific ticket.\",\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"user\": {\n \"type\": \"integer\"\n },\n \"uuid\": {\n \"format\": \"uuid\",\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"created_at\",\n \"subject\",\n \"unanswered_messages_count\",\n \"user\",\n \"uuid\"\n ],\n \"type\": \"object\"\n },\n \"TicketRequest\": {\n \"properties\": {\n \"status\": {\n \"description\": \"* `open` - Open\\n* `waiting_for_user` - Waiting for User\\n* `waiting_for_admin` - Waiting for Admin\\n* `resolved` - Resolved\\n* `closed` - Closed\",\n \"enum\": [\n \"open\",\n \"waiting_for_user\",\n \"waiting_for_admin\",\n \"resolved\",\n \"closed\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"c21b48fabf2398aa\"\n },\n \"subject\": {\n \"maxLength\": 255,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"user\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"subject\",\n \"user\"\n ],\n \"type\": \"object\"\n },\n \"TokenRefresh\": {\n \"properties\": {\n \"access\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"refresh\": {\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"access\",\n \"refresh\"\n ],\n \"type\": \"object\"\n },\n \"TokenRefreshRequest\": {\n \"properties\": {\n \"refresh\": {\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"refresh\"\n ],\n \"type\": \"object\"\n },\n \"Transaction\": {\n \"description\": \"Transaction serializer with full details.\\n\\nUsed for transaction history and details.\",\n \"properties\": {\n \"amount_display\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"amount_usd\": {\n \"description\": \"Transaction amount in USD (positive=credit, negative=debit)\",\n \"format\": \"double\",\n \"readOnly\": true,\n \"type\": \"number\"\n },\n \"created_at\": {\n \"description\": \"When this record was created\",\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"description\": {\n \"description\": \"Transaction description\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"id\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"is_credit\": {\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"is_debit\": {\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"metadata\": {\n \"description\": \"Additional transaction metadata\",\n \"readOnly\": true\n },\n \"payment_id\": {\n \"description\": \"Related payment ID (if applicable)\",\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"transaction_type\": {\n \"description\": \"Type of transaction\\n\\n* `deposit` - Deposit\\n* `withdrawal` - Withdrawal\\n* `payment` - Payment\\n* `refund` - Refund\\n* `fee` - Fee\\n* `bonus` - Bonus\\n* `adjustment` - Adjustment\",\n \"enum\": [\n \"deposit\",\n \"withdrawal\",\n \"payment\",\n \"refund\",\n \"fee\",\n \"bonus\",\n \"adjustment\"\n ],\n \"readOnly\": true,\n \"type\": \"string\",\n \"x-spec-enum-id\": \"25d1662d4db37694\"\n },\n \"type_color\": {\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"user\": {\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"amount_display\",\n \"amount_usd\",\n \"created_at\",\n \"description\",\n \"id\",\n \"is_credit\",\n \"is_debit\",\n \"metadata\",\n \"payment_id\",\n \"transaction_type\",\n \"type_color\",\n \"user\"\n ],\n \"type\": \"object\"\n },\n \"Unsubscribe\": {\n \"description\": \"Simple serializer for unsubscribe.\",\n \"properties\": {\n \"subscription_id\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"subscription_id\"\n ],\n \"type\": \"object\"\n },\n \"UnsubscribeRequest\": {\n \"description\": \"Simple serializer for unsubscribe.\",\n \"properties\": {\n \"subscription_id\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"subscription_id\"\n ],\n \"type\": \"object\"\n },\n \"User\": {\n \"description\": \"Serializer for user details.\",\n \"properties\": {\n \"avatar\": {\n \"format\": \"uri\",\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"company\": {\n \"maxLength\": 100,\n \"type\": \"string\"\n },\n \"date_joined\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"display_username\": {\n \"description\": \"Get formatted username for display.\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"email\": {\n \"format\": \"email\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"first_name\": {\n \"maxLength\": 50,\n \"type\": \"string\"\n },\n \"full_name\": {\n \"description\": \"Get user\\u0027s full name.\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"id\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"initials\": {\n \"description\": \"Get user\\u0027s initials for avatar fallback.\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"is_staff\": {\n \"description\": \"Designates whether the user can log into this admin site.\",\n \"readOnly\": true,\n \"title\": \"Staff status\",\n \"type\": \"boolean\"\n },\n \"is_superuser\": {\n \"description\": \"Designates that this user has all permissions without explicitly assigning them.\",\n \"readOnly\": true,\n \"title\": \"Superuser status\",\n \"type\": \"boolean\"\n },\n \"last_login\": {\n \"format\": \"date-time\",\n \"nullable\": true,\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"last_name\": {\n \"maxLength\": 50,\n \"type\": \"string\"\n },\n \"phone\": {\n \"maxLength\": 20,\n \"type\": \"string\"\n },\n \"position\": {\n \"maxLength\": 100,\n \"type\": \"string\"\n },\n \"unanswered_messages_count\": {\n \"description\": \"Get count of unanswered messages for the user.\",\n \"readOnly\": true,\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"avatar\",\n \"date_joined\",\n \"display_username\",\n \"email\",\n \"full_name\",\n \"id\",\n \"initials\",\n \"is_staff\",\n \"is_superuser\",\n \"last_login\",\n \"unanswered_messages_count\"\n ],\n \"type\": \"object\"\n },\n \"UserBalance\": {\n \"description\": \"User balance serializer with computed fields.\\n\\nProvides balance information with display helpers.\",\n \"properties\": {\n \"balance_display\": {\n \"description\": \"Formatted balance display.\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"balance_usd\": {\n \"description\": \"Current balance in USD (float for performance)\",\n \"format\": \"double\",\n \"readOnly\": true,\n \"type\": \"number\"\n },\n \"created_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"has_transactions\": {\n \"description\": \"Check if user has any transactions.\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"is_empty\": {\n \"description\": \"Check if balance is zero.\",\n \"readOnly\": true,\n \"type\": \"boolean\"\n },\n \"updated_at\": {\n \"format\": \"date-time\",\n \"readOnly\": true,\n \"type\": \"string\"\n },\n \"user\": {\n \"readOnly\": true,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"balance_display\",\n \"balance_usd\",\n \"created_at\",\n \"has_transactions\",\n \"is_empty\",\n \"updated_at\",\n \"user\"\n ],\n \"type\": \"object\"\n },\n \"UserProfileUpdateRequest\": {\n \"description\": \"Serializer for updating user profile.\",\n \"properties\": {\n \"company\": {\n \"maxLength\": 100,\n \"type\": \"string\"\n },\n \"first_name\": {\n \"maxLength\": 50,\n \"type\": \"string\"\n },\n \"last_name\": {\n \"maxLength\": 50,\n \"type\": \"string\"\n },\n \"phone\": {\n \"maxLength\": 20,\n \"type\": \"string\"\n },\n \"position\": {\n \"maxLength\": 100,\n \"type\": \"string\"\n }\n },\n \"type\": \"object\"\n },\n \"WebhookEvent\": {\n \"description\": \"Serializer for individual webhook event.\",\n \"properties\": {\n \"error_message\": {\n \"maxLength\": 500,\n \"type\": \"string\"\n },\n \"event_type\": {\n \"maxLength\": 100,\n \"type\": \"string\"\n },\n \"id\": {\n \"readOnly\": true,\n \"type\": \"integer\"\n },\n \"payload_preview\": {\n \"maxLength\": 200,\n \"type\": \"string\"\n },\n \"payload_size\": {\n \"description\": \"Size in bytes\",\n \"type\": \"integer\"\n },\n \"provider\": {\n \"maxLength\": 50,\n \"type\": \"string\"\n },\n \"response_status_code\": {\n \"type\": \"integer\"\n },\n \"response_time\": {\n \"description\": \"Response time in ms\",\n \"type\": \"integer\"\n },\n \"retry_count\": {\n \"default\": 0,\n \"type\": \"integer\"\n },\n \"status\": {\n \"description\": \"* `success` - Success\\n* `failed` - Failed\\n* `pending` - Pending\\n* `retry` - Retry\",\n \"enum\": [\n \"success\",\n \"failed\",\n \"pending\",\n \"retry\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"4f58592e564fbff7\"\n },\n \"timestamp\": {\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"webhook_url\": {\n \"format\": \"uri\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"event_type\",\n \"id\",\n \"payload_size\",\n \"provider\",\n \"response_time\",\n \"status\",\n \"timestamp\"\n ],\n \"type\": \"object\"\n },\n \"WebhookEventList\": {\n \"description\": \"Serializer for paginated webhook events list.\",\n \"properties\": {\n \"events\": {\n \"items\": {\n \"$ref\": \"#/components/schemas/WebhookEvent\"\n },\n \"type\": \"array\"\n },\n \"has_next\": {\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"type\": \"boolean\"\n },\n \"page\": {\n \"type\": \"integer\"\n },\n \"per_page\": {\n \"type\": \"integer\"\n },\n \"total\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"events\",\n \"has_next\",\n \"has_previous\",\n \"page\",\n \"per_page\",\n \"total\"\n ],\n \"type\": \"object\"\n },\n \"WebhookEventListRequest\": {\n \"description\": \"Serializer for paginated webhook events list.\",\n \"properties\": {\n \"events\": {\n \"items\": {\n \"$ref\": \"#/components/schemas/WebhookEventRequest\"\n },\n \"type\": \"array\"\n },\n \"has_next\": {\n \"type\": \"boolean\"\n },\n \"has_previous\": {\n \"type\": \"boolean\"\n },\n \"page\": {\n \"type\": \"integer\"\n },\n \"per_page\": {\n \"type\": \"integer\"\n },\n \"total\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"events\",\n \"has_next\",\n \"has_previous\",\n \"page\",\n \"per_page\",\n \"total\"\n ],\n \"type\": \"object\"\n },\n \"WebhookEventRequest\": {\n \"description\": \"Serializer for individual webhook event.\",\n \"properties\": {\n \"error_message\": {\n \"maxLength\": 500,\n \"type\": \"string\"\n },\n \"event_type\": {\n \"maxLength\": 100,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"payload_preview\": {\n \"maxLength\": 200,\n \"type\": \"string\"\n },\n \"payload_size\": {\n \"description\": \"Size in bytes\",\n \"type\": \"integer\"\n },\n \"provider\": {\n \"maxLength\": 50,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"response_status_code\": {\n \"type\": \"integer\"\n },\n \"response_time\": {\n \"description\": \"Response time in ms\",\n \"type\": \"integer\"\n },\n \"retry_count\": {\n \"default\": 0,\n \"type\": \"integer\"\n },\n \"status\": {\n \"description\": \"* `success` - Success\\n* `failed` - Failed\\n* `pending` - Pending\\n* `retry` - Retry\",\n \"enum\": [\n \"success\",\n \"failed\",\n \"pending\",\n \"retry\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"4f58592e564fbff7\"\n },\n \"timestamp\": {\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"webhook_url\": {\n \"format\": \"uri\",\n \"minLength\": 1,\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"event_type\",\n \"payload_size\",\n \"provider\",\n \"response_time\",\n \"status\",\n \"timestamp\"\n ],\n \"type\": \"object\"\n },\n \"WebhookHealth\": {\n \"description\": \"Serializer for webhook health check response.\",\n \"properties\": {\n \"providers\": {\n \"description\": \"Provider health status\"\n },\n \"status\": {\n \"description\": \"Health status\",\n \"maxLength\": 20,\n \"type\": \"string\"\n },\n \"timestamp\": {\n \"description\": \"Check timestamp\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"providers\",\n \"status\",\n \"timestamp\"\n ],\n \"type\": \"object\"\n },\n \"WebhookProviderStats\": {\n \"description\": \"Serializer for provider-specific webhook statistics.\",\n \"properties\": {\n \"failed\": {\n \"type\": \"integer\"\n },\n \"pending\": {\n \"default\": 0,\n \"type\": \"integer\"\n },\n \"success_rate\": {\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"successful\": {\n \"type\": \"integer\"\n },\n \"total\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"failed\",\n \"success_rate\",\n \"successful\",\n \"total\"\n ],\n \"type\": \"object\"\n },\n \"WebhookProviderStatsRequest\": {\n \"description\": \"Serializer for provider-specific webhook statistics.\",\n \"properties\": {\n \"failed\": {\n \"type\": \"integer\"\n },\n \"pending\": {\n \"default\": 0,\n \"type\": \"integer\"\n },\n \"success_rate\": {\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"successful\": {\n \"type\": \"integer\"\n },\n \"total\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"failed\",\n \"success_rate\",\n \"successful\",\n \"total\"\n ],\n \"type\": \"object\"\n },\n \"WebhookResponse\": {\n \"description\": \"Serializer for webhook processing response.\\n\\nStandard response format for all webhook endpoints.\",\n \"properties\": {\n \"message\": {\n \"description\": \"Processing result message\",\n \"maxLength\": 500,\n \"type\": \"string\"\n },\n \"payment_id\": {\n \"description\": \"Internal payment ID\",\n \"maxLength\": 256,\n \"type\": \"string\"\n },\n \"processed_at\": {\n \"description\": \"Processing timestamp\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"provider_payment_id\": {\n \"description\": \"Provider payment ID\",\n \"maxLength\": 256,\n \"type\": \"string\"\n },\n \"success\": {\n \"description\": \"Whether webhook was processed successfully\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"message\",\n \"success\"\n ],\n \"type\": \"object\"\n },\n \"WebhookResponseRequest\": {\n \"description\": \"Serializer for webhook processing response.\\n\\nStandard response format for all webhook endpoints.\",\n \"properties\": {\n \"message\": {\n \"description\": \"Processing result message\",\n \"maxLength\": 500,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"payment_id\": {\n \"description\": \"Internal payment ID\",\n \"maxLength\": 256,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"processed_at\": {\n \"description\": \"Processing timestamp\",\n \"format\": \"date-time\",\n \"type\": \"string\"\n },\n \"provider_payment_id\": {\n \"description\": \"Provider payment ID\",\n \"maxLength\": 256,\n \"minLength\": 1,\n \"type\": \"string\"\n },\n \"success\": {\n \"description\": \"Whether webhook was processed successfully\",\n \"type\": \"boolean\"\n }\n },\n \"required\": [\n \"message\",\n \"success\"\n ],\n \"type\": \"object\"\n },\n \"WebhookStats\": {\n \"description\": \"Serializer for comprehensive webhook statistics.\",\n \"properties\": {\n \"avg_response_time\": {\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"failed\": {\n \"type\": \"integer\"\n },\n \"last_24h\": {\n \"additionalProperties\": {\n \"type\": \"integer\"\n },\n \"description\": \"Events in last 24 hours\",\n \"type\": \"object\"\n },\n \"max_response_time\": {\n \"type\": \"integer\"\n },\n \"pending\": {\n \"type\": \"integer\"\n },\n \"providers\": {\n \"additionalProperties\": {\n \"$ref\": \"#/components/schemas/WebhookProviderStats\"\n },\n \"description\": \"Statistics by provider\",\n \"type\": \"object\"\n },\n \"success_rate\": {\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"successful\": {\n \"type\": \"integer\"\n },\n \"total\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"avg_response_time\",\n \"failed\",\n \"last_24h\",\n \"max_response_time\",\n \"pending\",\n \"providers\",\n \"success_rate\",\n \"successful\",\n \"total\"\n ],\n \"type\": \"object\"\n },\n \"WebhookStatsRequest\": {\n \"description\": \"Serializer for comprehensive webhook statistics.\",\n \"properties\": {\n \"avg_response_time\": {\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"failed\": {\n \"type\": \"integer\"\n },\n \"last_24h\": {\n \"additionalProperties\": {\n \"type\": \"integer\"\n },\n \"description\": \"Events in last 24 hours\",\n \"type\": \"object\"\n },\n \"max_response_time\": {\n \"type\": \"integer\"\n },\n \"pending\": {\n \"type\": \"integer\"\n },\n \"providers\": {\n \"additionalProperties\": {\n \"$ref\": \"#/components/schemas/WebhookProviderStatsRequest\"\n },\n \"description\": \"Statistics by provider\",\n \"type\": \"object\"\n },\n \"success_rate\": {\n \"format\": \"double\",\n \"type\": \"number\"\n },\n \"successful\": {\n \"type\": \"integer\"\n },\n \"total\": {\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"avg_response_time\",\n \"failed\",\n \"last_24h\",\n \"max_response_time\",\n \"pending\",\n \"providers\",\n \"success_rate\",\n \"successful\",\n \"total\"\n ],\n \"type\": \"object\"\n },\n \"WorkerAction\": {\n \"description\": \"Serializer for worker management actions.\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform on workers\\n\\n* `start` - start\\n* `stop` - stop\\n* `restart` - restart\",\n \"enum\": [\n \"start\",\n \"stop\",\n \"restart\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"5d2b5c38703636f1\"\n },\n \"processes\": {\n \"default\": 1,\n \"description\": \"Number of worker processes\",\n \"maximum\": 10,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"threads\": {\n \"default\": 2,\n \"description\": \"Number of threads per process\",\n \"maximum\": 20,\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"action\"\n ],\n \"type\": \"object\"\n },\n \"WorkerActionRequest\": {\n \"description\": \"Serializer for worker management actions.\",\n \"properties\": {\n \"action\": {\n \"description\": \"Action to perform on workers\\n\\n* `start` - start\\n* `stop` - stop\\n* `restart` - restart\",\n \"enum\": [\n \"start\",\n \"stop\",\n \"restart\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"5d2b5c38703636f1\"\n },\n \"processes\": {\n \"default\": 1,\n \"description\": \"Number of worker processes\",\n \"maximum\": 10,\n \"minimum\": 1,\n \"type\": \"integer\"\n },\n \"threads\": {\n \"default\": 2,\n \"description\": \"Number of threads per process\",\n \"maximum\": 20,\n \"minimum\": 1,\n \"type\": \"integer\"\n }\n },\n \"required\": [\n \"action\"\n ],\n \"type\": \"object\"\n }\n },\n \"securitySchemes\": {\n \"basicAuth\": {\n \"scheme\": \"basic\",\n \"type\": \"http\"\n },\n \"cookieAuth\": {\n \"in\": \"cookie\",\n \"name\": \"sessionid\",\n \"type\": \"apiKey\"\n },\n \"jwtAuth\": {\n \"bearerFormat\": \"JWT\",\n \"scheme\": \"bearer\",\n \"type\": \"http\"\n }\n }\n },\n \"info\": {\n \"description\": \"Complete API documentation for Django CFG sample project\",\n \"title\": \"Django CFG Sample API\",\n \"version\": \"1.0.0\",\n \"x-django-metadata\": {\n \"apps\": [\n \"django_cfg_accounts\",\n \"django_cfg_support\",\n \"django_cfg_newsletter\",\n \"django_cfg_leads\",\n \"django_cfg_agents\",\n \"tasks\",\n \"payments\"\n ],\n \"generator\": \"django-client\",\n \"generator_version\": \"1.0.0\",\n \"group\": \"cfg\"\n }\n },\n \"openapi\": \"3.0.3\",\n \"paths\": {\n \"/cfg/accounts/otp/request/\": {\n \"post\": {\n \"description\": \"Request OTP code to email or phone.\",\n \"operationId\": \"cfg_accounts_otp_request_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/OTPRequestRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/OTPRequestRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/OTPRequestRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/OTPRequestResponse\"\n }\n }\n },\n \"description\": \"\"\n },\n \"400\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/OTPErrorResponse\"\n }\n }\n },\n \"description\": \"\"\n },\n \"500\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/OTPErrorResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"tags\": [\n \"accounts\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/accounts/otp/verify/\": {\n \"post\": {\n \"description\": \"Verify OTP code and return JWT tokens.\",\n \"operationId\": \"cfg_accounts_otp_verify_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/OTPVerifyRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/OTPVerifyRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/OTPVerifyRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/OTPVerifyResponse\"\n }\n }\n },\n \"description\": \"\"\n },\n \"400\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/OTPErrorResponse\"\n }\n }\n },\n \"description\": \"\"\n },\n \"410\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/OTPErrorResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"tags\": [\n \"accounts\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/accounts/profile/\": {\n \"get\": {\n \"description\": \"Retrieve the current authenticated user\\u0027s profile information.\",\n \"operationId\": \"cfg_accounts_profile_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/User\"\n }\n }\n },\n \"description\": \"\"\n },\n \"401\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"description\": \"Authentication credentials were not provided.\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Get current user profile\",\n \"tags\": [\n \"User Profile\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/accounts/profile/avatar/\": {\n \"post\": {\n \"description\": \"Upload avatar image for the current authenticated user. Accepts multipart/form-data with \\u0027avatar\\u0027 field.\",\n \"operationId\": \"cfg_accounts_profile_avatar_create\",\n \"requestBody\": {\n \"content\": {\n \"multipart/form-data\": {\n \"schema\": {\n \"properties\": {\n \"avatar\": {\n \"description\": \"Avatar image file (JPEG, PNG, GIF, WebP, max 5MB)\",\n \"format\": \"binary\",\n \"type\": \"string\"\n }\n },\n \"required\": [\n \"avatar\"\n ],\n \"type\": \"object\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/User\"\n }\n }\n },\n \"description\": \"\"\n },\n \"400\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"description\": \"Invalid file or validation error.\"\n }\n }\n },\n \"description\": \"\"\n },\n \"401\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"description\": \"Authentication credentials were not provided.\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Upload user avatar\",\n \"tags\": [\n \"User Profile\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/accounts/profile/partial/\": {\n \"patch\": {\n \"description\": \"Partially update the current authenticated user\\u0027s profile information. Supports avatar upload.\",\n \"operationId\": \"cfg_accounts_profile_partial_partial_update\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"examples\": {\n \"ProfileUpdateWithAvatar\": {\n \"summary\": \"Profile Update with Avatar\",\n \"value\": {\n \"company\": \"Tech Corp\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"phone\": \"+1 (555) 123-4567\",\n \"position\": \"Software Engineer\"\n }\n }\n },\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedUserProfileUpdateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedUserProfileUpdateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedUserProfileUpdateRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/User\"\n }\n }\n },\n \"description\": \"\"\n },\n \"400\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"description\": \"Invalid data provided.\"\n }\n }\n },\n \"description\": \"\"\n },\n \"401\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"description\": \"Authentication credentials were not provided.\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Partial update user profile\",\n \"tags\": [\n \"User Profile\"\n ],\n \"x-async-capable\": false\n },\n \"put\": {\n \"description\": \"Partially update the current authenticated user\\u0027s profile information. Supports avatar upload.\",\n \"operationId\": \"cfg_accounts_profile_partial_update\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"examples\": {\n \"ProfileUpdateWithAvatar\": {\n \"summary\": \"Profile Update with Avatar\",\n \"value\": {\n \"company\": \"Tech Corp\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"phone\": \"+1 (555) 123-4567\",\n \"position\": \"Software Engineer\"\n }\n }\n },\n \"schema\": {\n \"$ref\": \"#/components/schemas/UserProfileUpdateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/UserProfileUpdateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/UserProfileUpdateRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/User\"\n }\n }\n },\n \"description\": \"\"\n },\n \"400\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"description\": \"Invalid data provided.\"\n }\n }\n },\n \"description\": \"\"\n },\n \"401\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"description\": \"Authentication credentials were not provided.\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Partial update user profile\",\n \"tags\": [\n \"User Profile\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/accounts/profile/update/\": {\n \"patch\": {\n \"description\": \"Update the current authenticated user\\u0027s profile information.\",\n \"operationId\": \"cfg_accounts_profile_update_partial_update\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"examples\": {\n \"ValidProfileUpdate\": {\n \"summary\": \"Valid Profile Update\",\n \"value\": {\n \"company\": \"Tech Corp\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"phone\": \"+1 (555) 123-4567\",\n \"position\": \"Software Engineer\"\n }\n }\n },\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedUserProfileUpdateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedUserProfileUpdateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedUserProfileUpdateRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/User\"\n }\n }\n },\n \"description\": \"\"\n },\n \"400\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"description\": \"Invalid data provided.\"\n }\n }\n },\n \"description\": \"\"\n },\n \"401\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"description\": \"Authentication credentials were not provided.\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Update user profile\",\n \"tags\": [\n \"User Profile\"\n ],\n \"x-async-capable\": false\n },\n \"put\": {\n \"description\": \"Update the current authenticated user\\u0027s profile information.\",\n \"operationId\": \"cfg_accounts_profile_update_update\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"examples\": {\n \"ValidProfileUpdate\": {\n \"summary\": \"Valid Profile Update\",\n \"value\": {\n \"company\": \"Tech Corp\",\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"phone\": \"+1 (555) 123-4567\",\n \"position\": \"Software Engineer\"\n }\n }\n },\n \"schema\": {\n \"$ref\": \"#/components/schemas/UserProfileUpdateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/UserProfileUpdateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/UserProfileUpdateRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/User\"\n }\n }\n },\n \"description\": \"\"\n },\n \"400\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"description\": \"Invalid data provided.\"\n }\n }\n },\n \"description\": \"\"\n },\n \"401\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"description\": \"Authentication credentials were not provided.\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Update user profile\",\n \"tags\": [\n \"User Profile\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/accounts/token/refresh/\": {\n \"post\": {\n \"description\": \"Refresh JWT token.\",\n \"operationId\": \"cfg_accounts_token_refresh_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/TokenRefreshRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/TokenRefreshRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/TokenRefreshRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/TokenRefresh\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"tags\": [\n \"Auth\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/endpoints/drf/\": {\n \"get\": {\n \"description\": \"Return endpoints status data.\",\n \"operationId\": \"cfg_endpoints_drf_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/EndpointsStatus\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"tags\": [\n \"endpoints\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/health/drf/\": {\n \"get\": {\n \"description\": \"Return comprehensive health check data.\",\n \"operationId\": \"cfg_health_drf_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/HealthCheck\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"tags\": [\n \"health\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/health/drf/quick/\": {\n \"get\": {\n \"description\": \"Return minimal health status.\",\n \"operationId\": \"cfg_health_drf_quick_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/QuickHealth\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"tags\": [\n \"health\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/leads/\": {\n \"get\": {\n \"description\": \"ViewSet for Lead model.\\n\\nProvides only submission functionality for leads from frontend forms.\",\n \"operationId\": \"cfg_leads_list\",\n \"parameters\": [\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedLeadSubmissionList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"tags\": [\n \"leads\"\n ],\n \"x-async-capable\": false\n },\n \"post\": {\n \"description\": \"ViewSet for Lead model.\\n\\nProvides only submission functionality for leads from frontend forms.\",\n \"operationId\": \"cfg_leads_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/LeadSubmissionRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/LeadSubmissionRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/LeadSubmissionRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/LeadSubmission\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"tags\": [\n \"leads\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/leads/submit/\": {\n \"post\": {\n \"description\": \"Submit a new lead from frontend contact form with automatic Telegram notifications.\",\n \"operationId\": \"cfg_leads_submit_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"examples\": {\n \"ContactFormSubmission\": {\n \"summary\": \"Contact Form Submission\",\n \"value\": {\n \"company\": \"Tech Corp\",\n \"company_site\": \"https://techcorp.com\",\n \"contact_type\": \"email\",\n \"contact_value\": \"john@example.com\",\n \"email\": \"john@example.com\",\n \"message\": \"I\\u0027m interested in discussing a potential partnership.\",\n \"name\": \"John Doe\",\n \"site_url\": \"https://mysite.com/contact\",\n \"subject\": \"Partnership Inquiry\"\n }\n }\n },\n \"schema\": {\n \"$ref\": \"#/components/schemas/LeadSubmissionRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/LeadSubmissionRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/LeadSubmissionRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/LeadSubmissionResponse\"\n }\n }\n },\n \"description\": \"\"\n },\n \"400\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/LeadSubmissionError\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"summary\": \"Submit Lead Form\",\n \"tags\": [\n \"Lead Submission\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/leads/{id}/\": {\n \"delete\": {\n \"description\": \"ViewSet for Lead model.\\n\\nProvides only submission functionality for leads from frontend forms.\",\n \"operationId\": \"cfg_leads_destroy\",\n \"parameters\": [\n {\n \"description\": \"A unique integer value identifying this Lead.\",\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"204\": {\n \"description\": \"No response body\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"tags\": [\n \"leads\"\n ],\n \"x-async-capable\": false\n },\n \"get\": {\n \"description\": \"ViewSet for Lead model.\\n\\nProvides only submission functionality for leads from frontend forms.\",\n \"operationId\": \"cfg_leads_retrieve\",\n \"parameters\": [\n {\n \"description\": \"A unique integer value identifying this Lead.\",\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/LeadSubmission\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"tags\": [\n \"leads\"\n ],\n \"x-async-capable\": false\n },\n \"patch\": {\n \"description\": \"ViewSet for Lead model.\\n\\nProvides only submission functionality for leads from frontend forms.\",\n \"operationId\": \"cfg_leads_partial_update\",\n \"parameters\": [\n {\n \"description\": \"A unique integer value identifying this Lead.\",\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedLeadSubmissionRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedLeadSubmissionRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedLeadSubmissionRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/LeadSubmission\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"tags\": [\n \"leads\"\n ],\n \"x-async-capable\": false\n },\n \"put\": {\n \"description\": \"ViewSet for Lead model.\\n\\nProvides only submission functionality for leads from frontend forms.\",\n \"operationId\": \"cfg_leads_update\",\n \"parameters\": [\n {\n \"description\": \"A unique integer value identifying this Lead.\",\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/LeadSubmissionRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/LeadSubmissionRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/LeadSubmissionRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/LeadSubmission\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"tags\": [\n \"leads\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/newsletter/bulk/\": {\n \"post\": {\n \"description\": \"Send bulk emails to multiple recipients using base email template.\",\n \"operationId\": \"cfg_newsletter_bulk_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/BulkEmailRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/BulkEmailRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/BulkEmailRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/BulkEmailResponse\"\n }\n }\n },\n \"description\": \"\"\n },\n \"400\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/BulkEmailResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Send Bulk Email\",\n \"tags\": [\n \"Bulk Email\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/newsletter/campaigns/\": {\n \"get\": {\n \"description\": \"Get a list of all newsletter campaigns.\",\n \"operationId\": \"cfg_newsletter_campaigns_list\",\n \"parameters\": [\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedNewsletterCampaignList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"List Newsletter Campaigns\",\n \"tags\": [\n \"Campaigns\"\n ],\n \"x-async-capable\": false\n },\n \"post\": {\n \"description\": \"Create a new newsletter campaign.\",\n \"operationId\": \"cfg_newsletter_campaigns_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NewsletterCampaignRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NewsletterCampaignRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NewsletterCampaignRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NewsletterCampaign\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Create Newsletter Campaign\",\n \"tags\": [\n \"Campaigns\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/newsletter/campaigns/send/\": {\n \"post\": {\n \"description\": \"Send a newsletter campaign to all subscribers.\",\n \"operationId\": \"cfg_newsletter_campaigns_send_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SendCampaignRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SendCampaignRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SendCampaignRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SendCampaignResponse\"\n }\n }\n },\n \"description\": \"\"\n },\n \"400\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/ErrorResponse\"\n }\n }\n },\n \"description\": \"\"\n },\n \"404\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/ErrorResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Send Newsletter Campaign\",\n \"tags\": [\n \"Campaigns\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/newsletter/campaigns/{id}/\": {\n \"delete\": {\n \"description\": \"Delete a newsletter campaign.\",\n \"operationId\": \"cfg_newsletter_campaigns_destroy\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"204\": {\n \"description\": \"No response body\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Delete Campaign\",\n \"tags\": [\n \"Campaigns\"\n ],\n \"x-async-capable\": false\n },\n \"get\": {\n \"description\": \"Retrieve details of a specific newsletter campaign.\",\n \"operationId\": \"cfg_newsletter_campaigns_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NewsletterCampaign\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Get Campaign Details\",\n \"tags\": [\n \"Campaigns\"\n ],\n \"x-async-capable\": false\n },\n \"patch\": {\n \"description\": \"Retrieve, update, or delete a newsletter campaign.\",\n \"operationId\": \"cfg_newsletter_campaigns_partial_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedNewsletterCampaignRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedNewsletterCampaignRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedNewsletterCampaignRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NewsletterCampaign\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"newsletter\"\n ],\n \"x-async-capable\": false\n },\n \"put\": {\n \"description\": \"Update a newsletter campaign.\",\n \"operationId\": \"cfg_newsletter_campaigns_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NewsletterCampaignRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NewsletterCampaignRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NewsletterCampaignRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/NewsletterCampaign\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Update Campaign\",\n \"tags\": [\n \"Campaigns\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/newsletter/logs/\": {\n \"get\": {\n \"description\": \"Get a list of email sending logs.\",\n \"operationId\": \"cfg_newsletter_logs_list\",\n \"parameters\": [\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedEmailLogList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"List Email Logs\",\n \"tags\": [\n \"Logs\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/newsletter/newsletters/\": {\n \"get\": {\n \"description\": \"Get a list of all active newsletters available for subscription.\",\n \"operationId\": \"cfg_newsletter_newsletters_list\",\n \"parameters\": [\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedNewsletterList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"summary\": \"List Active Newsletters\",\n \"tags\": [\n \"Newsletters\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/newsletter/newsletters/{id}/\": {\n \"get\": {\n \"description\": \"Retrieve details of a specific newsletter.\",\n \"operationId\": \"cfg_newsletter_newsletters_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Newsletter\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"summary\": \"Get Newsletter Details\",\n \"tags\": [\n \"Newsletters\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/newsletter/subscribe/\": {\n \"post\": {\n \"description\": \"Subscribe an email address to a newsletter.\",\n \"operationId\": \"cfg_newsletter_subscribe_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscribeRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscribeRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscribeRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscribeResponse\"\n }\n }\n },\n \"description\": \"\"\n },\n \"400\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/ErrorResponse\"\n }\n }\n },\n \"description\": \"\"\n },\n \"404\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/ErrorResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"summary\": \"Subscribe to Newsletter\",\n \"tags\": [\n \"Subscriptions\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/newsletter/subscriptions/\": {\n \"get\": {\n \"description\": \"Get a list of current user\\u0027s active newsletter subscriptions.\",\n \"operationId\": \"cfg_newsletter_subscriptions_list\",\n \"parameters\": [\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedNewsletterSubscriptionList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"List User Subscriptions\",\n \"tags\": [\n \"Subscriptions\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/newsletter/test/\": {\n \"post\": {\n \"description\": \"Send a test email to verify mailer configuration.\",\n \"operationId\": \"cfg_newsletter_test_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/TestEmailRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/TestEmailRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/TestEmailRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/BulkEmailResponse\"\n }\n }\n },\n \"description\": \"\"\n },\n \"400\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/BulkEmailResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"summary\": \"Test Email Sending\",\n \"tags\": [\n \"Testing\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/newsletter/unsubscribe/\": {\n \"patch\": {\n \"description\": \"Handle newsletter unsubscriptions.\",\n \"operationId\": \"cfg_newsletter_unsubscribe_partial_update\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedUnsubscribeRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedUnsubscribeRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedUnsubscribeRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Unsubscribe\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"tags\": [\n \"newsletter\"\n ],\n \"x-async-capable\": false\n },\n \"post\": {\n \"description\": \"Unsubscribe from a newsletter using subscription ID.\",\n \"operationId\": \"cfg_newsletter_unsubscribe_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/UnsubscribeRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/UnsubscribeRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/UnsubscribeRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SuccessResponse\"\n }\n }\n },\n \"description\": \"\"\n },\n \"404\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/ErrorResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"summary\": \"Unsubscribe from Newsletter\",\n \"tags\": [\n \"Subscriptions\"\n ],\n \"x-async-capable\": false\n },\n \"put\": {\n \"description\": \"Handle newsletter unsubscriptions.\",\n \"operationId\": \"cfg_newsletter_unsubscribe_update\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/UnsubscribeRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/UnsubscribeRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/UnsubscribeRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Unsubscribe\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"tags\": [\n \"newsletter\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/payments/\": {\n \"get\": {\n \"description\": \"Admin ViewSet for payment management.\\n\\nProvides full CRUD operations for payments with admin-specific features.\",\n \"operationId\": \"cfg_payments_admin_api_payments_list\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": \"currency__code\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Payment provider\\n\\n* `nowpayments` - NowPayments\",\n \"in\": \"query\",\n \"name\": \"provider\",\n \"schema\": {\n \"enum\": [\n \"nowpayments\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"47694db6bd068cb3\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"Current payment status\\n\\n* `pending` - Pending\\n* `confirming` - Confirming\\n* `confirmed` - Confirmed\\n* `completed` - Completed\\n* `failed` - Failed\\n* `expired` - Expired\\n* `cancelled` - Cancelled\\n* `refunded` - Refunded\",\n \"in\": \"query\",\n \"name\": \"status\",\n \"schema\": {\n \"enum\": [\n \"cancelled\",\n \"completed\",\n \"confirmed\",\n \"confirming\",\n \"expired\",\n \"failed\",\n \"pending\",\n \"refunded\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"59d07a8608d1bdb9\"\n }\n },\n {\n \"in\": \"query\",\n \"name\": \"user\",\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedAdminPaymentListList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"post\": {\n \"description\": \"Create payment with enhanced error handling.\",\n \"operationId\": \"cfg_payments_admin_api_payments_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentCreateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentCreateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentCreateRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentCreate\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/payments/stats/\": {\n \"get\": {\n \"description\": \"Get comprehensive payment statistics.\",\n \"operationId\": \"cfg_payments_admin_api_payments_stats_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentStats\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/payments/{id}/\": {\n \"delete\": {\n \"description\": \"Admin ViewSet for payment management.\\n\\nProvides full CRUD operations for payments with admin-specific features.\",\n \"operationId\": \"cfg_payments_admin_api_payments_destroy\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"204\": {\n \"description\": \"No response body\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"get\": {\n \"description\": \"Admin ViewSet for payment management.\\n\\nProvides full CRUD operations for payments with admin-specific features.\",\n \"operationId\": \"cfg_payments_admin_api_payments_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentDetail\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"patch\": {\n \"description\": \"Admin ViewSet for payment management.\\n\\nProvides full CRUD operations for payments with admin-specific features.\",\n \"operationId\": \"cfg_payments_admin_api_payments_partial_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedAdminPaymentUpdateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedAdminPaymentUpdateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedAdminPaymentUpdateRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentUpdate\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"put\": {\n \"description\": \"Admin ViewSet for payment management.\\n\\nProvides full CRUD operations for payments with admin-specific features.\",\n \"operationId\": \"cfg_payments_admin_api_payments_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentUpdateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentUpdateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentUpdateRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentUpdate\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/payments/{id}/cancel/\": {\n \"post\": {\n \"description\": \"Cancel a payment.\",\n \"operationId\": \"cfg_payments_admin_api_payments_cancel_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentDetail\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/payments/{id}/refresh_status/\": {\n \"post\": {\n \"description\": \"Refresh payment status from provider via AJAX.\",\n \"operationId\": \"cfg_payments_admin_api_payments_refresh_status_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentDetail\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/payments/{id}/refund/\": {\n \"post\": {\n \"description\": \"Refund a payment.\",\n \"operationId\": \"cfg_payments_admin_api_payments_refund_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentDetail\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/stats/\": {\n \"get\": {\n \"description\": \"Get overview statistics.\",\n \"operationId\": \"cfg_payments_admin_api_stats_list\",\n \"parameters\": [\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedAdminPaymentStatsList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/stats/payments/\": {\n \"get\": {\n \"description\": \"Get detailed payment statistics.\",\n \"operationId\": \"cfg_payments_admin_api_stats_payments_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentStats\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/stats/system/\": {\n \"get\": {\n \"description\": \"Get system health and performance statistics.\",\n \"operationId\": \"cfg_payments_admin_api_stats_system_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentStats\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/stats/webhooks/\": {\n \"get\": {\n \"description\": \"Get detailed webhook statistics.\",\n \"operationId\": \"cfg_payments_admin_api_stats_webhooks_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentStats\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/stats/{id}/\": {\n \"get\": {\n \"description\": \"Admin ViewSet for comprehensive system statistics.\\n\\nProvides aggregated statistics across all system components.\",\n \"operationId\": \"cfg_payments_admin_api_stats_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminPaymentStats\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/users/\": {\n \"get\": {\n \"description\": \"Override list to limit results for dropdown.\",\n \"operationId\": \"cfg_payments_admin_api_users_list\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": \"is_active\",\n \"schema\": {\n \"type\": \"boolean\"\n }\n },\n {\n \"in\": \"query\",\n \"name\": \"is_staff\",\n \"schema\": {\n \"type\": \"boolean\"\n }\n },\n {\n \"in\": \"query\",\n \"name\": \"is_superuser\",\n \"schema\": {\n \"type\": \"boolean\"\n }\n },\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedAdminUserList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/users/{id}/\": {\n \"get\": {\n \"description\": \"Admin ViewSet for user management.\\n\\nProvides read-only access to users for admin interface.\",\n \"operationId\": \"cfg_payments_admin_api_users_retrieve\",\n \"parameters\": [\n {\n \"description\": \"A unique integer value identifying this User.\",\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/AdminUser\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/webhook-test/test/\": {\n \"post\": {\n \"description\": \"Test webhook endpoint.\\n\\nSends a test webhook to the specified URL with the given event type.\\nUseful for developers to test their webhook implementations.\",\n \"operationId\": \"cfg_payments_admin_api_webhook_test_test_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookStatsRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookStatsRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookStatsRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookStats\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/webhooks/\": {\n \"get\": {\n \"description\": \"List webhook providers and configurations with real ngrok URLs.\",\n \"operationId\": \"cfg_payments_admin_api_webhooks_list\",\n \"parameters\": [\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedWebhookStatsList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/webhooks/stats/\": {\n \"get\": {\n \"description\": \"Get webhook statistics.\",\n \"operationId\": \"cfg_payments_admin_api_webhooks_stats_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookStats\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/webhooks/{id}/\": {\n \"get\": {\n \"description\": \"Admin ViewSet for webhook configuration management.\\n\\nRead-only view for webhook configurations and provider info.\\nRequires admin permissions.\",\n \"operationId\": \"cfg_payments_admin_api_webhooks_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookStats\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/webhooks/{webhook_pk}/events/\": {\n \"get\": {\n \"description\": \"List webhook events with filtering and pagination.\",\n \"operationId\": \"cfg_payments_admin_api_webhooks_events_list\",\n \"parameters\": [\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"webhook_pk\",\n \"required\": true,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedWebhookEventListList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/webhooks/{webhook_pk}/events/clear_all/\": {\n \"post\": {\n \"description\": \"Clear all webhook events.\",\n \"operationId\": \"cfg_payments_admin_api_webhooks_events_clear_all_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"webhook_pk\",\n \"required\": true,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookEventListRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookEventListRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookEventListRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookEventList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/webhooks/{webhook_pk}/events/retry_failed/\": {\n \"post\": {\n \"description\": \"Retry all failed webhook events.\",\n \"operationId\": \"cfg_payments_admin_api_webhooks_events_retry_failed_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"webhook_pk\",\n \"required\": true,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookEventListRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookEventListRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookEventListRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookEventList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/webhooks/{webhook_pk}/events/{id}/\": {\n \"get\": {\n \"description\": \"Admin ViewSet for webhook events management.\\n\\nProvides listing, filtering, and actions for webhook events.\\nRequires admin permissions.\",\n \"operationId\": \"cfg_payments_admin_api_webhooks_events_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"webhook_pk\",\n \"required\": true,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookEventList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/admin/api/webhooks/{webhook_pk}/events/{id}/retry/\": {\n \"post\": {\n \"description\": \"Retry a failed webhook event.\",\n \"operationId\": \"cfg_payments_admin_api_webhooks_events_retry_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"webhook_pk\",\n \"required\": true,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookEventListRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookEventListRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookEventListRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookEventList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/api-keys/\": {\n \"get\": {\n \"description\": \"Global API Key ViewSet: /api/api-keys/\\n\\nProvides admin-level access to all API keys with filtering and stats.\",\n \"operationId\": \"cfg_payments_api_keys_list\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": \"is_active\",\n \"schema\": {\n \"type\": \"boolean\"\n }\n },\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"query\",\n \"name\": \"user\",\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedAPIKeyListList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"post\": {\n \"description\": \"Global API Key ViewSet: /api/api-keys/\\n\\nProvides admin-level access to all API keys with filtering and stats.\",\n \"operationId\": \"cfg_payments_api_keys_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyCreateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyCreateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyCreateRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyCreate\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/api-keys/analytics/\": {\n \"get\": {\n \"description\": \"Get API key analytics.\\n\\nGET /api/api-keys/analytics/?days=30\",\n \"operationId\": \"cfg_payments_api_keys_analytics_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyDetail\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/api-keys/by_user/\": {\n \"get\": {\n \"description\": \"Get API keys grouped by user.\\n\\nGET /api/api-keys/by_user/\",\n \"operationId\": \"cfg_payments_api_keys_by_user_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyDetail\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/api-keys/create/\": {\n \"post\": {\n \"description\": \"Standalone API key creation endpoint: /api/api-keys/create/\\n\\nSimplified endpoint for API key creation.\",\n \"operationId\": \"cfg_payments_api_keys_create_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyCreateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyCreateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyCreateRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyCreate\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/api-keys/expiring_soon/\": {\n \"get\": {\n \"description\": \"Get API keys expiring soon.\\n\\nGET /api/api-keys/expiring_soon/?days=7\",\n \"operationId\": \"cfg_payments_api_keys_expiring_soon_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyDetail\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/api-keys/health/\": {\n \"get\": {\n \"description\": \"Health check for the ViewSet and related services.\\n\\nReturns service status and basic metrics.\",\n \"operationId\": \"cfg_payments_api_keys_health_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyDetail\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/api-keys/stats/\": {\n \"get\": {\n \"description\": \"Get statistics for the current queryset.\\n\\nReturns counts, aggregates, and breakdowns.\",\n \"operationId\": \"cfg_payments_api_keys_stats_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyDetail\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/api-keys/validate/\": {\n \"post\": {\n \"description\": \"Standalone endpoint to validate an API key and return key information\",\n \"operationId\": \"cfg_payments_api_keys_validate_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyValidationRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyValidationRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyValidationRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyValidationResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Validate API Key (Standalone)\",\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/api-keys/validate_key/\": {\n \"post\": {\n \"description\": \"Validate an API key and return key information\",\n \"operationId\": \"cfg_payments_api_keys_validate_key_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyValidationRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyValidationRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyValidationRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyValidationResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Validate API Key\",\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/api-keys/{id}/\": {\n \"delete\": {\n \"description\": \"Global API Key ViewSet: /api/api-keys/\\n\\nProvides admin-level access to all API keys with filtering and stats.\",\n \"operationId\": \"cfg_payments_api_keys_destroy\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"204\": {\n \"description\": \"No response body\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"get\": {\n \"description\": \"Global API Key ViewSet: /api/api-keys/\\n\\nProvides admin-level access to all API keys with filtering and stats.\",\n \"operationId\": \"cfg_payments_api_keys_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyDetail\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"patch\": {\n \"description\": \"Global API Key ViewSet: /api/api-keys/\\n\\nProvides admin-level access to all API keys with filtering and stats.\",\n \"operationId\": \"cfg_payments_api_keys_partial_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedAPIKeyUpdateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedAPIKeyUpdateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedAPIKeyUpdateRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyUpdate\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"put\": {\n \"description\": \"Global API Key ViewSet: /api/api-keys/\\n\\nProvides admin-level access to all API keys with filtering and stats.\",\n \"operationId\": \"cfg_payments_api_keys_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyUpdateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyUpdateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyUpdateRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyUpdate\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/api-keys/{id}/perform_action/\": {\n \"post\": {\n \"description\": \"Perform action on API key.\\n\\nPOST /api/api-keys/{id}/perform_action/\",\n \"operationId\": \"cfg_payments_api_keys_perform_action_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyDetail\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/balances/\": {\n \"get\": {\n \"description\": \"User balance ViewSet: /api/balances/\\n\\nRead-only access to user balances with statistics.\",\n \"operationId\": \"cfg_payments_balances_list\",\n \"parameters\": [\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"query\",\n \"name\": \"user\",\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedUserBalanceList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/balances/analytics/\": {\n \"get\": {\n \"description\": \"Get balance analytics.\\n\\nGET /api/balances/analytics/?days=30\",\n \"operationId\": \"cfg_payments_balances_analytics_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/UserBalance\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/balances/health/\": {\n \"get\": {\n \"description\": \"Health check for the ViewSet and related services.\\n\\nReturns service status and basic metrics.\",\n \"operationId\": \"cfg_payments_balances_health_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/UserBalance\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/balances/stats/\": {\n \"get\": {\n \"description\": \"Get statistics for the current queryset.\\n\\nReturns counts, aggregates, and breakdowns.\",\n \"operationId\": \"cfg_payments_balances_stats_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/UserBalance\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/balances/summary/\": {\n \"get\": {\n \"description\": \"Get balance summary for all users.\\n\\nGET /api/balances/summary/\",\n \"operationId\": \"cfg_payments_balances_summary_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/UserBalance\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/balances/{id}/\": {\n \"get\": {\n \"description\": \"User balance ViewSet: /api/balances/\\n\\nRead-only access to user balances with statistics.\",\n \"operationId\": \"cfg_payments_balances_retrieve\",\n \"parameters\": [\n {\n \"description\": \"A unique integer value identifying this User Balance.\",\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/UserBalance\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/currencies/\": {\n \"get\": {\n \"description\": \"Currency ViewSet: /api/currencies/\\n\\nRead-only access to currency information with conversion capabilities.\",\n \"operationId\": \"cfg_payments_currencies_list\",\n \"parameters\": [\n {\n \"description\": \"Type of currency\\n\\n* `fiat` - Fiat Currency\\n* `crypto` - Cryptocurrency\",\n \"in\": \"query\",\n \"name\": \"currency_type\",\n \"schema\": {\n \"enum\": [\n \"crypto\",\n \"fiat\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"1fd14ececc7d641f\"\n }\n },\n {\n \"in\": \"query\",\n \"name\": \"is_active\",\n \"schema\": {\n \"type\": \"boolean\"\n }\n },\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedCurrencyListList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"post\": {\n \"description\": \"Disable create action.\",\n \"operationId\": \"cfg_payments_currencies_create\",\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Currency\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/currencies/convert/\": {\n \"post\": {\n \"description\": \"Convert between currencies.\\n\\nPOST /api/currencies/convert/\",\n \"operationId\": \"cfg_payments_currencies_convert_create\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Currency\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/currencies/crypto/\": {\n \"get\": {\n \"description\": \"Get only cryptocurrencies.\\n\\nGET /api/currencies/crypto/\",\n \"operationId\": \"cfg_payments_currencies_crypto_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Currency\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/currencies/fiat/\": {\n \"get\": {\n \"description\": \"Get only fiat currencies.\\n\\nGET /api/currencies/fiat/\",\n \"operationId\": \"cfg_payments_currencies_fiat_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Currency\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/currencies/health/\": {\n \"get\": {\n \"description\": \"Health check for the ViewSet and related services.\\n\\nReturns service status and basic metrics.\",\n \"operationId\": \"cfg_payments_currencies_health_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Currency\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/currencies/rates/\": {\n \"get\": {\n \"description\": \"Get current exchange rates for specified currencies\",\n \"operationId\": \"cfg_payments_currencies_rates_retrieve\",\n \"parameters\": [\n {\n \"description\": \"Base currency code (e.g., USD)\",\n \"in\": \"query\",\n \"name\": \"base_currency\",\n \"required\": true,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"Comma-separated list of target currency codes (e.g., BTC,ETH,USDT)\",\n \"in\": \"query\",\n \"name\": \"currencies\",\n \"required\": true,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Currency\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Get exchange rates\",\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/currencies/stable/\": {\n \"get\": {\n \"description\": \"Get only stablecoins.\\n\\nGET /api/currencies/stable/\",\n \"operationId\": \"cfg_payments_currencies_stable_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Currency\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/currencies/stats/\": {\n \"get\": {\n \"description\": \"Get statistics for the current queryset.\\n\\nReturns counts, aggregates, and breakdowns.\",\n \"operationId\": \"cfg_payments_currencies_stats_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Currency\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/currencies/supported/\": {\n \"get\": {\n \"description\": \"Get list of supported currencies from payment providers\",\n \"operationId\": \"cfg_payments_currencies_supported_retrieve\",\n \"parameters\": [\n {\n \"description\": \"Currency type filter: crypto, fiat, or stablecoin\",\n \"in\": \"query\",\n \"name\": \"currency_type\",\n \"schema\": {\n \"enum\": [\n \"crypto\",\n \"fiat\",\n \"stablecoin\"\n ],\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"Payment provider name (e.g., nowpayments)\",\n \"in\": \"query\",\n \"name\": \"provider\",\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Currency\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Get supported currencies\",\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/currencies/{id}/\": {\n \"get\": {\n \"description\": \"Currency ViewSet: /api/currencies/\\n\\nRead-only access to currency information with conversion capabilities.\",\n \"operationId\": \"cfg_payments_currencies_retrieve\",\n \"parameters\": [\n {\n \"description\": \"A unique integer value identifying this Currency.\",\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Currency\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/currencies/{id}/networks/\": {\n \"get\": {\n \"description\": \"Get networks for specific currency.\\n\\nGET /api/currencies/{id}/networks/\",\n \"operationId\": \"cfg_payments_currencies_networks_retrieve\",\n \"parameters\": [\n {\n \"description\": \"A unique integer value identifying this Currency.\",\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Currency\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/currencies/{id}/providers/\": {\n \"get\": {\n \"description\": \"Get providers supporting specific currency.\\n\\nGET /api/currencies/{id}/providers/\",\n \"operationId\": \"cfg_payments_currencies_providers_retrieve\",\n \"parameters\": [\n {\n \"description\": \"A unique integer value identifying this Currency.\",\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Currency\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/endpoint-groups/\": {\n \"get\": {\n \"description\": \"Endpoint Group ViewSet: /api/endpoint-groups/\\n\\nRead-only access to endpoint group information.\",\n \"operationId\": \"cfg_payments_endpoint_groups_list\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": \"is_enabled\",\n \"schema\": {\n \"type\": \"boolean\"\n }\n },\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedEndpointGroupList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/endpoint-groups/available/\": {\n \"get\": {\n \"description\": \"Get available endpoint groups for subscription.\\n\\nGET /api/endpoint-groups/available/\",\n \"operationId\": \"cfg_payments_endpoint_groups_available_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/EndpointGroup\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/endpoint-groups/health/\": {\n \"get\": {\n \"description\": \"Health check for the ViewSet and related services.\\n\\nReturns service status and basic metrics.\",\n \"operationId\": \"cfg_payments_endpoint_groups_health_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/EndpointGroup\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/endpoint-groups/stats/\": {\n \"get\": {\n \"description\": \"Get statistics for the current queryset.\\n\\nReturns counts, aggregates, and breakdowns.\",\n \"operationId\": \"cfg_payments_endpoint_groups_stats_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/EndpointGroup\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/endpoint-groups/{id}/\": {\n \"get\": {\n \"description\": \"Endpoint Group ViewSet: /api/endpoint-groups/\\n\\nRead-only access to endpoint group information.\",\n \"operationId\": \"cfg_payments_endpoint_groups_retrieve\",\n \"parameters\": [\n {\n \"description\": \"A unique integer value identifying this Endpoint Group.\",\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/EndpointGroup\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/health/\": {\n \"get\": {\n \"description\": \"Health check for the ViewSet and related services.\\n\\nReturns service status and basic metrics.\",\n \"operationId\": \"cfg_payments_health_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/networks/\": {\n \"get\": {\n \"description\": \"Network ViewSet: /api/networks/\\n\\nRead-only access to blockchain network information.\",\n \"operationId\": \"cfg_payments_networks_list\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": \"is_active\",\n \"schema\": {\n \"type\": \"boolean\"\n }\n },\n {\n \"in\": \"query\",\n \"name\": \"native_currency__code\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedNetworkList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/networks/by_currency/\": {\n \"get\": {\n \"description\": \"Get networks grouped by currency.\\n\\nGET /api/networks/by_currency/\",\n \"operationId\": \"cfg_payments_networks_by_currency_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Network\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/networks/health/\": {\n \"get\": {\n \"description\": \"Health check for the ViewSet and related services.\\n\\nReturns service status and basic metrics.\",\n \"operationId\": \"cfg_payments_networks_health_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Network\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/networks/stats/\": {\n \"get\": {\n \"description\": \"Get statistics for the current queryset.\\n\\nReturns counts, aggregates, and breakdowns.\",\n \"operationId\": \"cfg_payments_networks_stats_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Network\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/networks/{id}/\": {\n \"get\": {\n \"description\": \"Network ViewSet: /api/networks/\\n\\nRead-only access to blockchain network information.\",\n \"operationId\": \"cfg_payments_networks_retrieve\",\n \"parameters\": [\n {\n \"description\": \"A unique integer value identifying this Network.\",\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Network\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/overview/dashboard/api_keys_overview/\": {\n \"get\": {\n \"description\": \"Get API keys overview\",\n \"operationId\": \"cfg_payments_overview_dashboard_api_keys_overview_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeysOverview\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"API Keys Overview\",\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/overview/dashboard/balance_overview/\": {\n \"get\": {\n \"description\": \"Get user balance overview\",\n \"operationId\": \"cfg_payments_overview_dashboard_balance_overview_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/BalanceOverview\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Balance Overview\",\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/overview/dashboard/chart_data/\": {\n \"get\": {\n \"description\": \"Get chart data for payments visualization\",\n \"operationId\": \"cfg_payments_overview_dashboard_chart_data_retrieve\",\n \"parameters\": [\n {\n \"description\": \"Time period for chart data\",\n \"in\": \"query\",\n \"name\": \"period\",\n \"schema\": {\n \"default\": \"30d\",\n \"enum\": [\n \"1y\",\n \"30d\",\n \"7d\",\n \"90d\"\n ],\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentsChartResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Payments Chart Data\",\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/overview/dashboard/metrics/\": {\n \"get\": {\n \"description\": \"Get payments dashboard metrics including balance, subscriptions, API keys, and payments\",\n \"operationId\": \"cfg_payments_overview_dashboard_metrics_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentsMetrics\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Payments Dashboard Metrics\",\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/overview/dashboard/overview/\": {\n \"get\": {\n \"description\": \"Get complete payments dashboard overview with metrics, recent payments, and analytics\",\n \"operationId\": \"cfg_payments_overview_dashboard_overview_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentsDashboardOverview\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Payments Dashboard Overview\",\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/overview/dashboard/payment_analytics/\": {\n \"get\": {\n \"description\": \"Get analytics for payments by currency and provider\",\n \"operationId\": \"cfg_payments_overview_dashboard_payment_analytics_retrieve\",\n \"parameters\": [\n {\n \"description\": \"Number of analytics items to return\",\n \"in\": \"query\",\n \"name\": \"limit\",\n \"schema\": {\n \"default\": 10,\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentAnalyticsResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Payment Analytics\",\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/overview/dashboard/recent_payments/\": {\n \"get\": {\n \"description\": \"Get recent payments for the user\",\n \"operationId\": \"cfg_payments_overview_dashboard_recent_payments_list\",\n \"parameters\": [\n {\n \"description\": \"Number of payments to return\",\n \"in\": \"query\",\n \"name\": \"limit\",\n \"schema\": {\n \"default\": 10,\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedRecentPaymentList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Recent Payments\",\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/overview/dashboard/recent_transactions/\": {\n \"get\": {\n \"description\": \"Get recent balance transactions for the user\",\n \"operationId\": \"cfg_payments_overview_dashboard_recent_transactions_list\",\n \"parameters\": [\n {\n \"description\": \"Number of transactions to return\",\n \"in\": \"query\",\n \"name\": \"limit\",\n \"schema\": {\n \"default\": 10,\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedRecentTransactionList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Recent Transactions\",\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/overview/dashboard/subscription_overview/\": {\n \"get\": {\n \"description\": \"Get current subscription overview\",\n \"operationId\": \"cfg_payments_overview_dashboard_subscription_overview_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionOverview\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Subscription Overview\",\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/payment/\": {\n \"get\": {\n \"description\": \"Global payment ViewSet: /api/v1/payments/\\n\\nProvides admin-level access to all payments with filtering and stats.\",\n \"operationId\": \"cfg_payments_payment_list\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": \"currency__code\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Payment provider\\n\\n* `nowpayments` - NowPayments\",\n \"in\": \"query\",\n \"name\": \"provider\",\n \"schema\": {\n \"enum\": [\n \"nowpayments\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"47694db6bd068cb3\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"Current payment status\\n\\n* `pending` - Pending\\n* `confirming` - Confirming\\n* `confirmed` - Confirmed\\n* `completed` - Completed\\n* `failed` - Failed\\n* `expired` - Expired\\n* `cancelled` - Cancelled\\n* `refunded` - Refunded\",\n \"in\": \"query\",\n \"name\": \"status\",\n \"schema\": {\n \"enum\": [\n \"cancelled\",\n \"completed\",\n \"confirmed\",\n \"confirming\",\n \"expired\",\n \"failed\",\n \"pending\",\n \"refunded\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"59d07a8608d1bdb9\"\n }\n },\n {\n \"in\": \"query\",\n \"name\": \"user\",\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedPaymentListList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"post\": {\n \"description\": \"Global payment ViewSet: /api/v1/payments/\\n\\nProvides admin-level access to all payments with filtering and stats.\",\n \"operationId\": \"cfg_payments_payment_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentCreateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentCreateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentCreateRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentCreate\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/payment/analytics/\": {\n \"get\": {\n \"description\": \"Get payment analytics.\\n\\nGET /api/v1/payments/analytics/?days=30\",\n \"operationId\": \"cfg_payments_payment_analytics_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/payment/by_provider/\": {\n \"get\": {\n \"description\": \"Get payments grouped by provider.\\n\\nGET /api/v1/payments/by_provider/\",\n \"operationId\": \"cfg_payments_payment_by_provider_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/payment/create/\": {\n \"post\": {\n \"description\": \"Standalone payment creation endpoint: /api/v1/payments/create/\\n\\nSimplified endpoint for payment creation without full ViewSet overhead.\",\n \"operationId\": \"cfg_payments_payment_create_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentCreateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentCreateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentCreateRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentCreate\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/payment/health/\": {\n \"get\": {\n \"description\": \"Health check for the ViewSet and related services.\\n\\nReturns service status and basic metrics.\",\n \"operationId\": \"cfg_payments_payment_health_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/payment/stats/\": {\n \"get\": {\n \"description\": \"Get statistics for the current queryset.\\n\\nReturns counts, aggregates, and breakdowns.\",\n \"operationId\": \"cfg_payments_payment_stats_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/payment/status/{id}/\": {\n \"get\": {\n \"description\": \"Standalone payment status endpoint: /api/v1/payments/{id}/status/\\n\\nQuick status check without full ViewSet overhead.\",\n \"operationId\": \"cfg_payments_payment_status_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/payment/{id}/\": {\n \"delete\": {\n \"description\": \"Global payment ViewSet: /api/v1/payments/\\n\\nProvides admin-level access to all payments with filtering and stats.\",\n \"operationId\": \"cfg_payments_payment_destroy\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"204\": {\n \"description\": \"No response body\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"get\": {\n \"description\": \"Global payment ViewSet: /api/v1/payments/\\n\\nProvides admin-level access to all payments with filtering and stats.\",\n \"operationId\": \"cfg_payments_payment_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"patch\": {\n \"description\": \"Global payment ViewSet: /api/v1/payments/\\n\\nProvides admin-level access to all payments with filtering and stats.\",\n \"operationId\": \"cfg_payments_payment_partial_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedPaymentRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedPaymentRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedPaymentRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"put\": {\n \"description\": \"Global payment ViewSet: /api/v1/payments/\\n\\nProvides admin-level access to all payments with filtering and stats.\",\n \"operationId\": \"cfg_payments_payment_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/payment/{id}/cancel/\": {\n \"post\": {\n \"description\": \"Cancel payment.\\n\\nPOST /api/v1/payments/{id}/cancel/\",\n \"operationId\": \"cfg_payments_payment_cancel_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/payment/{id}/check_status/\": {\n \"post\": {\n \"description\": \"Check payment status with provider.\\n\\nPOST /api/v1/payments/{id}/check_status/\",\n \"operationId\": \"cfg_payments_payment_check_status_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/provider-currencies/\": {\n \"get\": {\n \"description\": \"Provider Currency ViewSet: /api/provider-currencies/\\n\\nRead-only access to provider-specific currency information.\",\n \"operationId\": \"cfg_payments_provider_currencies_list\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": \"currency__code\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"query\",\n \"name\": \"is_enabled\",\n \"schema\": {\n \"type\": \"boolean\"\n }\n },\n {\n \"in\": \"query\",\n \"name\": \"network__code\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"in\": \"query\",\n \"name\": \"provider\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedProviderCurrencyList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/provider-currencies/by_provider/\": {\n \"get\": {\n \"description\": \"Get provider currencies grouped by provider\",\n \"operationId\": \"cfg_payments_provider_currencies_by_provider_retrieve\",\n \"parameters\": [\n {\n \"description\": \"Filter by payment provider (e.g., nowpayments)\",\n \"in\": \"query\",\n \"name\": \"provider\",\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/ProviderCurrency\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"summary\": \"Get provider currencies grouped by provider\",\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/provider-currencies/health/\": {\n \"get\": {\n \"description\": \"Health check for the ViewSet and related services.\\n\\nReturns service status and basic metrics.\",\n \"operationId\": \"cfg_payments_provider_currencies_health_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/ProviderCurrency\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/provider-currencies/limits/\": {\n \"get\": {\n \"description\": \"Get currency limits by provider.\\n\\nGET /api/provider-currencies/limits/?provider=nowpayments\",\n \"operationId\": \"cfg_payments_provider_currencies_limits_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/ProviderCurrency\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/provider-currencies/stats/\": {\n \"get\": {\n \"description\": \"Get statistics for the current queryset.\\n\\nReturns counts, aggregates, and breakdowns.\",\n \"operationId\": \"cfg_payments_provider_currencies_stats_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/ProviderCurrency\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/provider-currencies/{id}/\": {\n \"get\": {\n \"description\": \"Provider Currency ViewSet: /api/provider-currencies/\\n\\nRead-only access to provider-specific currency information.\",\n \"operationId\": \"cfg_payments_provider_currencies_retrieve\",\n \"parameters\": [\n {\n \"description\": \"A unique integer value identifying this Provider Currency.\",\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/ProviderCurrency\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/subscriptions/\": {\n \"get\": {\n \"description\": \"Global subscription ViewSet: /api/subscriptions/\\n\\nProvides admin-level access to all subscriptions with filtering and stats.\",\n \"operationId\": \"cfg_payments_subscriptions_list\",\n \"parameters\": [\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"Subscription status\\n\\n* `active` - Active\\n* `inactive` - Inactive\\n* `suspended` - Suspended\\n* `cancelled` - Cancelled\\n* `expired` - Expired\",\n \"in\": \"query\",\n \"name\": \"status\",\n \"schema\": {\n \"enum\": [\n \"active\",\n \"cancelled\",\n \"expired\",\n \"inactive\",\n \"suspended\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"20d0bcc8b3c2bafa\"\n }\n },\n {\n \"description\": \"Subscription tier\\n\\n* `free` - Free Tier\\n* `basic` - Basic Tier\\n* `pro` - Pro Tier\\n* `enterprise` - Enterprise Tier\",\n \"in\": \"query\",\n \"name\": \"tier\",\n \"schema\": {\n \"enum\": [\n \"basic\",\n \"enterprise\",\n \"free\",\n \"pro\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"776e806f04431486\"\n }\n },\n {\n \"in\": \"query\",\n \"name\": \"user\",\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedSubscriptionListList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"post\": {\n \"description\": \"Global subscription ViewSet: /api/subscriptions/\\n\\nProvides admin-level access to all subscriptions with filtering and stats.\",\n \"operationId\": \"cfg_payments_subscriptions_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionCreateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionCreateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionCreateRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionCreate\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/subscriptions/analytics/\": {\n \"get\": {\n \"description\": \"Get subscription analytics.\\n\\nGET /api/subscriptions/analytics/?days=30\",\n \"operationId\": \"cfg_payments_subscriptions_analytics_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/subscriptions/by_status/\": {\n \"get\": {\n \"description\": \"Get subscriptions grouped by status.\\n\\nGET /api/subscriptions/by_status/\",\n \"operationId\": \"cfg_payments_subscriptions_by_status_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/subscriptions/by_tier/\": {\n \"get\": {\n \"description\": \"Get subscriptions grouped by tier.\\n\\nGET /api/subscriptions/by_tier/\",\n \"operationId\": \"cfg_payments_subscriptions_by_tier_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/subscriptions/health/\": {\n \"get\": {\n \"description\": \"Health check for the ViewSet and related services.\\n\\nReturns service status and basic metrics.\",\n \"operationId\": \"cfg_payments_subscriptions_health_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/subscriptions/stats/\": {\n \"get\": {\n \"description\": \"Get statistics for the current queryset.\\n\\nReturns counts, aggregates, and breakdowns.\",\n \"operationId\": \"cfg_payments_subscriptions_stats_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/subscriptions/{id}/\": {\n \"delete\": {\n \"description\": \"Global subscription ViewSet: /api/subscriptions/\\n\\nProvides admin-level access to all subscriptions with filtering and stats.\",\n \"operationId\": \"cfg_payments_subscriptions_destroy\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"204\": {\n \"description\": \"No response body\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"get\": {\n \"description\": \"Global subscription ViewSet: /api/subscriptions/\\n\\nProvides admin-level access to all subscriptions with filtering and stats.\",\n \"operationId\": \"cfg_payments_subscriptions_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"patch\": {\n \"description\": \"Global subscription ViewSet: /api/subscriptions/\\n\\nProvides admin-level access to all subscriptions with filtering and stats.\",\n \"operationId\": \"cfg_payments_subscriptions_partial_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedSubscriptionRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedSubscriptionRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedSubscriptionRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"put\": {\n \"description\": \"Global subscription ViewSet: /api/subscriptions/\\n\\nProvides admin-level access to all subscriptions with filtering and stats.\",\n \"operationId\": \"cfg_payments_subscriptions_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/subscriptions/{id}/increment_usage/\": {\n \"post\": {\n \"description\": \"Increment subscription usage.\\n\\nPOST /api/subscriptions/{id}/increment_usage/\",\n \"operationId\": \"cfg_payments_subscriptions_increment_usage_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/subscriptions/{id}/update_status/\": {\n \"post\": {\n \"description\": \"Update subscription status.\\n\\nPOST /api/subscriptions/{id}/update_status/\",\n \"operationId\": \"cfg_payments_subscriptions_update_status_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/tariffs/\": {\n \"get\": {\n \"description\": \"Tariff ViewSet: /api/tariffs/\\n\\nRead-only access to tariff information for subscription selection.\",\n \"operationId\": \"cfg_payments_tariffs_list\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": \"is_active\",\n \"schema\": {\n \"type\": \"boolean\"\n }\n },\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedTariffList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/tariffs/free/\": {\n \"get\": {\n \"description\": \"Get free tariffs.\\n\\nGET /api/tariffs/free/\",\n \"operationId\": \"cfg_payments_tariffs_free_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Tariff\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/tariffs/health/\": {\n \"get\": {\n \"description\": \"Health check for the ViewSet and related services.\\n\\nReturns service status and basic metrics.\",\n \"operationId\": \"cfg_payments_tariffs_health_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Tariff\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/tariffs/paid/\": {\n \"get\": {\n \"description\": \"Get paid tariffs.\\n\\nGET /api/tariffs/paid/\",\n \"operationId\": \"cfg_payments_tariffs_paid_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Tariff\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/tariffs/stats/\": {\n \"get\": {\n \"description\": \"Get statistics for the current queryset.\\n\\nReturns counts, aggregates, and breakdowns.\",\n \"operationId\": \"cfg_payments_tariffs_stats_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Tariff\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/tariffs/{id}/\": {\n \"get\": {\n \"description\": \"Tariff ViewSet: /api/tariffs/\\n\\nRead-only access to tariff information for subscription selection.\",\n \"operationId\": \"cfg_payments_tariffs_retrieve\",\n \"parameters\": [\n {\n \"description\": \"A unique integer value identifying this Tariff.\",\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Tariff\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/tariffs/{id}/endpoint_groups/\": {\n \"get\": {\n \"description\": \"Get endpoint groups for specific tariff.\\n\\nGET /api/tariffs/{id}/endpoint_groups/\",\n \"operationId\": \"cfg_payments_tariffs_endpoint_groups_retrieve\",\n \"parameters\": [\n {\n \"description\": \"A unique integer value identifying this Tariff.\",\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Tariff\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/transactions/\": {\n \"get\": {\n \"description\": \"Transaction ViewSet: /api/transactions/\\n\\nRead-only access to transaction history with filtering.\",\n \"operationId\": \"cfg_payments_transactions_list\",\n \"parameters\": [\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"in\": \"query\",\n \"name\": \"payment_id\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"Type of transaction\\n\\n* `deposit` - Deposit\\n* `withdrawal` - Withdrawal\\n* `payment` - Payment\\n* `refund` - Refund\\n* `fee` - Fee\\n* `bonus` - Bonus\\n* `adjustment` - Adjustment\",\n \"in\": \"query\",\n \"name\": \"transaction_type\",\n \"schema\": {\n \"enum\": [\n \"adjustment\",\n \"bonus\",\n \"deposit\",\n \"fee\",\n \"payment\",\n \"refund\",\n \"withdrawal\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"25d1662d4db37694\"\n }\n },\n {\n \"in\": \"query\",\n \"name\": \"user\",\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedTransactionList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/transactions/by_type/\": {\n \"get\": {\n \"description\": \"Get transactions grouped by type.\\n\\nGET /api/transactions/by_type/\",\n \"operationId\": \"cfg_payments_transactions_by_type_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Transaction\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/transactions/health/\": {\n \"get\": {\n \"description\": \"Health check for the ViewSet and related services.\\n\\nReturns service status and basic metrics.\",\n \"operationId\": \"cfg_payments_transactions_health_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Transaction\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/transactions/recent/\": {\n \"get\": {\n \"description\": \"Get recent transactions.\\n\\nGET /api/transactions/recent/?limit=10\",\n \"operationId\": \"cfg_payments_transactions_recent_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Transaction\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/transactions/stats/\": {\n \"get\": {\n \"description\": \"Get statistics for the current queryset.\\n\\nReturns counts, aggregates, and breakdowns.\",\n \"operationId\": \"cfg_payments_transactions_stats_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Transaction\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/transactions/{id}/\": {\n \"get\": {\n \"description\": \"Transaction ViewSet: /api/transactions/\\n\\nRead-only access to transaction history with filtering.\",\n \"operationId\": \"cfg_payments_transactions_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Transaction\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/\": {\n \"get\": {\n \"description\": \"User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\\n\\nProvides user-scoped access to payments with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_list\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": \"currency__code\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Payment provider\\n\\n* `nowpayments` - NowPayments\",\n \"in\": \"query\",\n \"name\": \"provider\",\n \"schema\": {\n \"enum\": [\n \"nowpayments\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"47694db6bd068cb3\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"Current payment status\\n\\n* `pending` - Pending\\n* `confirming` - Confirming\\n* `confirmed` - Confirmed\\n* `completed` - Completed\\n* `failed` - Failed\\n* `expired` - Expired\\n* `cancelled` - Cancelled\\n* `refunded` - Refunded\",\n \"in\": \"query\",\n \"name\": \"status\",\n \"schema\": {\n \"enum\": [\n \"cancelled\",\n \"completed\",\n \"confirmed\",\n \"confirming\",\n \"expired\",\n \"failed\",\n \"pending\",\n \"refunded\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"59d07a8608d1bdb9\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedPaymentListList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"post\": {\n \"description\": \"User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\\n\\nProvides user-scoped access to payments with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentCreateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentCreateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentCreateRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentCreate\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/health/\": {\n \"get\": {\n \"description\": \"Health check for the ViewSet and related services.\\n\\nReturns service status and basic metrics.\",\n \"operationId\": \"cfg_payments_users_health_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/stats/\": {\n \"get\": {\n \"description\": \"Get statistics for the current queryset.\\n\\nReturns counts, aggregates, and breakdowns.\",\n \"operationId\": \"cfg_payments_users_stats_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/summary/\": {\n \"get\": {\n \"description\": \"Get user payment summary.\\n\\nGET /api/v1/users/{user_id}/payments/summary/\",\n \"operationId\": \"cfg_payments_users_summary_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{id}/\": {\n \"delete\": {\n \"description\": \"User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\\n\\nProvides user-scoped access to payments with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_destroy\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"204\": {\n \"description\": \"No response body\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"get\": {\n \"description\": \"User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\\n\\nProvides user-scoped access to payments with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"patch\": {\n \"description\": \"User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\\n\\nProvides user-scoped access to payments with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_partial_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedPaymentRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedPaymentRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedPaymentRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"put\": {\n \"description\": \"User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\\n\\nProvides user-scoped access to payments with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{id}/cancel/\": {\n \"post\": {\n \"description\": \"Cancel payment.\\n\\nPOST /api/v1/users/{user_id}/payments/{id}/cancel/\",\n \"operationId\": \"cfg_payments_users_cancel_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{id}/check_status/\": {\n \"post\": {\n \"description\": \"Check payment status with provider.\\n\\nPOST /api/v1/users/{user_id}/payments/{id}/check_status/\",\n \"operationId\": \"cfg_payments_users_check_status_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/api-keys/\": {\n \"get\": {\n \"description\": \"User-specific API Key ViewSet: /api/users/{user_id}/api-keys/\\n\\nProvides user-scoped access to API keys with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_api_keys_list\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": \"is_active\",\n \"schema\": {\n \"type\": \"boolean\"\n }\n },\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this API key\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedAPIKeyListList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"post\": {\n \"description\": \"User-specific API Key ViewSet: /api/users/{user_id}/api-keys/\\n\\nProvides user-scoped access to API keys with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_api_keys_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this API key\",\n \"type\": \"integer\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyCreateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyCreateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyCreateRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyCreate\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/api-keys/active/\": {\n \"get\": {\n \"description\": \"Get user\\u0027s active API keys.\\n\\nGET /api/users/{user_id}/api-keys/active/\",\n \"operationId\": \"cfg_payments_users_api_keys_active_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this API key\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyDetail\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/api-keys/health/\": {\n \"get\": {\n \"description\": \"Health check for the ViewSet and related services.\\n\\nReturns service status and basic metrics.\",\n \"operationId\": \"cfg_payments_users_api_keys_health_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this API key\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyDetail\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/api-keys/stats/\": {\n \"get\": {\n \"description\": \"Get statistics for the current queryset.\\n\\nReturns counts, aggregates, and breakdowns.\",\n \"operationId\": \"cfg_payments_users_api_keys_stats_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this API key\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyDetail\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/api-keys/summary/\": {\n \"get\": {\n \"description\": \"Get user API key summary.\\n\\nGET /api/users/{user_id}/api-keys/summary/\",\n \"operationId\": \"cfg_payments_users_api_keys_summary_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this API key\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyDetail\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/api-keys/{id}/\": {\n \"delete\": {\n \"description\": \"User-specific API Key ViewSet: /api/users/{user_id}/api-keys/\\n\\nProvides user-scoped access to API keys with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_api_keys_destroy\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this API key\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"204\": {\n \"description\": \"No response body\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"get\": {\n \"description\": \"User-specific API Key ViewSet: /api/users/{user_id}/api-keys/\\n\\nProvides user-scoped access to API keys with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_api_keys_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this API key\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyDetail\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"patch\": {\n \"description\": \"User-specific API Key ViewSet: /api/users/{user_id}/api-keys/\\n\\nProvides user-scoped access to API keys with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_api_keys_partial_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this API key\",\n \"type\": \"integer\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedAPIKeyUpdateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedAPIKeyUpdateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedAPIKeyUpdateRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyUpdate\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"put\": {\n \"description\": \"User-specific API Key ViewSet: /api/users/{user_id}/api-keys/\\n\\nProvides user-scoped access to API keys with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_api_keys_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this API key\",\n \"type\": \"integer\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyUpdateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyUpdateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyUpdateRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyUpdate\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/api-keys/{id}/perform_action/\": {\n \"post\": {\n \"description\": \"Perform action on API key.\\n\\nPOST /api/users/{user_id}/api-keys/{id}/perform_action/\",\n \"operationId\": \"cfg_payments_users_api_keys_perform_action_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this API key\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIKeyDetail\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/payment/\": {\n \"get\": {\n \"description\": \"User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\\n\\nProvides user-scoped access to payments with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_payment_list\",\n \"parameters\": [\n {\n \"in\": \"query\",\n \"name\": \"currency__code\",\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Payment provider\\n\\n* `nowpayments` - NowPayments\",\n \"in\": \"query\",\n \"name\": \"provider\",\n \"schema\": {\n \"enum\": [\n \"nowpayments\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"47694db6bd068cb3\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"Current payment status\\n\\n* `pending` - Pending\\n* `confirming` - Confirming\\n* `confirmed` - Confirmed\\n* `completed` - Completed\\n* `failed` - Failed\\n* `expired` - Expired\\n* `cancelled` - Cancelled\\n* `refunded` - Refunded\",\n \"in\": \"query\",\n \"name\": \"status\",\n \"schema\": {\n \"enum\": [\n \"cancelled\",\n \"completed\",\n \"confirmed\",\n \"confirming\",\n \"expired\",\n \"failed\",\n \"pending\",\n \"refunded\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"59d07a8608d1bdb9\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who created this payment\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedPaymentListList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"post\": {\n \"description\": \"User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\\n\\nProvides user-scoped access to payments with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_payment_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who created this payment\",\n \"type\": \"integer\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentCreateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentCreateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentCreateRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentCreate\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/payment/health/\": {\n \"get\": {\n \"description\": \"Health check for the ViewSet and related services.\\n\\nReturns service status and basic metrics.\",\n \"operationId\": \"cfg_payments_users_payment_health_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who created this payment\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/payment/stats/\": {\n \"get\": {\n \"description\": \"Get statistics for the current queryset.\\n\\nReturns counts, aggregates, and breakdowns.\",\n \"operationId\": \"cfg_payments_users_payment_stats_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who created this payment\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/payment/summary/\": {\n \"get\": {\n \"description\": \"Get user payment summary.\\n\\nGET /api/v1/users/{user_id}/payments/summary/\",\n \"operationId\": \"cfg_payments_users_payment_summary_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who created this payment\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/payment/{id}/\": {\n \"delete\": {\n \"description\": \"User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\\n\\nProvides user-scoped access to payments with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_payment_destroy\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who created this payment\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"204\": {\n \"description\": \"No response body\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"get\": {\n \"description\": \"User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\\n\\nProvides user-scoped access to payments with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_payment_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who created this payment\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"patch\": {\n \"description\": \"User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\\n\\nProvides user-scoped access to payments with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_payment_partial_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who created this payment\",\n \"type\": \"integer\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedPaymentRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedPaymentRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedPaymentRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"put\": {\n \"description\": \"User-specific payment ViewSet: /api/v1/users/{user_id}/payments/\\n\\nProvides user-scoped access to payments with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_payment_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who created this payment\",\n \"type\": \"integer\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/payment/{id}/cancel/\": {\n \"post\": {\n \"description\": \"Cancel payment.\\n\\nPOST /api/v1/users/{user_id}/payments/{id}/cancel/\",\n \"operationId\": \"cfg_payments_users_payment_cancel_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who created this payment\",\n \"type\": \"integer\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/payment/{id}/check_status/\": {\n \"post\": {\n \"description\": \"Check payment status with provider.\\n\\nPOST /api/v1/users/{user_id}/payments/{id}/check_status/\",\n \"operationId\": \"cfg_payments_users_payment_check_status_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who created this payment\",\n \"type\": \"integer\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaymentRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Payment\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/subscriptions/\": {\n \"get\": {\n \"description\": \"User-specific subscription ViewSet: /api/users/{user_id}/subscriptions/\\n\\nProvides user-scoped access to subscriptions with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_subscriptions_list\",\n \"parameters\": [\n {\n \"description\": \"Which field to use when ordering the results.\",\n \"in\": \"query\",\n \"name\": \"ordering\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"A search term.\",\n \"in\": \"query\",\n \"name\": \"search\",\n \"required\": false,\n \"schema\": {\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"Subscription status\\n\\n* `active` - Active\\n* `inactive` - Inactive\\n* `suspended` - Suspended\\n* `cancelled` - Cancelled\\n* `expired` - Expired\",\n \"in\": \"query\",\n \"name\": \"status\",\n \"schema\": {\n \"enum\": [\n \"active\",\n \"cancelled\",\n \"expired\",\n \"inactive\",\n \"suspended\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"20d0bcc8b3c2bafa\"\n }\n },\n {\n \"description\": \"Subscription tier\\n\\n* `free` - Free Tier\\n* `basic` - Basic Tier\\n* `pro` - Pro Tier\\n* `enterprise` - Enterprise Tier\",\n \"in\": \"query\",\n \"name\": \"tier\",\n \"schema\": {\n \"enum\": [\n \"basic\",\n \"enterprise\",\n \"free\",\n \"pro\"\n ],\n \"type\": \"string\",\n \"x-spec-enum-id\": \"776e806f04431486\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this subscription\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedSubscriptionListList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"post\": {\n \"description\": \"User-specific subscription ViewSet: /api/users/{user_id}/subscriptions/\\n\\nProvides user-scoped access to subscriptions with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_subscriptions_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this subscription\",\n \"type\": \"integer\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionCreateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionCreateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionCreateRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionCreate\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/subscriptions/active/\": {\n \"get\": {\n \"description\": \"Get user\\u0027s active subscription.\\n\\nGET /api/users/{user_id}/subscriptions/active/\",\n \"operationId\": \"cfg_payments_users_subscriptions_active_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this subscription\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/subscriptions/health/\": {\n \"get\": {\n \"description\": \"Health check for the ViewSet and related services.\\n\\nReturns service status and basic metrics.\",\n \"operationId\": \"cfg_payments_users_subscriptions_health_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this subscription\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/subscriptions/stats/\": {\n \"get\": {\n \"description\": \"Get statistics for the current queryset.\\n\\nReturns counts, aggregates, and breakdowns.\",\n \"operationId\": \"cfg_payments_users_subscriptions_stats_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this subscription\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/subscriptions/summary/\": {\n \"get\": {\n \"description\": \"Get user subscription summary.\\n\\nGET /api/users/{user_id}/subscriptions/summary/\",\n \"operationId\": \"cfg_payments_users_subscriptions_summary_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this subscription\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/subscriptions/{id}/\": {\n \"delete\": {\n \"description\": \"User-specific subscription ViewSet: /api/users/{user_id}/subscriptions/\\n\\nProvides user-scoped access to subscriptions with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_subscriptions_destroy\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this subscription\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"204\": {\n \"description\": \"No response body\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"get\": {\n \"description\": \"User-specific subscription ViewSet: /api/users/{user_id}/subscriptions/\\n\\nProvides user-scoped access to subscriptions with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_subscriptions_retrieve\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this subscription\",\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"patch\": {\n \"description\": \"User-specific subscription ViewSet: /api/users/{user_id}/subscriptions/\\n\\nProvides user-scoped access to subscriptions with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_subscriptions_partial_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this subscription\",\n \"type\": \"integer\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedSubscriptionRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedSubscriptionRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedSubscriptionRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n },\n \"put\": {\n \"description\": \"User-specific subscription ViewSet: /api/users/{user_id}/subscriptions/\\n\\nProvides user-scoped access to subscriptions with full CRUD operations.\",\n \"operationId\": \"cfg_payments_users_subscriptions_update\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this subscription\",\n \"type\": \"integer\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/subscriptions/{id}/increment_usage/\": {\n \"post\": {\n \"description\": \"Increment subscription usage.\\n\\nPOST /api/users/{user_id}/subscriptions/{id}/increment_usage/\",\n \"operationId\": \"cfg_payments_users_subscriptions_increment_usage_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this subscription\",\n \"type\": \"integer\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/users/{user_pk}/subscriptions/{id}/update_status/\": {\n \"post\": {\n \"description\": \"Update subscription status.\\n\\nPOST /api/users/{user_id}/subscriptions/{id}/update_status/\",\n \"operationId\": \"cfg_payments_users_subscriptions_update_status_create\",\n \"parameters\": [\n {\n \"in\": \"path\",\n \"name\": \"id\",\n \"required\": true,\n \"schema\": {\n \"description\": \"Unique identifier for this record\",\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"in\": \"path\",\n \"name\": \"user_pk\",\n \"required\": true,\n \"schema\": {\n \"description\": \"User who owns this subscription\",\n \"type\": \"integer\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SubscriptionRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Subscription\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"payments\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/webhooks/health/\": {\n \"get\": {\n \"description\": \"Check webhook service health status and recent activity metrics\",\n \"operationId\": \"cfg_payments_webhooks_health_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookHealth\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"summary\": \"Webhook Health Check\",\n \"tags\": [\n \"Webhooks\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/webhooks/providers/\": {\n \"get\": {\n \"description\": \"Get list of supported webhook providers with configuration details\",\n \"operationId\": \"cfg_payments_webhooks_providers_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/SupportedProviders\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"summary\": \"Supported Webhook Providers\",\n \"tags\": [\n \"Webhooks\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/webhooks/stats/\": {\n \"get\": {\n \"description\": \"Get webhook processing statistics for a given time period\",\n \"operationId\": \"cfg_payments_webhooks_stats_retrieve\",\n \"parameters\": [\n {\n \"description\": \"Number of days to analyze (1-365)\",\n \"in\": \"query\",\n \"name\": \"days\",\n \"schema\": {\n \"default\": 30,\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookStats\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"summary\": \"Webhook Statistics\",\n \"tags\": [\n \"Webhooks\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/payments/webhooks/{provider}/\": {\n \"get\": {\n \"description\": \"Get webhook endpoint information for debugging and configuration\",\n \"operationId\": \"cfg_payments_webhooks_retrieve\",\n \"parameters\": [\n {\n \"description\": \"Payment provider name\",\n \"in\": \"path\",\n \"name\": \"provider\",\n \"required\": true,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"summary\": \"Webhook Endpoint Info\",\n \"tags\": [\n \"Webhooks\"\n ],\n \"x-async-capable\": false\n },\n \"post\": {\n \"description\": \"Process incoming webhook from payment provider\",\n \"operationId\": \"cfg_payments_webhooks_create\",\n \"parameters\": [\n {\n \"description\": \"Payment provider name (nowpayments, stripe, etc.)\",\n \"in\": \"path\",\n \"name\": \"provider\",\n \"required\": true,\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookResponseRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookResponseRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookResponseRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WebhookResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n },\n {}\n ],\n \"summary\": \"Process Webhook\",\n \"tags\": [\n \"Webhooks\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/support/tickets/\": {\n \"get\": {\n \"description\": \"ViewSet for managing support tickets.\",\n \"operationId\": \"cfg_support_tickets_list\",\n \"parameters\": [\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedTicketList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"support\"\n ],\n \"x-async-capable\": false\n },\n \"post\": {\n \"description\": \"ViewSet for managing support tickets.\",\n \"operationId\": \"cfg_support_tickets_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/TicketRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/TicketRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/TicketRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Ticket\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"support\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/support/tickets/{ticket_uuid}/messages/\": {\n \"get\": {\n \"description\": \"ViewSet for managing support messages.\",\n \"operationId\": \"cfg_support_tickets_messages_list\",\n \"parameters\": [\n {\n \"description\": \"A page number within the paginated result set.\",\n \"in\": \"query\",\n \"name\": \"page\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"Number of results to return per page.\",\n \"in\": \"query\",\n \"name\": \"page_size\",\n \"required\": false,\n \"schema\": {\n \"type\": \"integer\"\n }\n },\n {\n \"description\": \"UUID of the ticket\",\n \"in\": \"path\",\n \"name\": \"ticket_uuid\",\n \"required\": true,\n \"schema\": {\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PaginatedMessageList\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"support\"\n ],\n \"x-async-capable\": false\n },\n \"post\": {\n \"description\": \"ViewSet for managing support messages.\",\n \"operationId\": \"cfg_support_tickets_messages_create\",\n \"parameters\": [\n {\n \"description\": \"UUID of the ticket\",\n \"in\": \"path\",\n \"name\": \"ticket_uuid\",\n \"required\": true,\n \"schema\": {\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/MessageCreateRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/MessageCreateRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/MessageCreateRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"201\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/MessageCreate\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"support\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/support/tickets/{ticket_uuid}/messages/{uuid}/\": {\n \"delete\": {\n \"description\": \"ViewSet for managing support messages.\",\n \"operationId\": \"cfg_support_tickets_messages_destroy\",\n \"parameters\": [\n {\n \"description\": \"UUID of the ticket\",\n \"in\": \"path\",\n \"name\": \"ticket_uuid\",\n \"required\": true,\n \"schema\": {\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"UUID of the message\",\n \"in\": \"path\",\n \"name\": \"uuid\",\n \"required\": true,\n \"schema\": {\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"204\": {\n \"description\": \"No response body\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"support\"\n ],\n \"x-async-capable\": false\n },\n \"get\": {\n \"description\": \"ViewSet for managing support messages.\",\n \"operationId\": \"cfg_support_tickets_messages_retrieve\",\n \"parameters\": [\n {\n \"description\": \"UUID of the ticket\",\n \"in\": \"path\",\n \"name\": \"ticket_uuid\",\n \"required\": true,\n \"schema\": {\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"UUID of the message\",\n \"in\": \"path\",\n \"name\": \"uuid\",\n \"required\": true,\n \"schema\": {\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Message\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"support\"\n ],\n \"x-async-capable\": false\n },\n \"patch\": {\n \"description\": \"ViewSet for managing support messages.\",\n \"operationId\": \"cfg_support_tickets_messages_partial_update\",\n \"parameters\": [\n {\n \"description\": \"UUID of the ticket\",\n \"in\": \"path\",\n \"name\": \"ticket_uuid\",\n \"required\": true,\n \"schema\": {\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"UUID of the message\",\n \"in\": \"path\",\n \"name\": \"uuid\",\n \"required\": true,\n \"schema\": {\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedMessageRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedMessageRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedMessageRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Message\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"support\"\n ],\n \"x-async-capable\": false\n },\n \"put\": {\n \"description\": \"ViewSet for managing support messages.\",\n \"operationId\": \"cfg_support_tickets_messages_update\",\n \"parameters\": [\n {\n \"description\": \"UUID of the ticket\",\n \"in\": \"path\",\n \"name\": \"ticket_uuid\",\n \"required\": true,\n \"schema\": {\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n },\n {\n \"description\": \"UUID of the message\",\n \"in\": \"path\",\n \"name\": \"uuid\",\n \"required\": true,\n \"schema\": {\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/MessageRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/MessageRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/MessageRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Message\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"support\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/support/tickets/{uuid}/\": {\n \"delete\": {\n \"description\": \"ViewSet for managing support tickets.\",\n \"operationId\": \"cfg_support_tickets_destroy\",\n \"parameters\": [\n {\n \"description\": \"A UUID string identifying this ticket.\",\n \"in\": \"path\",\n \"name\": \"uuid\",\n \"required\": true,\n \"schema\": {\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"204\": {\n \"description\": \"No response body\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"support\"\n ],\n \"x-async-capable\": false\n },\n \"get\": {\n \"description\": \"ViewSet for managing support tickets.\",\n \"operationId\": \"cfg_support_tickets_retrieve\",\n \"parameters\": [\n {\n \"description\": \"A UUID string identifying this ticket.\",\n \"in\": \"path\",\n \"name\": \"uuid\",\n \"required\": true,\n \"schema\": {\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Ticket\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"support\"\n ],\n \"x-async-capable\": false\n },\n \"patch\": {\n \"description\": \"ViewSet for managing support tickets.\",\n \"operationId\": \"cfg_support_tickets_partial_update\",\n \"parameters\": [\n {\n \"description\": \"A UUID string identifying this ticket.\",\n \"in\": \"path\",\n \"name\": \"uuid\",\n \"required\": true,\n \"schema\": {\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedTicketRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedTicketRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/PatchedTicketRequest\"\n }\n }\n }\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Ticket\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"support\"\n ],\n \"x-async-capable\": false\n },\n \"put\": {\n \"description\": \"ViewSet for managing support tickets.\",\n \"operationId\": \"cfg_support_tickets_update\",\n \"parameters\": [\n {\n \"description\": \"A UUID string identifying this ticket.\",\n \"in\": \"path\",\n \"name\": \"uuid\",\n \"required\": true,\n \"schema\": {\n \"format\": \"uuid\",\n \"type\": \"string\"\n }\n }\n ],\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/TicketRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/TicketRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/TicketRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Ticket\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"jwtAuth\": []\n },\n {\n \"cookieAuth\": []\n }\n ],\n \"tags\": [\n \"support\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/tasks/api/clear-queues/\": {\n \"post\": {\n \"description\": \"Clear all tasks from all Dramatiq queues.\",\n \"operationId\": \"cfg_tasks_api_clear_queues_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponseRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponseRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponseRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"cookieAuth\": []\n },\n {\n \"basicAuth\": []\n }\n ],\n \"tags\": [\n \"tasks\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/tasks/api/clear/\": {\n \"post\": {\n \"description\": \"Clear all test data from Redis.\",\n \"operationId\": \"cfg_tasks_api_clear_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponseRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponseRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponseRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"cookieAuth\": []\n },\n {\n \"basicAuth\": []\n }\n ],\n \"tags\": [\n \"tasks\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/tasks/api/purge-failed/\": {\n \"post\": {\n \"description\": \"Purge all failed tasks from queues.\",\n \"operationId\": \"cfg_tasks_api_purge_failed_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponseRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponseRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponseRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"cookieAuth\": []\n },\n {\n \"basicAuth\": []\n }\n ],\n \"tags\": [\n \"tasks\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/tasks/api/queues/manage/\": {\n \"post\": {\n \"description\": \"Manage queue operations (clear, purge, etc.).\",\n \"operationId\": \"cfg_tasks_api_queues_manage_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/QueueActionRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/QueueActionRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/QueueActionRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/QueueAction\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"cookieAuth\": []\n },\n {\n \"basicAuth\": []\n }\n ],\n \"tags\": [\n \"tasks\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/tasks/api/queues/status/\": {\n \"get\": {\n \"description\": \"Get current status of all queues.\",\n \"operationId\": \"cfg_tasks_api_queues_status_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/QueueStatus\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"cookieAuth\": []\n },\n {\n \"basicAuth\": []\n }\n ],\n \"tags\": [\n \"tasks\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/tasks/api/simulate/\": {\n \"post\": {\n \"description\": \"Simulate test data for dashboard testing.\",\n \"operationId\": \"cfg_tasks_api_simulate_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponseRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponseRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponseRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"cookieAuth\": []\n },\n {\n \"basicAuth\": []\n }\n ],\n \"tags\": [\n \"tasks\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/tasks/api/tasks/list/\": {\n \"get\": {\n \"description\": \"Get paginated task list with filtering.\",\n \"operationId\": \"cfg_tasks_api_tasks_list_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"cookieAuth\": []\n },\n {\n \"basicAuth\": []\n }\n ],\n \"tags\": [\n \"tasks\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/tasks/api/tasks/stats/\": {\n \"get\": {\n \"description\": \"Get task execution statistics.\",\n \"operationId\": \"cfg_tasks_api_tasks_stats_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/TaskStatistics\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"cookieAuth\": []\n },\n {\n \"basicAuth\": []\n }\n ],\n \"tags\": [\n \"tasks\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/tasks/api/workers/list/\": {\n \"get\": {\n \"description\": \"Get detailed list of workers.\",\n \"operationId\": \"cfg_tasks_api_workers_list_retrieve\",\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/APIResponse\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"cookieAuth\": []\n },\n {\n \"basicAuth\": []\n }\n ],\n \"tags\": [\n \"tasks\"\n ],\n \"x-async-capable\": false\n }\n },\n \"/cfg/tasks/api/workers/manage/\": {\n \"post\": {\n \"description\": \"Manage worker operations.\",\n \"operationId\": \"cfg_tasks_api_workers_manage_create\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WorkerActionRequest\"\n }\n },\n \"application/x-www-form-urlencoded\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WorkerActionRequest\"\n }\n },\n \"multipart/form-data\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WorkerActionRequest\"\n }\n }\n },\n \"required\": true\n },\n \"responses\": {\n \"200\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/WorkerAction\"\n }\n }\n },\n \"description\": \"\"\n }\n },\n \"security\": [\n {\n \"cookieAuth\": []\n },\n {\n \"basicAuth\": []\n }\n ],\n \"tags\": [\n \"tasks\"\n ],\n \"x-async-capable\": false\n }\n }\n }\n};","/**\n * Storage adapters for cross-platform token storage.\n *\n * Supports:\n * - LocalStorage (browser)\n * - Cookies (SSR/browser)\n * - Memory (Node.js/Electron/testing)\n */\n\nimport type { APILogger } from './logger';\n\n/**\n * Storage adapter interface for cross-platform token storage.\n */\nexport interface StorageAdapter {\n getItem(key: string): string | null;\n setItem(key: string, value: string): void;\n removeItem(key: string): void;\n}\n\n/**\n * LocalStorage adapter with safe try-catch for browser environments.\n * Works in modern browsers with localStorage support.\n */\nexport class LocalStorageAdapter implements StorageAdapter {\n private logger?: APILogger;\n\n constructor(logger?: APILogger) {\n this.logger = logger;\n }\n\n getItem(key: string): string | null {\n try {\n if (typeof window !== 'undefined' && window.localStorage) {\n const value = localStorage.getItem(key);\n this.logger?.debug(`LocalStorage.getItem(\"${key}\"): ${value ? 'found' : 'not found'}`);\n return value;\n }\n this.logger?.warn('LocalStorage not available: window.localStorage is undefined');\n } catch (error) {\n this.logger?.error('LocalStorage.getItem failed:', error);\n }\n return null;\n }\n\n setItem(key: string, value: string): void {\n try {\n if (typeof window !== 'undefined' && window.localStorage) {\n localStorage.setItem(key, value);\n this.logger?.debug(`LocalStorage.setItem(\"${key}\"): success`);\n } else {\n this.logger?.warn('LocalStorage not available: window.localStorage is undefined');\n }\n } catch (error) {\n this.logger?.error('LocalStorage.setItem failed:', error);\n }\n }\n\n removeItem(key: string): void {\n try {\n if (typeof window !== 'undefined' && window.localStorage) {\n localStorage.removeItem(key);\n this.logger?.debug(`LocalStorage.removeItem(\"${key}\"): success`);\n } else {\n this.logger?.warn('LocalStorage not available: window.localStorage is undefined');\n }\n } catch (error) {\n this.logger?.error('LocalStorage.removeItem failed:', error);\n }\n }\n}\n\n/**\n * Cookie-based storage adapter for SSR and browser environments.\n * Useful for Next.js, Nuxt.js, and other SSR frameworks.\n */\nexport class CookieStorageAdapter implements StorageAdapter {\n private logger?: APILogger;\n\n constructor(logger?: APILogger) {\n this.logger = logger;\n }\n\n getItem(key: string): string | null {\n try {\n if (typeof document === 'undefined') {\n this.logger?.warn('Cookies not available: document is undefined (SSR context?)');\n return null;\n }\n const value = `; ${document.cookie}`;\n const parts = value.split(`; ${key}=`);\n if (parts.length === 2) {\n const result = parts.pop()?.split(';').shift() || null;\n this.logger?.debug(`CookieStorage.getItem(\"${key}\"): ${result ? 'found' : 'not found'}`);\n return result;\n }\n this.logger?.debug(`CookieStorage.getItem(\"${key}\"): not found`);\n } catch (error) {\n this.logger?.error('CookieStorage.getItem failed:', error);\n }\n return null;\n }\n\n setItem(key: string, value: string): void {\n try {\n if (typeof document !== 'undefined') {\n document.cookie = `${key}=${value}; path=/; max-age=31536000`;\n this.logger?.debug(`CookieStorage.setItem(\"${key}\"): success`);\n } else {\n this.logger?.warn('Cookies not available: document is undefined (SSR context?)');\n }\n } catch (error) {\n this.logger?.error('CookieStorage.setItem failed:', error);\n }\n }\n\n removeItem(key: string): void {\n try {\n if (typeof document !== 'undefined') {\n document.cookie = `${key}=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT`;\n this.logger?.debug(`CookieStorage.removeItem(\"${key}\"): success`);\n } else {\n this.logger?.warn('Cookies not available: document is undefined (SSR context?)');\n }\n } catch (error) {\n this.logger?.error('CookieStorage.removeItem failed:', error);\n }\n }\n}\n\n/**\n * In-memory storage adapter for Node.js, Electron, and testing environments.\n * Data is stored in RAM and cleared when process exits.\n */\nexport class MemoryStorageAdapter implements StorageAdapter {\n private storage: Map<string, string> = new Map();\n private logger?: APILogger;\n\n constructor(logger?: APILogger) {\n this.logger = logger;\n }\n\n getItem(key: string): string | null {\n const value = this.storage.get(key) || null;\n this.logger?.debug(`MemoryStorage.getItem(\"${key}\"): ${value ? 'found' : 'not found'}`);\n return value;\n }\n\n setItem(key: string, value: string): void {\n this.storage.set(key, value);\n this.logger?.debug(`MemoryStorage.setItem(\"${key}\"): success`);\n }\n\n removeItem(key: string): void {\n this.storage.delete(key);\n this.logger?.debug(`MemoryStorage.removeItem(\"${key}\"): success`);\n }\n}","/**\n * Current payment status\n * * `pending` - Pending\n * * `confirming` - Confirming\n * * `confirmed` - Confirmed\n * * `completed` - Completed\n * * `failed` - Failed\n * * `expired` - Expired\n * * `cancelled` - Cancelled\n * * `refunded` - Refunded\n */\nexport enum AdminPaymentUpdateStatus {\n PENDING = \"pending\",\n CONFIRMING = \"confirming\",\n CONFIRMED = \"confirmed\",\n COMPLETED = \"completed\",\n FAILED = \"failed\",\n EXPIRED = \"expired\",\n CANCELLED = \"cancelled\",\n REFUNDED = \"refunded\",\n}\n\n/**\n * Current payment status\n * * `pending` - Pending\n * * `confirming` - Confirming\n * * `confirmed` - Confirmed\n * * `completed` - Completed\n * * `failed` - Failed\n * * `expired` - Expired\n * * `cancelled` - Cancelled\n * * `refunded` - Refunded\n */\nexport enum AdminPaymentUpdateRequestStatus {\n PENDING = \"pending\",\n CONFIRMING = \"confirming\",\n CONFIRMED = \"confirmed\",\n COMPLETED = \"completed\",\n FAILED = \"failed\",\n EXPIRED = \"expired\",\n CANCELLED = \"cancelled\",\n REFUNDED = \"refunded\",\n}\n\n/**\n * Type of currency\n * * `fiat` - Fiat Currency\n * * `crypto` - Cryptocurrency\n */\nexport enum CurrencyCurrencyType {\n FIAT = \"fiat\",\n CRYPTO = \"crypto\",\n}\n\n/**\n * Type of currency\n * * `fiat` - Fiat Currency\n * * `crypto` - Cryptocurrency\n */\nexport enum CurrencyListCurrencyType {\n FIAT = \"fiat\",\n CRYPTO = \"crypto\",\n}\n\n/**\n * * `pending` - Pending\n * * `sent` - Sent\n * * `failed` - Failed\n */\nexport enum EmailLogStatus {\n PENDING = \"pending\",\n SENT = \"sent\",\n FAILED = \"failed\",\n}\n\n/**\n * * `email` - Email\n * * `whatsapp` - WhatsApp\n * * `telegram` - Telegram\n * * `phone` - Phone\n * * `other` - Other\n */\nexport enum LeadSubmissionContactType {\n EMAIL = \"email\",\n WHATSAPP = \"whatsapp\",\n TELEGRAM = \"telegram\",\n PHONE = \"phone\",\n OTHER = \"other\",\n}\n\n/**\n * * `email` - Email\n * * `whatsapp` - WhatsApp\n * * `telegram` - Telegram\n * * `phone` - Phone\n * * `other` - Other\n */\nexport enum LeadSubmissionRequestContactType {\n EMAIL = \"email\",\n WHATSAPP = \"whatsapp\",\n TELEGRAM = \"telegram\",\n PHONE = \"phone\",\n OTHER = \"other\",\n}\n\n/**\n * * `draft` - Draft\n * * `sending` - Sending\n * * `sent` - Sent\n * * `failed` - Failed\n */\nexport enum NewsletterCampaignStatus {\n DRAFT = \"draft\",\n SENDING = \"sending\",\n SENT = \"sent\",\n FAILED = \"failed\",\n}\n\n/**\n * Delivery channel: 'email' or 'phone'. Auto-detected if not provided.\n * * `email` - Email\n * * `phone` - Phone\n */\nexport enum OTPRequestRequestChannel {\n EMAIL = \"email\",\n PHONE = \"phone\",\n}\n\n/**\n * Delivery channel: 'email' or 'phone'. Auto-detected if not provided.\n * * `email` - Email\n * * `phone` - Phone\n */\nexport enum OTPVerifyRequestChannel {\n EMAIL = \"email\",\n PHONE = \"phone\",\n}\n\n/**\n * Current payment status\n * * `pending` - Pending\n * * `confirming` - Confirming\n * * `confirmed` - Confirmed\n * * `completed` - Completed\n * * `failed` - Failed\n * * `expired` - Expired\n * * `cancelled` - Cancelled\n * * `refunded` - Refunded\n */\nexport enum PatchedAdminPaymentUpdateRequestStatus {\n PENDING = \"pending\",\n CONFIRMING = \"confirming\",\n CONFIRMED = \"confirmed\",\n COMPLETED = \"completed\",\n FAILED = \"failed\",\n EXPIRED = \"expired\",\n CANCELLED = \"cancelled\",\n REFUNDED = \"refunded\",\n}\n\n/**\n * * `email` - Email\n * * `whatsapp` - WhatsApp\n * * `telegram` - Telegram\n * * `phone` - Phone\n * * `other` - Other\n */\nexport enum PatchedLeadSubmissionRequestContactType {\n EMAIL = \"email\",\n WHATSAPP = \"whatsapp\",\n TELEGRAM = \"telegram\",\n PHONE = \"phone\",\n OTHER = \"other\",\n}\n\n/**\n * Payment provider\n * * `nowpayments` - NowPayments\n */\nexport enum PatchedPaymentRequestProvider {\n NOWPAYMENTS = \"nowpayments\",\n}\n\n/**\n * Current payment status\n * * `pending` - Pending\n * * `confirming` - Confirming\n * * `confirmed` - Confirmed\n * * `completed` - Completed\n * * `failed` - Failed\n * * `expired` - Expired\n * * `cancelled` - Cancelled\n * * `refunded` - Refunded\n */\nexport enum PatchedPaymentRequestStatus {\n PENDING = \"pending\",\n CONFIRMING = \"confirming\",\n CONFIRMED = \"confirmed\",\n COMPLETED = \"completed\",\n FAILED = \"failed\",\n EXPIRED = \"expired\",\n CANCELLED = \"cancelled\",\n REFUNDED = \"refunded\",\n}\n\n/**\n * Subscription status\n * * `active` - Active\n * * `inactive` - Inactive\n * * `suspended` - Suspended\n * * `cancelled` - Cancelled\n * * `expired` - Expired\n */\nexport enum PatchedSubscriptionRequestStatus {\n ACTIVE = \"active\",\n INACTIVE = \"inactive\",\n SUSPENDED = \"suspended\",\n CANCELLED = \"cancelled\",\n EXPIRED = \"expired\",\n}\n\n/**\n * Subscription tier\n * * `free` - Free Tier\n * * `basic` - Basic Tier\n * * `pro` - Pro Tier\n * * `enterprise` - Enterprise Tier\n */\nexport enum PatchedSubscriptionRequestTier {\n FREE = \"free\",\n BASIC = \"basic\",\n PRO = \"pro\",\n ENTERPRISE = \"enterprise\",\n}\n\n/**\n * * `open` - Open\n * * `waiting_for_user` - Waiting for User\n * * `waiting_for_admin` - Waiting for Admin\n * * `resolved` - Resolved\n * * `closed` - Closed\n */\nexport enum PatchedTicketRequestStatus {\n OPEN = \"open\",\n WAITING_FOR_USER = \"waiting_for_user\",\n WAITING_FOR_ADMIN = \"waiting_for_admin\",\n RESOLVED = \"resolved\",\n CLOSED = \"closed\",\n}\n\n/**\n * Payment provider\n * * `nowpayments` - NowPayments\n */\nexport enum PaymentProvider {\n NOWPAYMENTS = \"nowpayments\",\n}\n\n/**\n * Current payment status\n * * `pending` - Pending\n * * `confirming` - Confirming\n * * `confirmed` - Confirmed\n * * `completed` - Completed\n * * `failed` - Failed\n * * `expired` - Expired\n * * `cancelled` - Cancelled\n * * `refunded` - Refunded\n */\nexport enum PaymentStatus {\n PENDING = \"pending\",\n CONFIRMING = \"confirming\",\n CONFIRMED = \"confirmed\",\n COMPLETED = \"completed\",\n FAILED = \"failed\",\n EXPIRED = \"expired\",\n CANCELLED = \"cancelled\",\n REFUNDED = \"refunded\",\n}\n\n/**\n * Cryptocurrency to receive\n * * `BTC` - Bitcoin\n * * `ETH` - Ethereum\n * * `LTC` - Litecoin\n * * `XMR` - Monero\n * * `USDT` - Tether\n * * `USDC` - USD Coin\n * * `ADA` - Cardano\n * * `DOT` - Polkadot\n */\nexport enum PaymentCreateCurrencyCode {\n BTC = \"BTC\",\n ETH = \"ETH\",\n LTC = \"LTC\",\n XMR = \"XMR\",\n USDT = \"USDT\",\n USDC = \"USDC\",\n ADA = \"ADA\",\n DOT = \"DOT\",\n}\n\n/**\n * Payment provider\n * * `nowpayments` - NowPayments\n */\nexport enum PaymentCreateProvider {\n NOWPAYMENTS = \"nowpayments\",\n}\n\n/**\n * Cryptocurrency to receive\n * * `BTC` - Bitcoin\n * * `ETH` - Ethereum\n * * `LTC` - Litecoin\n * * `XMR` - Monero\n * * `USDT` - Tether\n * * `USDC` - USD Coin\n * * `ADA` - Cardano\n * * `DOT` - Polkadot\n */\nexport enum PaymentCreateRequestCurrencyCode {\n BTC = \"BTC\",\n ETH = \"ETH\",\n LTC = \"LTC\",\n XMR = \"XMR\",\n USDT = \"USDT\",\n USDC = \"USDC\",\n ADA = \"ADA\",\n DOT = \"DOT\",\n}\n\n/**\n * Payment provider\n * * `nowpayments` - NowPayments\n */\nexport enum PaymentCreateRequestProvider {\n NOWPAYMENTS = \"nowpayments\",\n}\n\n/**\n * Payment provider\n * * `nowpayments` - NowPayments\n */\nexport enum PaymentListProvider {\n NOWPAYMENTS = \"nowpayments\",\n}\n\n/**\n * Current payment status\n * * `pending` - Pending\n * * `confirming` - Confirming\n * * `confirmed` - Confirmed\n * * `completed` - Completed\n * * `failed` - Failed\n * * `expired` - Expired\n * * `cancelled` - Cancelled\n * * `refunded` - Refunded\n */\nexport enum PaymentListStatus {\n PENDING = \"pending\",\n CONFIRMING = \"confirming\",\n CONFIRMED = \"confirmed\",\n COMPLETED = \"completed\",\n FAILED = \"failed\",\n EXPIRED = \"expired\",\n CANCELLED = \"cancelled\",\n REFUNDED = \"refunded\",\n}\n\n/**\n * Payment provider\n * * `nowpayments` - NowPayments\n */\nexport enum PaymentRequestProvider {\n NOWPAYMENTS = \"nowpayments\",\n}\n\n/**\n * Current payment status\n * * `pending` - Pending\n * * `confirming` - Confirming\n * * `confirmed` - Confirmed\n * * `completed` - Completed\n * * `failed` - Failed\n * * `expired` - Expired\n * * `cancelled` - Cancelled\n * * `refunded` - Refunded\n */\nexport enum PaymentRequestStatus {\n PENDING = \"pending\",\n CONFIRMING = \"confirming\",\n CONFIRMED = \"confirmed\",\n COMPLETED = \"completed\",\n FAILED = \"failed\",\n EXPIRED = \"expired\",\n CANCELLED = \"cancelled\",\n REFUNDED = \"refunded\",\n}\n\n/**\n * Action to perform on queues\n * * `clear` - clear\n * * `clear_all` - clear_all\n * * `purge` - purge\n * * `purge_failed` - purge_failed\n * * `flush` - flush\n */\nexport enum QueueActionAction {\n CLEAR = \"clear\",\n CLEAR_ALL = \"clear_all\",\n PURGE = \"purge\",\n PURGE_FAILED = \"purge_failed\",\n FLUSH = \"flush\",\n}\n\n/**\n * Action to perform on queues\n * * `clear` - clear\n * * `clear_all` - clear_all\n * * `purge` - purge\n * * `purge_failed` - purge_failed\n * * `flush` - flush\n */\nexport enum QueueActionRequestAction {\n CLEAR = \"clear\",\n CLEAR_ALL = \"clear_all\",\n PURGE = \"purge\",\n PURGE_FAILED = \"purge_failed\",\n FLUSH = \"flush\",\n}\n\n/**\n * Subscription status\n * * `active` - Active\n * * `inactive` - Inactive\n * * `suspended` - Suspended\n * * `cancelled` - Cancelled\n * * `expired` - Expired\n */\nexport enum SubscriptionStatus {\n ACTIVE = \"active\",\n INACTIVE = \"inactive\",\n SUSPENDED = \"suspended\",\n CANCELLED = \"cancelled\",\n EXPIRED = \"expired\",\n}\n\n/**\n * Subscription tier\n * * `free` - Free Tier\n * * `basic` - Basic Tier\n * * `pro` - Pro Tier\n * * `enterprise` - Enterprise Tier\n */\nexport enum SubscriptionTier {\n FREE = \"free\",\n BASIC = \"basic\",\n PRO = \"pro\",\n ENTERPRISE = \"enterprise\",\n}\n\n/**\n * Subscription status\n * * `active` - Active\n * * `inactive` - Inactive\n * * `suspended` - Suspended\n * * `cancelled` - Cancelled\n * * `expired` - Expired\n */\nexport enum SubscriptionListStatus {\n ACTIVE = \"active\",\n INACTIVE = \"inactive\",\n SUSPENDED = \"suspended\",\n CANCELLED = \"cancelled\",\n EXPIRED = \"expired\",\n}\n\n/**\n * Subscription status\n * * `active` - Active\n * * `inactive` - Inactive\n * * `suspended` - Suspended\n * * `cancelled` - Cancelled\n * * `expired` - Expired\n */\nexport enum SubscriptionRequestStatus {\n ACTIVE = \"active\",\n INACTIVE = \"inactive\",\n SUSPENDED = \"suspended\",\n CANCELLED = \"cancelled\",\n EXPIRED = \"expired\",\n}\n\n/**\n * Subscription tier\n * * `free` - Free Tier\n * * `basic` - Basic Tier\n * * `pro` - Pro Tier\n * * `enterprise` - Enterprise Tier\n */\nexport enum SubscriptionRequestTier {\n FREE = \"free\",\n BASIC = \"basic\",\n PRO = \"pro\",\n ENTERPRISE = \"enterprise\",\n}\n\n/**\n * * `open` - Open\n * * `waiting_for_user` - Waiting for User\n * * `waiting_for_admin` - Waiting for Admin\n * * `resolved` - Resolved\n * * `closed` - Closed\n */\nexport enum TicketStatus {\n OPEN = \"open\",\n WAITING_FOR_USER = \"waiting_for_user\",\n WAITING_FOR_ADMIN = \"waiting_for_admin\",\n RESOLVED = \"resolved\",\n CLOSED = \"closed\",\n}\n\n/**\n * * `open` - Open\n * * `waiting_for_user` - Waiting for User\n * * `waiting_for_admin` - Waiting for Admin\n * * `resolved` - Resolved\n * * `closed` - Closed\n */\nexport enum TicketRequestStatus {\n OPEN = \"open\",\n WAITING_FOR_USER = \"waiting_for_user\",\n WAITING_FOR_ADMIN = \"waiting_for_admin\",\n RESOLVED = \"resolved\",\n CLOSED = \"closed\",\n}\n\n/**\n * Type of transaction\n * * `deposit` - Deposit\n * * `withdrawal` - Withdrawal\n * * `payment` - Payment\n * * `refund` - Refund\n * * `fee` - Fee\n * * `bonus` - Bonus\n * * `adjustment` - Adjustment\n */\nexport enum TransactionTransactionType {\n DEPOSIT = \"deposit\",\n WITHDRAWAL = \"withdrawal\",\n PAYMENT = \"payment\",\n REFUND = \"refund\",\n FEE = \"fee\",\n BONUS = \"bonus\",\n ADJUSTMENT = \"adjustment\",\n}\n\n/**\n * * `success` - Success\n * * `failed` - Failed\n * * `pending` - Pending\n * * `retry` - Retry\n */\nexport enum WebhookEventStatus {\n SUCCESS = \"success\",\n FAILED = \"failed\",\n PENDING = \"pending\",\n RETRY = \"retry\",\n}\n\n/**\n * * `success` - Success\n * * `failed` - Failed\n * * `pending` - Pending\n * * `retry` - Retry\n */\nexport enum WebhookEventRequestStatus {\n SUCCESS = \"success\",\n FAILED = \"failed\",\n PENDING = \"pending\",\n RETRY = \"retry\",\n}\n\n/**\n * Action to perform on workers\n * * `start` - start\n * * `stop` - stop\n * * `restart` - restart\n */\nexport enum WorkerActionAction {\n START = \"start\",\n STOP = \"stop\",\n RESTART = \"restart\",\n}\n\n/**\n * Action to perform on workers\n * * `start` - start\n * * `stop` - stop\n * * `restart` - restart\n */\nexport enum WorkerActionRequestAction {\n START = \"start\",\n STOP = \"stop\",\n RESTART = \"restart\",\n}\n\n","/**\n * Zod Schemas - Runtime validation and type inference\n *\n * Auto-generated from OpenAPI specification.\n * Provides runtime validation for API requests and responses.\n *\n * Usage:\n * ```typescript\n * import { UserSchema } from './schemas'\n *\n * // Validate data\n * const user = UserSchema.parse(data)\n *\n * // Type inference\n * type User = z.infer<typeof UserSchema>\n * ```\n */\n\nexport * from './APIKeyCreate.schema'\nexport * from './APIKeyCreateRequest.schema'\nexport * from './APIKeyDetail.schema'\nexport * from './APIKeyList.schema'\nexport * from './APIKeyUpdate.schema'\nexport * from './APIKeyUpdateRequest.schema'\nexport * from './APIKeyValidationRequest.schema'\nexport * from './APIKeyValidationResponse.schema'\nexport * from './APIKeysOverview.schema'\nexport * from './APIResponse.schema'\nexport * from './APIResponseRequest.schema'\nexport * from './AdminPaymentCreate.schema'\nexport * from './AdminPaymentCreateRequest.schema'\nexport * from './AdminPaymentDetail.schema'\nexport * from './AdminPaymentList.schema'\nexport * from './AdminPaymentStats.schema'\nexport * from './AdminPaymentUpdate.schema'\nexport * from './AdminPaymentUpdateRequest.schema'\nexport * from './AdminUser.schema'\nexport * from './BalanceOverview.schema'\nexport * from './BulkEmailRequest.schema'\nexport * from './BulkEmailResponse.schema'\nexport * from './ChartDataPoint.schema'\nexport * from './ChartSeries.schema'\nexport * from './Currency.schema'\nexport * from './CurrencyAnalyticsItem.schema'\nexport * from './CurrencyList.schema'\nexport * from './EmailLog.schema'\nexport * from './Endpoint.schema'\nexport * from './EndpointGroup.schema'\nexport * from './EndpointsStatus.schema'\nexport * from './ErrorResponse.schema'\nexport * from './HealthCheck.schema'\nexport * from './LeadSubmission.schema'\nexport * from './LeadSubmissionError.schema'\nexport * from './LeadSubmissionRequest.schema'\nexport * from './LeadSubmissionResponse.schema'\nexport * from './Message.schema'\nexport * from './MessageCreate.schema'\nexport * from './MessageCreateRequest.schema'\nexport * from './MessageRequest.schema'\nexport * from './Network.schema'\nexport * from './Newsletter.schema'\nexport * from './NewsletterCampaign.schema'\nexport * from './NewsletterCampaignRequest.schema'\nexport * from './NewsletterSubscription.schema'\nexport * from './OTPErrorResponse.schema'\nexport * from './OTPRequestRequest.schema'\nexport * from './OTPRequestResponse.schema'\nexport * from './OTPVerifyRequest.schema'\nexport * from './OTPVerifyResponse.schema'\nexport * from './PaginatedAPIKeyListList.schema'\nexport * from './PaginatedAdminPaymentListList.schema'\nexport * from './PaginatedAdminPaymentStatsList.schema'\nexport * from './PaginatedAdminUserList.schema'\nexport * from './PaginatedCurrencyListList.schema'\nexport * from './PaginatedEmailLogList.schema'\nexport * from './PaginatedEndpointGroupList.schema'\nexport * from './PaginatedLeadSubmissionList.schema'\nexport * from './PaginatedMessageList.schema'\nexport * from './PaginatedNetworkList.schema'\nexport * from './PaginatedNewsletterCampaignList.schema'\nexport * from './PaginatedNewsletterList.schema'\nexport * from './PaginatedNewsletterSubscriptionList.schema'\nexport * from './PaginatedPaymentListList.schema'\nexport * from './PaginatedProviderCurrencyList.schema'\nexport * from './PaginatedRecentPaymentList.schema'\nexport * from './PaginatedRecentTransactionList.schema'\nexport * from './PaginatedSubscriptionListList.schema'\nexport * from './PaginatedTariffList.schema'\nexport * from './PaginatedTicketList.schema'\nexport * from './PaginatedTransactionList.schema'\nexport * from './PaginatedUserBalanceList.schema'\nexport * from './PaginatedWebhookEventListList.schema'\nexport * from './PaginatedWebhookStatsList.schema'\nexport * from './PatchedAPIKeyUpdateRequest.schema'\nexport * from './PatchedAdminPaymentUpdateRequest.schema'\nexport * from './PatchedLeadSubmissionRequest.schema'\nexport * from './PatchedMessageRequest.schema'\nexport * from './PatchedNewsletterCampaignRequest.schema'\nexport * from './PatchedPaymentRequest.schema'\nexport * from './PatchedSubscriptionRequest.schema'\nexport * from './PatchedTicketRequest.schema'\nexport * from './PatchedUnsubscribeRequest.schema'\nexport * from './PatchedUserProfileUpdateRequest.schema'\nexport * from './Payment.schema'\nexport * from './PaymentAnalyticsResponse.schema'\nexport * from './PaymentCreate.schema'\nexport * from './PaymentCreateRequest.schema'\nexport * from './PaymentList.schema'\nexport * from './PaymentOverview.schema'\nexport * from './PaymentRequest.schema'\nexport * from './PaymentsChartResponse.schema'\nexport * from './PaymentsDashboardOverview.schema'\nexport * from './PaymentsMetrics.schema'\nexport * from './ProviderAnalyticsItem.schema'\nexport * from './ProviderCurrency.schema'\nexport * from './QueueAction.schema'\nexport * from './QueueActionRequest.schema'\nexport * from './QueueStatus.schema'\nexport * from './QuickHealth.schema'\nexport * from './RecentPayment.schema'\nexport * from './RecentTransaction.schema'\nexport * from './SendCampaignRequest.schema'\nexport * from './SendCampaignResponse.schema'\nexport * from './Sender.schema'\nexport * from './SubscribeRequest.schema'\nexport * from './SubscribeResponse.schema'\nexport * from './Subscription.schema'\nexport * from './SubscriptionCreate.schema'\nexport * from './SubscriptionCreateRequest.schema'\nexport * from './SubscriptionList.schema'\nexport * from './SubscriptionOverview.schema'\nexport * from './SubscriptionRequest.schema'\nexport * from './SuccessResponse.schema'\nexport * from './SupportedProviders.schema'\nexport * from './Tariff.schema'\nexport * from './TaskStatistics.schema'\nexport * from './TestEmailRequest.schema'\nexport * from './Ticket.schema'\nexport * from './TicketRequest.schema'\nexport * from './TokenRefresh.schema'\nexport * from './TokenRefreshRequest.schema'\nexport * from './Transaction.schema'\nexport * from './Unsubscribe.schema'\nexport * from './UnsubscribeRequest.schema'\nexport * from './User.schema'\nexport * from './UserBalance.schema'\nexport * from './UserProfileUpdateRequest.schema'\nexport * from './WebhookEvent.schema'\nexport * from './WebhookEventList.schema'\nexport * from './WebhookEventListRequest.schema'\nexport * from './WebhookEventRequest.schema'\nexport * from './WebhookHealth.schema'\nexport * from './WebhookProviderStats.schema'\nexport * from './WebhookProviderStatsRequest.schema'\nexport * from './WebhookResponse.schema'\nexport * from './WebhookResponseRequest.schema'\nexport * from './WebhookStats.schema'\nexport * from './WebhookStatsRequest.schema'\nexport * from './WorkerAction.schema'\nexport * from './WorkerActionRequest.schema'\n","/**\n * Zod schema for APIKeyCreate\n *\n * This schema provides runtime validation and type inference.\n * * API key creation serializer with service integration.\n\nCreates new API keys and returns the full key value (only once).\n * */\nimport { z } from 'zod'\n\n/**\n * API key creation serializer with service integration.\n\nCreates new API keys and returns the full key value (only once).\n */\nexport const APIKeyCreateSchema = z.object({\n name: z.string().max(100),\n expires_in_days: z.int().min(1.0).max(365.0).nullable().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type APIKeyCreate = z.infer<typeof APIKeyCreateSchema>","/**\n * Zod schema for APIKeyCreateRequest\n *\n * This schema provides runtime validation and type inference.\n * * API key creation serializer with service integration.\n\nCreates new API keys and returns the full key value (only once).\n * */\nimport { z } from 'zod'\n\n/**\n * API key creation serializer with service integration.\n\nCreates new API keys and returns the full key value (only once).\n */\nexport const APIKeyCreateRequestSchema = z.object({\n name: z.string().min(1).max(100),\n expires_in_days: z.int().min(1.0).max(365.0).nullable().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type APIKeyCreateRequest = z.infer<typeof APIKeyCreateRequestSchema>","/**\n * Zod schema for APIKeyDetail\n *\n * This schema provides runtime validation and type inference.\n * * Complete API key serializer with full details.\n\nUsed for API key detail views (no key value for security).\n * */\nimport { z } from 'zod'\n\n/**\n * Complete API key serializer with full details.\n\nUsed for API key detail views (no key value for security).\n */\nexport const APIKeyDetailSchema = z.object({\n id: z.uuid(),\n user: z.string(),\n name: z.string(),\n key_preview: z.string(),\n is_active: z.boolean(),\n is_expired: z.boolean(),\n is_valid: z.boolean(),\n days_until_expiry: z.int(),\n total_requests: z.int(),\n last_used_at: z.iso.datetime().nullable(),\n expires_at: z.iso.datetime().nullable(),\n created_at: z.iso.datetime(),\n updated_at: z.iso.datetime(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type APIKeyDetail = z.infer<typeof APIKeyDetailSchema>","/**\n * Zod schema for APIKeyList\n *\n * This schema provides runtime validation and type inference.\n * * Lightweight API key serializer for lists.\n\nOptimized for API key lists with minimal data (no key value).\n * */\nimport { z } from 'zod'\n\n/**\n * Lightweight API key serializer for lists.\n\nOptimized for API key lists with minimal data (no key value).\n */\nexport const APIKeyListSchema = z.object({\n id: z.uuid(),\n user: z.string(),\n name: z.string(),\n is_active: z.boolean(),\n is_expired: z.boolean(),\n is_valid: z.boolean(),\n total_requests: z.int(),\n last_used_at: z.iso.datetime().nullable(),\n expires_at: z.iso.datetime().nullable(),\n created_at: z.iso.datetime(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type APIKeyList = z.infer<typeof APIKeyListSchema>","/**\n * Zod schema for APIKeyUpdate\n *\n * This schema provides runtime validation and type inference.\n * * API key update serializer for modifying API key properties.\n\nAllows updating name and active status only.\n * */\nimport { z } from 'zod'\n\n/**\n * API key update serializer for modifying API key properties.\n\nAllows updating name and active status only.\n */\nexport const APIKeyUpdateSchema = z.object({\n name: z.string().max(100),\n is_active: z.boolean().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type APIKeyUpdate = z.infer<typeof APIKeyUpdateSchema>","/**\n * Zod schema for APIKeyUpdateRequest\n *\n * This schema provides runtime validation and type inference.\n * * API key update serializer for modifying API key properties.\n\nAllows updating name and active status only.\n * */\nimport { z } from 'zod'\n\n/**\n * API key update serializer for modifying API key properties.\n\nAllows updating name and active status only.\n */\nexport const APIKeyUpdateRequestSchema = z.object({\n name: z.string().min(1).max(100),\n is_active: z.boolean().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type APIKeyUpdateRequest = z.infer<typeof APIKeyUpdateRequestSchema>","/**\n * Zod schema for APIKeyValidationRequest\n *\n * This schema provides runtime validation and type inference.\n * * API key validation serializer.\n\nValidates API key and returns key information.\n * */\nimport { z } from 'zod'\n\n/**\n * API key validation serializer.\n\nValidates API key and returns key information.\n */\nexport const APIKeyValidationRequestSchema = z.object({\n key: z.string().min(32).max(64),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type APIKeyValidationRequest = z.infer<typeof APIKeyValidationRequestSchema>","/**\n * Zod schema for APIKeyValidationResponse\n *\n * This schema provides runtime validation and type inference.\n * * API key validation response serializer.\n\nDefines the structure of API key validation response for OpenAPI schema.\n * */\nimport { z } from 'zod'\nimport { APIKeyDetailSchema } from './APIKeyDetail.schema'\n\n/**\n * API key validation response serializer.\n\nDefines the structure of API key validation response for OpenAPI schema.\n */\nexport const APIKeyValidationResponseSchema = z.object({\n success: z.boolean(),\n valid: z.boolean(),\n api_key: APIKeyDetailSchema,\n message: z.string(),\n error: z.string().optional(),\n error_code: z.string().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type APIKeyValidationResponse = z.infer<typeof APIKeyValidationResponseSchema>","/**\n * Zod schema for APIKeysOverview\n *\n * This schema provides runtime validation and type inference.\n * * API keys overview metrics\n * */\nimport { z } from 'zod'\n\n/**\n * API keys overview metrics\n */\nexport const APIKeysOverviewSchema = z.object({\n total_keys: z.int(),\n active_keys: z.int(),\n expired_keys: z.int(),\n total_requests: z.int(),\n last_used_at: z.iso.datetime().nullable(),\n most_used_key_name: z.string().nullable(),\n most_used_key_requests: z.int(),\n expiring_soon_count: z.int(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type APIKeysOverview = z.infer<typeof APIKeysOverviewSchema>","/**\n * Zod schema for APIResponse\n *\n * This schema provides runtime validation and type inference.\n * * Standard API response serializer.\n * */\nimport { z } from 'zod'\n\n/**\n * Standard API response serializer.\n */\nexport const APIResponseSchema = z.object({\n success: z.boolean(),\n message: z.string().optional(),\n error: z.string().optional(),\n data: z.record(z.string(), z.any()).optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type APIResponse = z.infer<typeof APIResponseSchema>","/**\n * Zod schema for APIResponseRequest\n *\n * This schema provides runtime validation and type inference.\n * * Standard API response serializer.\n * */\nimport { z } from 'zod'\n\n/**\n * Standard API response serializer.\n */\nexport const APIResponseRequestSchema = z.object({\n success: z.boolean(),\n message: z.string().min(1).optional(),\n error: z.string().min(1).optional(),\n data: z.record(z.string(), z.any()).optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type APIResponseRequest = z.infer<typeof APIResponseRequestSchema>","/**\n * Zod schema for AdminPaymentCreate\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for creating payments in admin interface.\nUses UniversalPayment only for data creation.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for creating payments in admin interface.\nUses UniversalPayment only for data creation.\n */\nexport const AdminPaymentCreateSchema = z.object({\n user: z.int(),\n amount_usd: z.number().min(1.0).max(100000.0),\n provider: z.string().max(50),\n description: z.string().optional(),\n callback_url: z.url().optional(),\n cancel_url: z.url().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type AdminPaymentCreate = z.infer<typeof AdminPaymentCreateSchema>","/**\n * Zod schema for AdminPaymentCreateRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for creating payments in admin interface.\nUses UniversalPayment only for data creation.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for creating payments in admin interface.\nUses UniversalPayment only for data creation.\n */\nexport const AdminPaymentCreateRequestSchema = z.object({\n user: z.int(),\n amount_usd: z.number().min(1.0).max(100000.0),\n currency_code: z.string().min(1).max(20),\n provider: z.string().min(1).max(50),\n description: z.string().optional(),\n callback_url: z.url().optional(),\n cancel_url: z.url().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type AdminPaymentCreateRequest = z.infer<typeof AdminPaymentCreateRequestSchema>","/**\n * Zod schema for AdminPaymentDetail\n *\n * This schema provides runtime validation and type inference.\n * * Detailed serializer for individual payment in admin interface.\nUses UniversalPayment only for data extraction.\n * */\nimport { z } from 'zod'\nimport { AdminUserSchema } from './AdminUser.schema'\n\n/**\n * Detailed serializer for individual payment in admin interface.\nUses UniversalPayment only for data extraction.\n */\nexport const AdminPaymentDetailSchema = z.object({\n id: z.uuid(),\n user: AdminUserSchema,\n internal_payment_id: z.string(),\n amount_usd: z.number(),\n actual_amount_usd: z.number(),\n fee_amount_usd: z.number(),\n currency_code: z.string(),\n currency_name: z.string(),\n provider: z.string(),\n provider_display: z.string(),\n status: z.string(),\n status_display: z.string(),\n pay_amount: z.string().regex(/^-?\\d{0,12}(?:\\.\\d{0,8})?$/),\n pay_address: z.string(),\n payment_url: z.url(),\n transaction_hash: z.string(),\n confirmations_count: z.int(),\n security_nonce: z.string(),\n expires_at: z.iso.datetime(),\n completed_at: z.iso.datetime(),\n status_changed_at: z.iso.datetime(),\n description: z.string(),\n callback_url: z.url(),\n cancel_url: z.url(),\n provider_data: z.string(),\n webhook_data: z.string(),\n created_at: z.iso.datetime(),\n updated_at: z.iso.datetime(),\n age: z.string(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type AdminPaymentDetail = z.infer<typeof AdminPaymentDetailSchema>","/**\n * Zod schema for AdminUser\n *\n * This schema provides runtime validation and type inference.\n * * Simplified user serializer for admin interface.\n * */\nimport { z } from 'zod'\n\n/**\n * Simplified user serializer for admin interface.\n */\nexport const AdminUserSchema = z.object({\n id: z.int(),\n username: z.string(),\n email: z.email(),\n first_name: z.string(),\n last_name: z.string(),\n is_active: z.boolean(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type AdminUser = z.infer<typeof AdminUserSchema>","/**\n * Zod schema for AdminPaymentList\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for payment list in admin interface.\nUses UniversalPayment only for data extraction.\n * */\nimport { z } from 'zod'\nimport { AdminUserSchema } from './AdminUser.schema'\n\n/**\n * Serializer for payment list in admin interface.\nUses UniversalPayment only for data extraction.\n */\nexport const AdminPaymentListSchema = z.object({\n id: z.uuid(),\n internal_payment_id: z.string(),\n user: AdminUserSchema,\n amount_usd: z.number(),\n currency_code: z.string(),\n currency_name: z.string(),\n provider: z.string(),\n provider_display: z.string(),\n status: z.string(),\n status_display: z.string(),\n pay_amount: z.string().regex(/^-?\\d{0,12}(?:\\.\\d{0,8})?$/),\n pay_address: z.string(),\n transaction_hash: z.string(),\n created_at: z.iso.datetime(),\n updated_at: z.iso.datetime(),\n description: z.string(),\n age: z.string(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type AdminPaymentList = z.infer<typeof AdminPaymentListSchema>","/**\n * Zod schema for AdminPaymentStats\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for payment statistics in admin interface.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for payment statistics in admin interface.\n */\nexport const AdminPaymentStatsSchema = z.object({\n total_payments: z.int(),\n total_amount_usd: z.number(),\n successful_payments: z.int(),\n failed_payments: z.int(),\n pending_payments: z.int(),\n success_rate: z.number(),\n by_provider: z.record(z.string(), z.any()),\n by_currency: z.record(z.string(), z.any()),\n last_24h: z.record(z.string(), z.any()),\n last_7d: z.record(z.string(), z.any()),\n last_30d: z.record(z.string(), z.any()),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type AdminPaymentStats = z.infer<typeof AdminPaymentStatsSchema>","/**\n * Zod schema for AdminPaymentUpdate\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for updating payments in admin interface.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Serializer for updating payments in admin interface.\n */\nexport const AdminPaymentUpdateSchema = z.object({\n status: z.nativeEnum(Enums.AdminPaymentUpdateStatus).optional(),\n description: z.string().optional(),\n callback_url: z.url().nullable().optional(),\n cancel_url: z.url().nullable().optional(),\n provider_data: z.string().optional(),\n webhook_data: z.string().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type AdminPaymentUpdate = z.infer<typeof AdminPaymentUpdateSchema>","/**\n * Zod schema for AdminPaymentUpdateRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for updating payments in admin interface.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Serializer for updating payments in admin interface.\n */\nexport const AdminPaymentUpdateRequestSchema = z.object({\n status: z.nativeEnum(Enums.AdminPaymentUpdateRequestStatus).optional(),\n description: z.string().optional(),\n callback_url: z.url().nullable().optional(),\n cancel_url: z.url().nullable().optional(),\n provider_data: z.string().optional(),\n webhook_data: z.string().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type AdminPaymentUpdateRequest = z.infer<typeof AdminPaymentUpdateRequestSchema>","/**\n * Zod schema for BalanceOverview\n *\n * This schema provides runtime validation and type inference.\n * * User balance overview metrics\n * */\nimport { z } from 'zod'\n\n/**\n * User balance overview metrics\n */\nexport const BalanceOverviewSchema = z.object({\n current_balance: z.number(),\n balance_display: z.string(),\n total_deposited: z.number(),\n total_spent: z.number(),\n last_transaction_at: z.iso.datetime().nullable(),\n has_transactions: z.boolean(),\n is_empty: z.boolean(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type BalanceOverview = z.infer<typeof BalanceOverviewSchema>","/**\n * Zod schema for BulkEmailRequest\n *\n * This schema provides runtime validation and type inference.\n * * Simple serializer for bulk email.\n * */\nimport { z } from 'zod'\n\n/**\n * Simple serializer for bulk email.\n */\nexport const BulkEmailRequestSchema = z.object({\n recipients: z.array(z.email()),\n subject: z.string().min(1).max(255),\n email_title: z.string().min(1).max(255),\n main_text: z.string().min(1),\n main_html_content: z.string().optional(),\n button_text: z.string().max(100).optional(),\n button_url: z.url().optional(),\n secondary_text: z.string().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type BulkEmailRequest = z.infer<typeof BulkEmailRequestSchema>","/**\n * Zod schema for BulkEmailResponse\n *\n * This schema provides runtime validation and type inference.\n * * Response for bulk email sending.\n * */\nimport { z } from 'zod'\n\n/**\n * Response for bulk email sending.\n */\nexport const BulkEmailResponseSchema = z.object({\n success: z.boolean(),\n sent_count: z.int(),\n failed_count: z.int(),\n total_recipients: z.int(),\n error: z.string().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type BulkEmailResponse = z.infer<typeof BulkEmailResponseSchema>","/**\n * Zod schema for ChartDataPoint\n *\n * This schema provides runtime validation and type inference.\n * * Chart data point for payments analytics\n * */\nimport { z } from 'zod'\n\n/**\n * Chart data point for payments analytics\n */\nexport const ChartDataPointSchema = z.object({\n x: z.string(),\n y: z.number(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type ChartDataPoint = z.infer<typeof ChartDataPointSchema>","/**\n * Zod schema for ChartSeries\n *\n * This schema provides runtime validation and type inference.\n * * Chart series data for payments visualization\n * */\nimport { z } from 'zod'\nimport { ChartDataPointSchema } from './ChartDataPoint.schema'\n\n/**\n * Chart series data for payments visualization\n */\nexport const ChartSeriesSchema = z.object({\n name: z.string(),\n data: z.array(ChartDataPointSchema),\n color: z.string(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type ChartSeries = z.infer<typeof ChartSeriesSchema>","/**\n * Zod schema for Currency\n *\n * This schema provides runtime validation and type inference.\n * * Complete currency serializer with full details.\n\nUsed for currency information and management.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Complete currency serializer with full details.\n\nUsed for currency information and management.\n */\nexport const CurrencySchema = z.object({\n id: z.int(),\n code: z.string(),\n name: z.string(),\n symbol: z.string(),\n currency_type: z.nativeEnum(Enums.CurrencyCurrencyType),\n type_display: z.string(),\n decimal_places: z.int(),\n is_active: z.boolean(),\n is_crypto: z.boolean(),\n is_fiat: z.boolean(),\n created_at: z.iso.datetime(),\n updated_at: z.iso.datetime(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type Currency = z.infer<typeof CurrencySchema>","/**\n * Zod schema for CurrencyAnalyticsItem\n *\n * This schema provides runtime validation and type inference.\n * * Analytics data for a single currency\n * */\nimport { z } from 'zod'\n\n/**\n * Analytics data for a single currency\n */\nexport const CurrencyAnalyticsItemSchema = z.object({\n currency_code: z.string(),\n currency_name: z.string(),\n total_payments: z.int(),\n total_amount: z.number(),\n completed_payments: z.int(),\n average_amount: z.number(),\n success_rate: z.number(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type CurrencyAnalyticsItem = z.infer<typeof CurrencyAnalyticsItemSchema>","/**\n * Zod schema for CurrencyList\n *\n * This schema provides runtime validation and type inference.\n * * Lightweight currency serializer for lists.\n\nOptimized for currency selection and lists.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Lightweight currency serializer for lists.\n\nOptimized for currency selection and lists.\n */\nexport const CurrencyListSchema = z.object({\n id: z.int(),\n code: z.string(),\n name: z.string(),\n symbol: z.string(),\n currency_type: z.nativeEnum(Enums.CurrencyListCurrencyType),\n type_display: z.string(),\n is_active: z.boolean(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type CurrencyList = z.infer<typeof CurrencyListSchema>","/**\n * Zod schema for EmailLog\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for EmailLog model.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Serializer for EmailLog model.\n */\nexport const EmailLogSchema = z.object({\n id: z.uuid(),\n user: z.int().nullable(),\n user_email: z.string(),\n newsletter: z.int().nullable(),\n newsletter_title: z.string(),\n recipient: z.string(),\n subject: z.string(),\n body: z.string(),\n status: z.nativeEnum(Enums.EmailLogStatus),\n created_at: z.iso.datetime(),\n sent_at: z.iso.datetime().nullable(),\n error_message: z.string().nullable(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type EmailLog = z.infer<typeof EmailLogSchema>","/**\n * Zod schema for Endpoint\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for single endpoint status.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for single endpoint status.\n */\nexport const EndpointSchema = z.object({\n url: z.string(),\n url_pattern: z.string().nullable().optional(),\n url_name: z.string().nullable().optional(),\n namespace: z.string().optional(),\n group: z.string(),\n view: z.string().optional(),\n status: z.string(),\n status_code: z.int().nullable().optional(),\n response_time_ms: z.number().nullable().optional(),\n is_healthy: z.boolean().nullable().optional(),\n error: z.string().optional(),\n error_type: z.string().optional(),\n reason: z.string().optional(),\n last_checked: z.iso.datetime().nullable().optional(),\n has_parameters: z.boolean().optional(),\n required_auth: z.boolean().optional(),\n rate_limited: z.boolean().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type Endpoint = z.infer<typeof EndpointSchema>","/**\n * Zod schema for EndpointGroup\n *\n * This schema provides runtime validation and type inference.\n * * Endpoint group serializer for API access management.\n\nUsed for subscription endpoint group configuration.\n * */\nimport { z } from 'zod'\n\n/**\n * Endpoint group serializer for API access management.\n\nUsed for subscription endpoint group configuration.\n */\nexport const EndpointGroupSchema = z.object({\n id: z.int(),\n name: z.string(),\n description: z.string(),\n is_enabled: z.boolean(),\n created_at: z.iso.datetime(),\n updated_at: z.iso.datetime(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type EndpointGroup = z.infer<typeof EndpointGroupSchema>","/**\n * Zod schema for EndpointsStatus\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for overall endpoints status response.\n * */\nimport { z } from 'zod'\nimport { EndpointSchema } from './Endpoint.schema'\n\n/**\n * Serializer for overall endpoints status response.\n */\nexport const EndpointsStatusSchema = z.object({\n status: z.string(),\n timestamp: z.iso.datetime(),\n total_endpoints: z.int(),\n healthy: z.int(),\n unhealthy: z.int(),\n warnings: z.int(),\n errors: z.int(),\n skipped: z.int(),\n endpoints: z.array(EndpointSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type EndpointsStatus = z.infer<typeof EndpointsStatusSchema>","/**\n * Zod schema for ErrorResponse\n *\n * This schema provides runtime validation and type inference.\n * * Generic error response.\n * */\nimport { z } from 'zod'\n\n/**\n * Generic error response.\n */\nexport const ErrorResponseSchema = z.object({\n success: z.boolean().optional(),\n message: z.string(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type ErrorResponse = z.infer<typeof ErrorResponseSchema>","/**\n * Zod schema for HealthCheck\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for health check response.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for health check response.\n */\nexport const HealthCheckSchema = z.object({\n status: z.string(),\n timestamp: z.iso.datetime(),\n service: z.string(),\n version: z.string(),\n checks: z.record(z.string(), z.any()),\n environment: z.record(z.string(), z.any()),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type HealthCheck = z.infer<typeof HealthCheckSchema>","/**\n * Zod schema for LeadSubmission\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for lead form submission from frontend.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Serializer for lead form submission from frontend.\n */\nexport const LeadSubmissionSchema = z.object({\n name: z.string().max(200),\n email: z.email(),\n company: z.string().max(200).nullable().optional(),\n company_site: z.string().max(200).nullable().optional(),\n contact_type: z.nativeEnum(Enums.LeadSubmissionContactType).optional(),\n contact_value: z.string().max(200).nullable().optional(),\n subject: z.string().max(200).nullable().optional(),\n message: z.string(),\n extra: z.string().nullable().optional(),\n site_url: z.url(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type LeadSubmission = z.infer<typeof LeadSubmissionSchema>","/**\n * Zod schema for LeadSubmissionError\n *\n * This schema provides runtime validation and type inference.\n * * Response serializer for lead submission errors.\n * */\nimport { z } from 'zod'\n\n/**\n * Response serializer for lead submission errors.\n */\nexport const LeadSubmissionErrorSchema = z.object({\n success: z.boolean(),\n error: z.string(),\n details: z.record(z.string(), z.any()).optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type LeadSubmissionError = z.infer<typeof LeadSubmissionErrorSchema>","/**\n * Zod schema for LeadSubmissionRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for lead form submission from frontend.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Serializer for lead form submission from frontend.\n */\nexport const LeadSubmissionRequestSchema = z.object({\n name: z.string().min(1).max(200),\n email: z.email(),\n company: z.string().max(200).nullable().optional(),\n company_site: z.string().max(200).nullable().optional(),\n contact_type: z.nativeEnum(Enums.LeadSubmissionRequestContactType).optional(),\n contact_value: z.string().max(200).nullable().optional(),\n subject: z.string().max(200).nullable().optional(),\n message: z.string().min(1),\n extra: z.string().nullable().optional(),\n site_url: z.url(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type LeadSubmissionRequest = z.infer<typeof LeadSubmissionRequestSchema>","/**\n * Zod schema for LeadSubmissionResponse\n *\n * This schema provides runtime validation and type inference.\n * * Response serializer for successful lead submission.\n * */\nimport { z } from 'zod'\n\n/**\n * Response serializer for successful lead submission.\n */\nexport const LeadSubmissionResponseSchema = z.object({\n success: z.boolean(),\n message: z.string(),\n lead_id: z.int(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type LeadSubmissionResponse = z.infer<typeof LeadSubmissionResponseSchema>","/**\n * Zod schema for Message\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { SenderSchema } from './Sender.schema'\n\nexport const MessageSchema = z.object({\n uuid: z.uuid(),\n ticket: z.uuid(),\n sender: SenderSchema,\n is_from_author: z.boolean(),\n text: z.string(),\n created_at: z.iso.datetime(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type Message = z.infer<typeof MessageSchema>","/**\n * Zod schema for Sender\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\n\nexport const SenderSchema = z.object({\n id: z.int(),\n display_username: z.string(),\n email: z.email(),\n avatar: z.string().nullable(),\n initials: z.string(),\n is_staff: z.boolean(),\n is_superuser: z.boolean(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type Sender = z.infer<typeof SenderSchema>","/**\n * Zod schema for MessageCreate\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\n\nexport const MessageCreateSchema = z.object({\n text: z.string(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type MessageCreate = z.infer<typeof MessageCreateSchema>","/**\n * Zod schema for MessageCreateRequest\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\n\nexport const MessageCreateRequestSchema = z.object({\n text: z.string().min(1),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type MessageCreateRequest = z.infer<typeof MessageCreateRequestSchema>","/**\n * Zod schema for MessageRequest\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\n\nexport const MessageRequestSchema = z.object({\n text: z.string().min(1),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type MessageRequest = z.infer<typeof MessageRequestSchema>","/**\n * Zod schema for Network\n *\n * This schema provides runtime validation and type inference.\n * * Network serializer for blockchain networks.\n\nUsed for network information and selection.\n * */\nimport { z } from 'zod'\nimport { CurrencyListSchema } from './CurrencyList.schema'\n\n/**\n * Network serializer for blockchain networks.\n\nUsed for network information and selection.\n */\nexport const NetworkSchema = z.object({\n id: z.int(),\n currency: CurrencyListSchema,\n name: z.string(),\n code: z.string(),\n is_active: z.boolean(),\n created_at: z.iso.datetime(),\n updated_at: z.iso.datetime(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type Network = z.infer<typeof NetworkSchema>","/**\n * Zod schema for Newsletter\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for Newsletter model.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for Newsletter model.\n */\nexport const NewsletterSchema = z.object({\n id: z.int(),\n title: z.string().max(255),\n description: z.string().optional(),\n is_active: z.boolean().optional(),\n auto_subscribe: z.boolean().optional(),\n created_at: z.iso.datetime(),\n updated_at: z.iso.datetime(),\n subscribers_count: z.int(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type Newsletter = z.infer<typeof NewsletterSchema>","/**\n * Zod schema for NewsletterCampaign\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for NewsletterCampaign model.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Serializer for NewsletterCampaign model.\n */\nexport const NewsletterCampaignSchema = z.object({\n id: z.int(),\n newsletter: z.int(),\n newsletter_title: z.string(),\n subject: z.string().max(255),\n email_title: z.string().max(255),\n main_text: z.string(),\n main_html_content: z.string().optional(),\n button_text: z.string().max(100).optional(),\n button_url: z.url().optional(),\n secondary_text: z.string().optional(),\n status: z.nativeEnum(Enums.NewsletterCampaignStatus),\n created_at: z.iso.datetime(),\n sent_at: z.iso.datetime().nullable(),\n recipient_count: z.int(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type NewsletterCampaign = z.infer<typeof NewsletterCampaignSchema>","/**\n * Zod schema for NewsletterCampaignRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for NewsletterCampaign model.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for NewsletterCampaign model.\n */\nexport const NewsletterCampaignRequestSchema = z.object({\n newsletter: z.int(),\n subject: z.string().min(1).max(255),\n email_title: z.string().min(1).max(255),\n main_text: z.string().min(1),\n main_html_content: z.string().optional(),\n button_text: z.string().max(100).optional(),\n button_url: z.url().optional(),\n secondary_text: z.string().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type NewsletterCampaignRequest = z.infer<typeof NewsletterCampaignRequestSchema>","/**\n * Zod schema for NewsletterSubscription\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for NewsletterSubscription model.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for NewsletterSubscription model.\n */\nexport const NewsletterSubscriptionSchema = z.object({\n id: z.int(),\n newsletter: z.int(),\n newsletter_title: z.string(),\n user: z.int().nullable().optional(),\n user_email: z.string(),\n email: z.email(),\n is_active: z.boolean().optional(),\n subscribed_at: z.iso.datetime(),\n unsubscribed_at: z.iso.datetime().nullable(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type NewsletterSubscription = z.infer<typeof NewsletterSubscriptionSchema>","/**\n * Zod schema for OTPErrorResponse\n *\n * This schema provides runtime validation and type inference.\n * * Error response for OTP operations.\n * */\nimport { z } from 'zod'\n\n/**\n * Error response for OTP operations.\n */\nexport const OTPErrorResponseSchema = z.object({\n error: z.string(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type OTPErrorResponse = z.infer<typeof OTPErrorResponseSchema>","/**\n * Zod schema for OTPRequestRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for OTP request.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Serializer for OTP request.\n */\nexport const OTPRequestRequestSchema = z.object({\n identifier: z.string().min(1),\n channel: z.nativeEnum(Enums.OTPRequestRequestChannel).optional(),\n source_url: z.url().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type OTPRequestRequest = z.infer<typeof OTPRequestRequestSchema>","/**\n * Zod schema for OTPRequestResponse\n *\n * This schema provides runtime validation and type inference.\n * * OTP request response.\n * */\nimport { z } from 'zod'\n\n/**\n * OTP request response.\n */\nexport const OTPRequestResponseSchema = z.object({\n message: z.string(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type OTPRequestResponse = z.infer<typeof OTPRequestResponseSchema>","/**\n * Zod schema for OTPVerifyRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for OTP verification.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Serializer for OTP verification.\n */\nexport const OTPVerifyRequestSchema = z.object({\n identifier: z.string().min(1),\n otp: z.string().min(6).max(6),\n channel: z.nativeEnum(Enums.OTPVerifyRequestChannel).optional(),\n source_url: z.url().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type OTPVerifyRequest = z.infer<typeof OTPVerifyRequestSchema>","/**\n * Zod schema for OTPVerifyResponse\n *\n * This schema provides runtime validation and type inference.\n * * OTP verification response.\n * */\nimport { z } from 'zod'\nimport { UserSchema } from './User.schema'\n\n/**\n * OTP verification response.\n */\nexport const OTPVerifyResponseSchema = z.object({\n refresh: z.string(),\n access: z.string(),\n user: UserSchema,\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type OTPVerifyResponse = z.infer<typeof OTPVerifyResponseSchema>","/**\n * Zod schema for User\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for user details.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for user details.\n */\nexport const UserSchema = z.object({\n id: z.int(),\n email: z.email(),\n first_name: z.string().max(50).optional(),\n last_name: z.string().max(50).optional(),\n full_name: z.string(),\n initials: z.string(),\n display_username: z.string(),\n company: z.string().max(100).optional(),\n phone: z.string().max(20).optional(),\n position: z.string().max(100).optional(),\n avatar: z.url().nullable(),\n is_staff: z.boolean(),\n is_superuser: z.boolean(),\n date_joined: z.iso.datetime(),\n last_login: z.iso.datetime().nullable(),\n unanswered_messages_count: z.int(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type User = z.infer<typeof UserSchema>","/**\n * Zod schema for PaginatedAPIKeyListList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { APIKeyListSchema } from './APIKeyList.schema'\n\nexport const PaginatedAPIKeyListListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(APIKeyListSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedAPIKeyListList = z.infer<typeof PaginatedAPIKeyListListSchema>","/**\n * Zod schema for PaginatedAdminPaymentListList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { AdminPaymentListSchema } from './AdminPaymentList.schema'\n\nexport const PaginatedAdminPaymentListListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(AdminPaymentListSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedAdminPaymentListList = z.infer<typeof PaginatedAdminPaymentListListSchema>","/**\n * Zod schema for PaginatedAdminPaymentStatsList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { AdminPaymentStatsSchema } from './AdminPaymentStats.schema'\n\nexport const PaginatedAdminPaymentStatsListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(AdminPaymentStatsSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedAdminPaymentStatsList = z.infer<typeof PaginatedAdminPaymentStatsListSchema>","/**\n * Zod schema for PaginatedAdminUserList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { AdminUserSchema } from './AdminUser.schema'\n\nexport const PaginatedAdminUserListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(AdminUserSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedAdminUserList = z.infer<typeof PaginatedAdminUserListSchema>","/**\n * Zod schema for PaginatedCurrencyListList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { CurrencyListSchema } from './CurrencyList.schema'\n\nexport const PaginatedCurrencyListListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(CurrencyListSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedCurrencyListList = z.infer<typeof PaginatedCurrencyListListSchema>","/**\n * Zod schema for PaginatedEmailLogList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { EmailLogSchema } from './EmailLog.schema'\n\nexport const PaginatedEmailLogListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(EmailLogSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedEmailLogList = z.infer<typeof PaginatedEmailLogListSchema>","/**\n * Zod schema for PaginatedEndpointGroupList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { EndpointGroupSchema } from './EndpointGroup.schema'\n\nexport const PaginatedEndpointGroupListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(EndpointGroupSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedEndpointGroupList = z.infer<typeof PaginatedEndpointGroupListSchema>","/**\n * Zod schema for PaginatedLeadSubmissionList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { LeadSubmissionSchema } from './LeadSubmission.schema'\n\nexport const PaginatedLeadSubmissionListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(LeadSubmissionSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedLeadSubmissionList = z.infer<typeof PaginatedLeadSubmissionListSchema>","/**\n * Zod schema for PaginatedMessageList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { MessageSchema } from './Message.schema'\n\nexport const PaginatedMessageListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(MessageSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedMessageList = z.infer<typeof PaginatedMessageListSchema>","/**\n * Zod schema for PaginatedNetworkList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { NetworkSchema } from './Network.schema'\n\nexport const PaginatedNetworkListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(NetworkSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedNetworkList = z.infer<typeof PaginatedNetworkListSchema>","/**\n * Zod schema for PaginatedNewsletterCampaignList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { NewsletterCampaignSchema } from './NewsletterCampaign.schema'\n\nexport const PaginatedNewsletterCampaignListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(NewsletterCampaignSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedNewsletterCampaignList = z.infer<typeof PaginatedNewsletterCampaignListSchema>","/**\n * Zod schema for PaginatedNewsletterList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { NewsletterSchema } from './Newsletter.schema'\n\nexport const PaginatedNewsletterListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(NewsletterSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedNewsletterList = z.infer<typeof PaginatedNewsletterListSchema>","/**\n * Zod schema for PaginatedNewsletterSubscriptionList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { NewsletterSubscriptionSchema } from './NewsletterSubscription.schema'\n\nexport const PaginatedNewsletterSubscriptionListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(NewsletterSubscriptionSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedNewsletterSubscriptionList = z.infer<typeof PaginatedNewsletterSubscriptionListSchema>","/**\n * Zod schema for PaginatedPaymentListList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { PaymentListSchema } from './PaymentList.schema'\n\nexport const PaginatedPaymentListListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(PaymentListSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedPaymentListList = z.infer<typeof PaginatedPaymentListListSchema>","/**\n * Zod schema for PaymentList\n *\n * This schema provides runtime validation and type inference.\n * * Lightweight serializer for payment lists.\n\nOptimized for list views with minimal data.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Lightweight serializer for payment lists.\n\nOptimized for list views with minimal data.\n */\nexport const PaymentListSchema = z.object({\n id: z.uuid(),\n amount_usd: z.number(),\n currency: z.int(),\n provider: z.nativeEnum(Enums.PaymentListProvider),\n status: z.nativeEnum(Enums.PaymentListStatus),\n status_display: z.string(),\n amount_display: z.string(),\n created_at: z.iso.datetime(),\n expires_at: z.iso.datetime().nullable(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaymentList = z.infer<typeof PaymentListSchema>","/**\n * Zod schema for PaginatedProviderCurrencyList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { ProviderCurrencySchema } from './ProviderCurrency.schema'\n\nexport const PaginatedProviderCurrencyListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(ProviderCurrencySchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedProviderCurrencyList = z.infer<typeof PaginatedProviderCurrencyListSchema>","/**\n * Zod schema for ProviderCurrency\n *\n * This schema provides runtime validation and type inference.\n * * Provider currency serializer for provider-specific currency info.\n\nUsed for provider currency management and rates.\n * */\nimport { z } from 'zod'\nimport { CurrencyListSchema } from './CurrencyList.schema'\nimport { NetworkSchema } from './Network.schema'\n\n/**\n * Provider currency serializer for provider-specific currency info.\n\nUsed for provider currency management and rates.\n */\nexport const ProviderCurrencySchema = z.object({\n id: z.int(),\n currency: CurrencyListSchema,\n network: NetworkSchema,\n provider: z.string(),\n provider_currency_code: z.string(),\n provider_min_amount_usd: z.number(),\n provider_max_amount_usd: z.number(),\n provider_fee_percentage: z.number(),\n provider_fixed_fee_usd: z.number(),\n is_enabled: z.boolean(),\n created_at: z.iso.datetime(),\n updated_at: z.iso.datetime(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type ProviderCurrency = z.infer<typeof ProviderCurrencySchema>","/**\n * Zod schema for PaginatedRecentPaymentList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { RecentPaymentSchema } from './RecentPayment.schema'\n\nexport const PaginatedRecentPaymentListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(RecentPaymentSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedRecentPaymentList = z.infer<typeof PaginatedRecentPaymentListSchema>","/**\n * Zod schema for RecentPayment\n *\n * This schema provides runtime validation and type inference.\n * * Recent payment item\n * */\nimport { z } from 'zod'\n\n/**\n * Recent payment item\n */\nexport const RecentPaymentSchema = z.object({\n id: z.uuid(),\n internal_payment_id: z.string(),\n amount_usd: z.number(),\n amount_display: z.string(),\n currency_code: z.string(),\n status: z.string(),\n status_display: z.string(),\n status_color: z.string(),\n provider: z.string(),\n created_at: z.iso.datetime(),\n completed_at: z.iso.datetime().nullable(),\n is_pending: z.boolean(),\n is_completed: z.boolean(),\n is_failed: z.boolean(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type RecentPayment = z.infer<typeof RecentPaymentSchema>","/**\n * Zod schema for PaginatedRecentTransactionList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { RecentTransactionSchema } from './RecentTransaction.schema'\n\nexport const PaginatedRecentTransactionListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(RecentTransactionSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedRecentTransactionList = z.infer<typeof PaginatedRecentTransactionListSchema>","/**\n * Zod schema for RecentTransaction\n *\n * This schema provides runtime validation and type inference.\n * * Recent transaction item\n * */\nimport { z } from 'zod'\n\n/**\n * Recent transaction item\n */\nexport const RecentTransactionSchema = z.object({\n id: z.uuid(),\n transaction_type: z.string(),\n amount_usd: z.number(),\n amount_display: z.string(),\n balance_after: z.number(),\n description: z.string(),\n created_at: z.iso.datetime(),\n payment_id: z.string().nullable(),\n is_credit: z.boolean(),\n is_debit: z.boolean(),\n type_color: z.string(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type RecentTransaction = z.infer<typeof RecentTransactionSchema>","/**\n * Zod schema for PaginatedSubscriptionListList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { SubscriptionListSchema } from './SubscriptionList.schema'\n\nexport const PaginatedSubscriptionListListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(SubscriptionListSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedSubscriptionListList = z.infer<typeof PaginatedSubscriptionListListSchema>","/**\n * Zod schema for SubscriptionList\n *\n * This schema provides runtime validation and type inference.\n * * Lightweight subscription serializer for lists.\n\nOptimized for subscription lists with minimal data.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Lightweight subscription serializer for lists.\n\nOptimized for subscription lists with minimal data.\n */\nexport const SubscriptionListSchema = z.object({\n id: z.uuid(),\n user: z.string(),\n tariff_name: z.string(),\n status: z.nativeEnum(Enums.SubscriptionListStatus),\n status_display: z.string(),\n is_active: z.boolean(),\n is_expired: z.boolean(),\n expires_at: z.iso.datetime(),\n created_at: z.iso.datetime(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type SubscriptionList = z.infer<typeof SubscriptionListSchema>","/**\n * Zod schema for PaginatedTariffList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { TariffSchema } from './Tariff.schema'\n\nexport const PaginatedTariffListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(TariffSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedTariffList = z.infer<typeof PaginatedTariffListSchema>","/**\n * Zod schema for Tariff\n *\n * This schema provides runtime validation and type inference.\n * * Tariff serializer for subscription pricing.\n\nUsed for tariff information and selection.\n * */\nimport { z } from 'zod'\nimport { EndpointGroupSchema } from './EndpointGroup.schema'\n\n/**\n * Tariff serializer for subscription pricing.\n\nUsed for tariff information and selection.\n */\nexport const TariffSchema = z.object({\n id: z.int(),\n name: z.string(),\n description: z.string(),\n monthly_price_usd: z.number(),\n requests_per_month: z.int(),\n requests_per_hour: z.int(),\n is_active: z.boolean(),\n endpoint_groups: z.array(EndpointGroupSchema),\n endpoint_groups_count: z.int(),\n created_at: z.iso.datetime(),\n updated_at: z.iso.datetime(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type Tariff = z.infer<typeof TariffSchema>","/**\n * Zod schema for PaginatedTicketList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { TicketSchema } from './Ticket.schema'\n\nexport const PaginatedTicketListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(TicketSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedTicketList = z.infer<typeof PaginatedTicketListSchema>","/**\n * Zod schema for Ticket\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\nexport const TicketSchema = z.object({\n uuid: z.uuid(),\n user: z.int(),\n subject: z.string().max(255),\n status: z.nativeEnum(Enums.TicketStatus).optional(),\n created_at: z.iso.datetime(),\n unanswered_messages_count: z.int(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type Ticket = z.infer<typeof TicketSchema>","/**\n * Zod schema for PaginatedTransactionList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { TransactionSchema } from './Transaction.schema'\n\nexport const PaginatedTransactionListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(TransactionSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedTransactionList = z.infer<typeof PaginatedTransactionListSchema>","/**\n * Zod schema for Transaction\n *\n * This schema provides runtime validation and type inference.\n * * Transaction serializer with full details.\n\nUsed for transaction history and details.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Transaction serializer with full details.\n\nUsed for transaction history and details.\n */\nexport const TransactionSchema = z.object({\n id: z.uuid(),\n user: z.string(),\n amount_usd: z.number(),\n amount_display: z.string(),\n transaction_type: z.nativeEnum(Enums.TransactionTransactionType),\n type_color: z.string(),\n description: z.string(),\n payment_id: z.string().nullable(),\n metadata: z.string(),\n is_credit: z.boolean(),\n is_debit: z.boolean(),\n created_at: z.iso.datetime(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type Transaction = z.infer<typeof TransactionSchema>","/**\n * Zod schema for PaginatedUserBalanceList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { UserBalanceSchema } from './UserBalance.schema'\n\nexport const PaginatedUserBalanceListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(UserBalanceSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedUserBalanceList = z.infer<typeof PaginatedUserBalanceListSchema>","/**\n * Zod schema for UserBalance\n *\n * This schema provides runtime validation and type inference.\n * * User balance serializer with computed fields.\n\nProvides balance information with display helpers.\n * */\nimport { z } from 'zod'\n\n/**\n * User balance serializer with computed fields.\n\nProvides balance information with display helpers.\n */\nexport const UserBalanceSchema = z.object({\n user: z.string(),\n balance_usd: z.number(),\n balance_display: z.string(),\n is_empty: z.boolean(),\n has_transactions: z.boolean(),\n created_at: z.iso.datetime(),\n updated_at: z.iso.datetime(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type UserBalance = z.infer<typeof UserBalanceSchema>","/**\n * Zod schema for PaginatedWebhookEventListList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { WebhookEventListSchema } from './WebhookEventList.schema'\n\nexport const PaginatedWebhookEventListListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(WebhookEventListSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedWebhookEventListList = z.infer<typeof PaginatedWebhookEventListListSchema>","/**\n * Zod schema for WebhookEventList\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for paginated webhook events list.\n * */\nimport { z } from 'zod'\nimport { WebhookEventSchema } from './WebhookEvent.schema'\n\n/**\n * Serializer for paginated webhook events list.\n */\nexport const WebhookEventListSchema = z.object({\n events: z.array(WebhookEventSchema),\n total: z.int(),\n page: z.int(),\n per_page: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type WebhookEventList = z.infer<typeof WebhookEventListSchema>","/**\n * Zod schema for WebhookEvent\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for individual webhook event.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Serializer for individual webhook event.\n */\nexport const WebhookEventSchema = z.object({\n id: z.int(),\n provider: z.string().max(50),\n event_type: z.string().max(100),\n status: z.nativeEnum(Enums.WebhookEventStatus),\n timestamp: z.iso.datetime(),\n payload_size: z.int(),\n response_time: z.int(),\n retry_count: z.int().optional(),\n error_message: z.string().max(500).optional(),\n payload_preview: z.string().max(200).optional(),\n response_status_code: z.int().optional(),\n webhook_url: z.url().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type WebhookEvent = z.infer<typeof WebhookEventSchema>","/**\n * Zod schema for PaginatedWebhookStatsList\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport { WebhookStatsSchema } from './WebhookStats.schema'\n\nexport const PaginatedWebhookStatsListSchema = z.object({\n count: z.int(),\n page: z.int(),\n pages: z.int(),\n page_size: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n next_page: z.int().nullable().optional(),\n previous_page: z.int().nullable().optional(),\n results: z.array(WebhookStatsSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaginatedWebhookStatsList = z.infer<typeof PaginatedWebhookStatsListSchema>","/**\n * Zod schema for WebhookStats\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for comprehensive webhook statistics.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for comprehensive webhook statistics.\n */\nexport const WebhookStatsSchema = z.object({\n total: z.int(),\n successful: z.int(),\n failed: z.int(),\n pending: z.int(),\n success_rate: z.number(),\n providers: z.record(z.string(), z.any()),\n last_24h: z.record(z.string(), z.any()),\n avg_response_time: z.number(),\n max_response_time: z.int(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type WebhookStats = z.infer<typeof WebhookStatsSchema>","/**\n * Zod schema for PatchedAPIKeyUpdateRequest\n *\n * This schema provides runtime validation and type inference.\n * * API key update serializer for modifying API key properties.\n\nAllows updating name and active status only.\n * */\nimport { z } from 'zod'\n\n/**\n * API key update serializer for modifying API key properties.\n\nAllows updating name and active status only.\n */\nexport const PatchedAPIKeyUpdateRequestSchema = z.object({\n name: z.string().min(1).max(100).optional(),\n is_active: z.boolean().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PatchedAPIKeyUpdateRequest = z.infer<typeof PatchedAPIKeyUpdateRequestSchema>","/**\n * Zod schema for PatchedAdminPaymentUpdateRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for updating payments in admin interface.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Serializer for updating payments in admin interface.\n */\nexport const PatchedAdminPaymentUpdateRequestSchema = z.object({\n status: z.nativeEnum(Enums.PatchedAdminPaymentUpdateRequestStatus).optional(),\n description: z.string().optional(),\n callback_url: z.url().nullable().optional(),\n cancel_url: z.url().nullable().optional(),\n provider_data: z.string().optional(),\n webhook_data: z.string().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PatchedAdminPaymentUpdateRequest = z.infer<typeof PatchedAdminPaymentUpdateRequestSchema>","/**\n * Zod schema for PatchedLeadSubmissionRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for lead form submission from frontend.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Serializer for lead form submission from frontend.\n */\nexport const PatchedLeadSubmissionRequestSchema = z.object({\n name: z.string().min(1).max(200).optional(),\n email: z.email().optional(),\n company: z.string().max(200).nullable().optional(),\n company_site: z.string().max(200).nullable().optional(),\n contact_type: z.nativeEnum(Enums.PatchedLeadSubmissionRequestContactType).optional(),\n contact_value: z.string().max(200).nullable().optional(),\n subject: z.string().max(200).nullable().optional(),\n message: z.string().min(1).optional(),\n extra: z.string().nullable().optional(),\n site_url: z.url().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PatchedLeadSubmissionRequest = z.infer<typeof PatchedLeadSubmissionRequestSchema>","/**\n * Zod schema for PatchedMessageRequest\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\n\nexport const PatchedMessageRequestSchema = z.object({\n text: z.string().min(1).optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PatchedMessageRequest = z.infer<typeof PatchedMessageRequestSchema>","/**\n * Zod schema for PatchedNewsletterCampaignRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for NewsletterCampaign model.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for NewsletterCampaign model.\n */\nexport const PatchedNewsletterCampaignRequestSchema = z.object({\n newsletter: z.int().optional(),\n subject: z.string().min(1).max(255).optional(),\n email_title: z.string().min(1).max(255).optional(),\n main_text: z.string().min(1).optional(),\n main_html_content: z.string().optional(),\n button_text: z.string().max(100).optional(),\n button_url: z.url().optional(),\n secondary_text: z.string().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PatchedNewsletterCampaignRequest = z.infer<typeof PatchedNewsletterCampaignRequestSchema>","/**\n * Zod schema for PatchedPaymentRequest\n *\n * This schema provides runtime validation and type inference.\n * * Complete payment serializer with full details.\n\nUsed for detail views and updates.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Complete payment serializer with full details.\n\nUsed for detail views and updates.\n */\nexport const PatchedPaymentRequestSchema = z.object({\n amount_usd: z.number().min(1.0).max(50000.0).optional(),\n currency: z.int().optional(),\n network: z.int().nullable().optional(),\n provider: z.nativeEnum(Enums.PatchedPaymentRequestProvider).optional(),\n status: z.nativeEnum(Enums.PatchedPaymentRequestStatus).optional(),\n callback_url: z.url().nullable().optional(),\n cancel_url: z.url().nullable().optional(),\n description: z.string().optional(),\n expires_at: z.iso.datetime().nullable().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PatchedPaymentRequest = z.infer<typeof PatchedPaymentRequestSchema>","/**\n * Zod schema for PatchedSubscriptionRequest\n *\n * This schema provides runtime validation and type inference.\n * * Complete subscription serializer with full details.\n\nUsed for subscription detail views and updates.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Complete subscription serializer with full details.\n\nUsed for subscription detail views and updates.\n */\nexport const PatchedSubscriptionRequestSchema = z.object({\n status: z.nativeEnum(Enums.PatchedSubscriptionRequestStatus).optional(),\n tier: z.nativeEnum(Enums.PatchedSubscriptionRequestTier).optional(),\n expires_at: z.iso.datetime().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PatchedSubscriptionRequest = z.infer<typeof PatchedSubscriptionRequestSchema>","/**\n * Zod schema for PatchedTicketRequest\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\nexport const PatchedTicketRequestSchema = z.object({\n user: z.int().optional(),\n subject: z.string().min(1).max(255).optional(),\n status: z.nativeEnum(Enums.PatchedTicketRequestStatus).optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PatchedTicketRequest = z.infer<typeof PatchedTicketRequestSchema>","/**\n * Zod schema for PatchedUnsubscribeRequest\n *\n * This schema provides runtime validation and type inference.\n * * Simple serializer for unsubscribe.\n * */\nimport { z } from 'zod'\n\n/**\n * Simple serializer for unsubscribe.\n */\nexport const PatchedUnsubscribeRequestSchema = z.object({\n subscription_id: z.int().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PatchedUnsubscribeRequest = z.infer<typeof PatchedUnsubscribeRequestSchema>","/**\n * Zod schema for PatchedUserProfileUpdateRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for updating user profile.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for updating user profile.\n */\nexport const PatchedUserProfileUpdateRequestSchema = z.object({\n first_name: z.string().max(50).optional(),\n last_name: z.string().max(50).optional(),\n company: z.string().max(100).optional(),\n phone: z.string().max(20).optional(),\n position: z.string().max(100).optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PatchedUserProfileUpdateRequest = z.infer<typeof PatchedUserProfileUpdateRequestSchema>","/**\n * Zod schema for Payment\n *\n * This schema provides runtime validation and type inference.\n * * Complete payment serializer with full details.\n\nUsed for detail views and updates.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Complete payment serializer with full details.\n\nUsed for detail views and updates.\n */\nexport const PaymentSchema = z.object({\n id: z.uuid(),\n user: z.string(),\n amount_usd: z.number().min(1.0).max(50000.0),\n currency: z.int(),\n network: z.int().nullable().optional(),\n provider: z.nativeEnum(Enums.PaymentProvider).optional(),\n status: z.nativeEnum(Enums.PaymentStatus).optional(),\n status_display: z.string(),\n amount_display: z.string(),\n provider_payment_id: z.string().nullable(),\n payment_url: z.url().nullable(),\n pay_address: z.string().nullable(),\n callback_url: z.url().nullable().optional(),\n cancel_url: z.url().nullable().optional(),\n description: z.string().optional(),\n transaction_hash: z.string().nullable(),\n confirmations_count: z.int(),\n created_at: z.iso.datetime(),\n updated_at: z.iso.datetime(),\n expires_at: z.iso.datetime().nullable().optional(),\n completed_at: z.iso.datetime().nullable(),\n is_pending: z.boolean(),\n is_completed: z.boolean(),\n is_failed: z.boolean(),\n is_expired: z.boolean(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type Payment = z.infer<typeof PaymentSchema>","/**\n * Zod schema for PaymentAnalyticsResponse\n *\n * This schema provides runtime validation and type inference.\n * * Payment analytics response with currency and provider breakdown\n * */\nimport { z } from 'zod'\nimport { CurrencyAnalyticsItemSchema } from './CurrencyAnalyticsItem.schema'\nimport { ProviderAnalyticsItemSchema } from './ProviderAnalyticsItem.schema'\n\n/**\n * Payment analytics response with currency and provider breakdown\n */\nexport const PaymentAnalyticsResponseSchema = z.object({\n currency_analytics: z.array(CurrencyAnalyticsItemSchema),\n provider_analytics: z.array(ProviderAnalyticsItemSchema),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaymentAnalyticsResponse = z.infer<typeof PaymentAnalyticsResponseSchema>","/**\n * Zod schema for ProviderAnalyticsItem\n *\n * This schema provides runtime validation and type inference.\n * * Analytics data for a single payment provider\n * */\nimport { z } from 'zod'\n\n/**\n * Analytics data for a single payment provider\n */\nexport const ProviderAnalyticsItemSchema = z.object({\n provider: z.string(),\n provider_display: z.string(),\n total_payments: z.int(),\n total_amount: z.number(),\n completed_payments: z.int(),\n success_rate: z.number(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type ProviderAnalyticsItem = z.infer<typeof ProviderAnalyticsItemSchema>","/**\n * Zod schema for PaymentCreate\n *\n * This schema provides runtime validation and type inference.\n * * Payment creation serializer with Pydantic integration.\n\nValidates input and delegates to PaymentService.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Payment creation serializer with Pydantic integration.\n\nValidates input and delegates to PaymentService.\n */\nexport const PaymentCreateSchema = z.object({\n amount_usd: z.number().min(1.0).max(50000.0),\n currency_code: z.nativeEnum(Enums.PaymentCreateCurrencyCode),\n provider: z.nativeEnum(Enums.PaymentCreateProvider).optional(),\n callback_url: z.url().optional(),\n cancel_url: z.url().optional(),\n description: z.string().max(500).optional(),\n metadata: z.string().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaymentCreate = z.infer<typeof PaymentCreateSchema>","/**\n * Zod schema for PaymentCreateRequest\n *\n * This schema provides runtime validation and type inference.\n * * Payment creation serializer with Pydantic integration.\n\nValidates input and delegates to PaymentService.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Payment creation serializer with Pydantic integration.\n\nValidates input and delegates to PaymentService.\n */\nexport const PaymentCreateRequestSchema = z.object({\n amount_usd: z.number().min(1.0).max(50000.0),\n currency_code: z.nativeEnum(Enums.PaymentCreateRequestCurrencyCode),\n provider: z.nativeEnum(Enums.PaymentCreateRequestProvider).optional(),\n callback_url: z.url().optional(),\n cancel_url: z.url().optional(),\n description: z.string().max(500).optional(),\n metadata: z.string().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaymentCreateRequest = z.infer<typeof PaymentCreateRequestSchema>","/**\n * Zod schema for PaymentOverview\n *\n * This schema provides runtime validation and type inference.\n * * Payments overview metrics\n * */\nimport { z } from 'zod'\n\n/**\n * Payments overview metrics\n */\nexport const PaymentOverviewSchema = z.object({\n total_payments: z.int(),\n completed_payments: z.int(),\n pending_payments: z.int(),\n failed_payments: z.int(),\n total_amount_usd: z.number(),\n completed_amount_usd: z.number(),\n average_payment_usd: z.number(),\n success_rate: z.number(),\n last_payment_at: z.iso.datetime().nullable(),\n payments_this_month: z.int(),\n amount_this_month: z.number(),\n top_currency: z.string().nullable(),\n top_currency_count: z.int(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaymentOverview = z.infer<typeof PaymentOverviewSchema>","/**\n * Zod schema for PaymentRequest\n *\n * This schema provides runtime validation and type inference.\n * * Complete payment serializer with full details.\n\nUsed for detail views and updates.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Complete payment serializer with full details.\n\nUsed for detail views and updates.\n */\nexport const PaymentRequestSchema = z.object({\n amount_usd: z.number().min(1.0).max(50000.0),\n currency: z.int(),\n network: z.int().nullable().optional(),\n provider: z.nativeEnum(Enums.PaymentRequestProvider).optional(),\n status: z.nativeEnum(Enums.PaymentRequestStatus).optional(),\n callback_url: z.url().nullable().optional(),\n cancel_url: z.url().nullable().optional(),\n description: z.string().optional(),\n expires_at: z.iso.datetime().nullable().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaymentRequest = z.infer<typeof PaymentRequestSchema>","/**\n * Zod schema for PaymentsChartResponse\n *\n * This schema provides runtime validation and type inference.\n * * Complete chart response for payments analytics\n * */\nimport { z } from 'zod'\nimport { ChartSeriesSchema } from './ChartSeries.schema'\n\n/**\n * Complete chart response for payments analytics\n */\nexport const PaymentsChartResponseSchema = z.object({\n series: z.array(ChartSeriesSchema),\n period: z.string(),\n total_amount: z.number(),\n total_payments: z.int(),\n success_rate: z.number(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaymentsChartResponse = z.infer<typeof PaymentsChartResponseSchema>","/**\n * Zod schema for PaymentsDashboardOverview\n *\n * This schema provides runtime validation and type inference.\n * * Complete payments dashboard overview response\n * */\nimport { z } from 'zod'\nimport { PaymentsChartResponseSchema } from './PaymentsChartResponse.schema'\nimport { PaymentsMetricsSchema } from './PaymentsMetrics.schema'\nimport { RecentPaymentSchema } from './RecentPayment.schema'\nimport { RecentTransactionSchema } from './RecentTransaction.schema'\n\n/**\n * Complete payments dashboard overview response\n */\nexport const PaymentsDashboardOverviewSchema = z.object({\n metrics: PaymentsMetricsSchema,\n recent_payments: z.array(RecentPaymentSchema),\n recent_transactions: z.array(RecentTransactionSchema),\n chart_data: PaymentsChartResponseSchema,\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaymentsDashboardOverview = z.infer<typeof PaymentsDashboardOverviewSchema>","/**\n * Zod schema for PaymentsMetrics\n *\n * This schema provides runtime validation and type inference.\n * * Complete payments dashboard metrics\n * */\nimport { z } from 'zod'\nimport { APIKeysOverviewSchema } from './APIKeysOverview.schema'\nimport { BalanceOverviewSchema } from './BalanceOverview.schema'\nimport { PaymentOverviewSchema } from './PaymentOverview.schema'\nimport { SubscriptionOverviewSchema } from './SubscriptionOverview.schema'\n\n/**\n * Complete payments dashboard metrics\n */\nexport const PaymentsMetricsSchema = z.object({\n balance: BalanceOverviewSchema,\n subscription: SubscriptionOverviewSchema,\n api_keys: APIKeysOverviewSchema,\n payments: PaymentOverviewSchema,\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type PaymentsMetrics = z.infer<typeof PaymentsMetricsSchema>","/**\n * Zod schema for SubscriptionOverview\n *\n * This schema provides runtime validation and type inference.\n * * Current subscription overview\n * */\nimport { z } from 'zod'\n\n/**\n * Current subscription overview\n */\nexport const SubscriptionOverviewSchema = z.object({\n tier: z.string(),\n tier_display: z.string(),\n status: z.string(),\n status_display: z.string(),\n status_color: z.string(),\n is_active: z.boolean(),\n is_expired: z.boolean(),\n days_remaining: z.int(),\n requests_per_hour: z.int(),\n requests_per_day: z.int(),\n total_requests: z.int(),\n usage_percentage: z.number(),\n monthly_cost_usd: z.number(),\n cost_display: z.string(),\n starts_at: z.iso.datetime(),\n expires_at: z.iso.datetime(),\n last_request_at: z.iso.datetime().nullable(),\n endpoint_groups_count: z.int(),\n endpoint_groups: z.array(z.string()),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type SubscriptionOverview = z.infer<typeof SubscriptionOverviewSchema>","/**\n * Zod schema for QueueAction\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for queue management actions.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Serializer for queue management actions.\n */\nexport const QueueActionSchema = z.object({\n action: z.nativeEnum(Enums.QueueActionAction),\n queue_names: z.array(z.string()).optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type QueueAction = z.infer<typeof QueueActionSchema>","/**\n * Zod schema for QueueActionRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for queue management actions.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Serializer for queue management actions.\n */\nexport const QueueActionRequestSchema = z.object({\n action: z.nativeEnum(Enums.QueueActionRequestAction),\n queue_names: z.array(z.string().min(1)).optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type QueueActionRequest = z.infer<typeof QueueActionRequestSchema>","/**\n * Zod schema for QueueStatus\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for queue status data.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for queue status data.\n */\nexport const QueueStatusSchema = z.object({\n queues: z.record(z.string(), z.any()),\n workers: z.int(),\n redis_connected: z.boolean(),\n timestamp: z.string(),\n error: z.string().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type QueueStatus = z.infer<typeof QueueStatusSchema>","/**\n * Zod schema for QuickHealth\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for quick health check response.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for quick health check response.\n */\nexport const QuickHealthSchema = z.object({\n status: z.string(),\n timestamp: z.iso.datetime(),\n error: z.string().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type QuickHealth = z.infer<typeof QuickHealthSchema>","/**\n * Zod schema for SendCampaignRequest\n *\n * This schema provides runtime validation and type inference.\n * * Simple serializer for sending campaign.\n * */\nimport { z } from 'zod'\n\n/**\n * Simple serializer for sending campaign.\n */\nexport const SendCampaignRequestSchema = z.object({\n campaign_id: z.int(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type SendCampaignRequest = z.infer<typeof SendCampaignRequestSchema>","/**\n * Zod schema for SendCampaignResponse\n *\n * This schema provides runtime validation and type inference.\n * * Response for sending campaign.\n * */\nimport { z } from 'zod'\n\n/**\n * Response for sending campaign.\n */\nexport const SendCampaignResponseSchema = z.object({\n success: z.boolean(),\n message: z.string().optional(),\n sent_count: z.int().optional(),\n error: z.string().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type SendCampaignResponse = z.infer<typeof SendCampaignResponseSchema>","/**\n * Zod schema for SubscribeRequest\n *\n * This schema provides runtime validation and type inference.\n * * Simple serializer for newsletter subscription.\n * */\nimport { z } from 'zod'\n\n/**\n * Simple serializer for newsletter subscription.\n */\nexport const SubscribeRequestSchema = z.object({\n newsletter_id: z.int(),\n email: z.email(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type SubscribeRequest = z.infer<typeof SubscribeRequestSchema>","/**\n * Zod schema for SubscribeResponse\n *\n * This schema provides runtime validation and type inference.\n * * Response for subscription.\n * */\nimport { z } from 'zod'\n\n/**\n * Response for subscription.\n */\nexport const SubscribeResponseSchema = z.object({\n success: z.boolean(),\n message: z.string(),\n subscription_id: z.int().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type SubscribeResponse = z.infer<typeof SubscribeResponseSchema>","/**\n * Zod schema for Subscription\n *\n * This schema provides runtime validation and type inference.\n * * Complete subscription serializer with full details.\n\nUsed for subscription detail views and updates.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\nimport { EndpointGroupSchema } from './EndpointGroup.schema'\nimport { TariffSchema } from './Tariff.schema'\n\n/**\n * Complete subscription serializer with full details.\n\nUsed for subscription detail views and updates.\n */\nexport const SubscriptionSchema = z.object({\n id: z.uuid(),\n user: z.string(),\n tariff: TariffSchema,\n endpoint_group: EndpointGroupSchema,\n status: z.nativeEnum(Enums.SubscriptionStatus).optional(),\n status_display: z.string(),\n status_color: z.string(),\n tier: z.nativeEnum(Enums.SubscriptionTier).optional(),\n total_requests: z.int(),\n usage_percentage: z.number(),\n last_request_at: z.iso.datetime().nullable(),\n expires_at: z.iso.datetime(),\n is_active: z.boolean(),\n is_expired: z.boolean(),\n created_at: z.iso.datetime(),\n updated_at: z.iso.datetime(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type Subscription = z.infer<typeof SubscriptionSchema>","/**\n * Zod schema for SubscriptionCreate\n *\n * This schema provides runtime validation and type inference.\n * * Subscription creation serializer with service integration.\n\nValidates input and delegates to SubscriptionService.\n * */\nimport { z } from 'zod'\n\n/**\n * Subscription creation serializer with service integration.\n\nValidates input and delegates to SubscriptionService.\n */\nexport const SubscriptionCreateSchema = z.object({\n tariff_id: z.int().min(1.0),\n endpoint_group_id: z.int().min(1.0).nullable().optional(),\n duration_days: z.int().min(1.0).max(365.0).optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type SubscriptionCreate = z.infer<typeof SubscriptionCreateSchema>","/**\n * Zod schema for SubscriptionCreateRequest\n *\n * This schema provides runtime validation and type inference.\n * * Subscription creation serializer with service integration.\n\nValidates input and delegates to SubscriptionService.\n * */\nimport { z } from 'zod'\n\n/**\n * Subscription creation serializer with service integration.\n\nValidates input and delegates to SubscriptionService.\n */\nexport const SubscriptionCreateRequestSchema = z.object({\n tariff_id: z.int().min(1.0),\n endpoint_group_id: z.int().min(1.0).nullable().optional(),\n duration_days: z.int().min(1.0).max(365.0).optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type SubscriptionCreateRequest = z.infer<typeof SubscriptionCreateRequestSchema>","/**\n * Zod schema for SubscriptionRequest\n *\n * This schema provides runtime validation and type inference.\n * * Complete subscription serializer with full details.\n\nUsed for subscription detail views and updates.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Complete subscription serializer with full details.\n\nUsed for subscription detail views and updates.\n */\nexport const SubscriptionRequestSchema = z.object({\n status: z.nativeEnum(Enums.SubscriptionRequestStatus).optional(),\n tier: z.nativeEnum(Enums.SubscriptionRequestTier).optional(),\n expires_at: z.iso.datetime(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type SubscriptionRequest = z.infer<typeof SubscriptionRequestSchema>","/**\n * Zod schema for SuccessResponse\n *\n * This schema provides runtime validation and type inference.\n * * Generic success response.\n * */\nimport { z } from 'zod'\n\n/**\n * Generic success response.\n */\nexport const SuccessResponseSchema = z.object({\n success: z.boolean(),\n message: z.string(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type SuccessResponse = z.infer<typeof SuccessResponseSchema>","/**\n * Zod schema for SupportedProviders\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for supported providers response.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for supported providers response.\n */\nexport const SupportedProvidersSchema = z.object({\n success: z.boolean(),\n providers: z.string(),\n total_count: z.int(),\n timestamp: z.iso.datetime(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type SupportedProviders = z.infer<typeof SupportedProvidersSchema>","/**\n * Zod schema for TaskStatistics\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for task statistics data.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for task statistics data.\n */\nexport const TaskStatisticsSchema = z.object({\n statistics: z.record(z.string(), z.any()),\n recent_tasks: z.array(z.record(z.string(), z.any())),\n timestamp: z.string(),\n error: z.string().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type TaskStatistics = z.infer<typeof TaskStatisticsSchema>","/**\n * Zod schema for TestEmailRequest\n *\n * This schema provides runtime validation and type inference.\n * * Simple serializer for test email.\n * */\nimport { z } from 'zod'\n\n/**\n * Simple serializer for test email.\n */\nexport const TestEmailRequestSchema = z.object({\n email: z.email(),\n subject: z.string().min(1).max(255).optional(),\n message: z.string().min(1).optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type TestEmailRequest = z.infer<typeof TestEmailRequestSchema>","/**\n * Zod schema for TicketRequest\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\nexport const TicketRequestSchema = z.object({\n user: z.int(),\n subject: z.string().min(1).max(255),\n status: z.nativeEnum(Enums.TicketRequestStatus).optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type TicketRequest = z.infer<typeof TicketRequestSchema>","/**\n * Zod schema for TokenRefresh\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\n\nexport const TokenRefreshSchema = z.object({\n access: z.string(),\n refresh: z.string(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type TokenRefresh = z.infer<typeof TokenRefreshSchema>","/**\n * Zod schema for TokenRefreshRequest\n *\n * This schema provides runtime validation and type inference.\n * */\nimport { z } from 'zod'\n\nexport const TokenRefreshRequestSchema = z.object({\n refresh: z.string().min(1),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type TokenRefreshRequest = z.infer<typeof TokenRefreshRequestSchema>","/**\n * Zod schema for Unsubscribe\n *\n * This schema provides runtime validation and type inference.\n * * Simple serializer for unsubscribe.\n * */\nimport { z } from 'zod'\n\n/**\n * Simple serializer for unsubscribe.\n */\nexport const UnsubscribeSchema = z.object({\n subscription_id: z.int(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type Unsubscribe = z.infer<typeof UnsubscribeSchema>","/**\n * Zod schema for UnsubscribeRequest\n *\n * This schema provides runtime validation and type inference.\n * * Simple serializer for unsubscribe.\n * */\nimport { z } from 'zod'\n\n/**\n * Simple serializer for unsubscribe.\n */\nexport const UnsubscribeRequestSchema = z.object({\n subscription_id: z.int(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type UnsubscribeRequest = z.infer<typeof UnsubscribeRequestSchema>","/**\n * Zod schema for UserProfileUpdateRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for updating user profile.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for updating user profile.\n */\nexport const UserProfileUpdateRequestSchema = z.object({\n first_name: z.string().max(50).optional(),\n last_name: z.string().max(50).optional(),\n company: z.string().max(100).optional(),\n phone: z.string().max(20).optional(),\n position: z.string().max(100).optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type UserProfileUpdateRequest = z.infer<typeof UserProfileUpdateRequestSchema>","/**\n * Zod schema for WebhookEventListRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for paginated webhook events list.\n * */\nimport { z } from 'zod'\nimport { WebhookEventRequestSchema } from './WebhookEventRequest.schema'\n\n/**\n * Serializer for paginated webhook events list.\n */\nexport const WebhookEventListRequestSchema = z.object({\n events: z.array(WebhookEventRequestSchema),\n total: z.int(),\n page: z.int(),\n per_page: z.int(),\n has_next: z.boolean(),\n has_previous: z.boolean(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type WebhookEventListRequest = z.infer<typeof WebhookEventListRequestSchema>","/**\n * Zod schema for WebhookEventRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for individual webhook event.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Serializer for individual webhook event.\n */\nexport const WebhookEventRequestSchema = z.object({\n provider: z.string().min(1).max(50),\n event_type: z.string().min(1).max(100),\n status: z.nativeEnum(Enums.WebhookEventRequestStatus),\n timestamp: z.iso.datetime(),\n payload_size: z.int(),\n response_time: z.int(),\n retry_count: z.int().optional(),\n error_message: z.string().max(500).optional(),\n payload_preview: z.string().max(200).optional(),\n response_status_code: z.int().optional(),\n webhook_url: z.url().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type WebhookEventRequest = z.infer<typeof WebhookEventRequestSchema>","/**\n * Zod schema for WebhookHealth\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for webhook health check response.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for webhook health check response.\n */\nexport const WebhookHealthSchema = z.object({\n status: z.string().max(20),\n timestamp: z.iso.datetime(),\n providers: z.string(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type WebhookHealth = z.infer<typeof WebhookHealthSchema>","/**\n * Zod schema for WebhookProviderStats\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for provider-specific webhook statistics.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for provider-specific webhook statistics.\n */\nexport const WebhookProviderStatsSchema = z.object({\n total: z.int(),\n successful: z.int(),\n failed: z.int(),\n pending: z.int().optional(),\n success_rate: z.number(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type WebhookProviderStats = z.infer<typeof WebhookProviderStatsSchema>","/**\n * Zod schema for WebhookProviderStatsRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for provider-specific webhook statistics.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for provider-specific webhook statistics.\n */\nexport const WebhookProviderStatsRequestSchema = z.object({\n total: z.int(),\n successful: z.int(),\n failed: z.int(),\n pending: z.int().optional(),\n success_rate: z.number(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type WebhookProviderStatsRequest = z.infer<typeof WebhookProviderStatsRequestSchema>","/**\n * Zod schema for WebhookResponse\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for webhook processing response.\n\nStandard response format for all webhook endpoints.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for webhook processing response.\n\nStandard response format for all webhook endpoints.\n */\nexport const WebhookResponseSchema = z.object({\n success: z.boolean(),\n message: z.string().max(500),\n payment_id: z.string().max(256).optional(),\n provider_payment_id: z.string().max(256).optional(),\n processed_at: z.iso.datetime().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type WebhookResponse = z.infer<typeof WebhookResponseSchema>","/**\n * Zod schema for WebhookResponseRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for webhook processing response.\n\nStandard response format for all webhook endpoints.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for webhook processing response.\n\nStandard response format for all webhook endpoints.\n */\nexport const WebhookResponseRequestSchema = z.object({\n success: z.boolean(),\n message: z.string().min(1).max(500),\n payment_id: z.string().min(1).max(256).optional(),\n provider_payment_id: z.string().min(1).max(256).optional(),\n processed_at: z.iso.datetime().optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type WebhookResponseRequest = z.infer<typeof WebhookResponseRequestSchema>","/**\n * Zod schema for WebhookStatsRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for comprehensive webhook statistics.\n * */\nimport { z } from 'zod'\n\n/**\n * Serializer for comprehensive webhook statistics.\n */\nexport const WebhookStatsRequestSchema = z.object({\n total: z.int(),\n successful: z.int(),\n failed: z.int(),\n pending: z.int(),\n success_rate: z.number(),\n providers: z.record(z.string(), z.any()),\n last_24h: z.record(z.string(), z.any()),\n avg_response_time: z.number(),\n max_response_time: z.int(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type WebhookStatsRequest = z.infer<typeof WebhookStatsRequestSchema>","/**\n * Zod schema for WorkerAction\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for worker management actions.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Serializer for worker management actions.\n */\nexport const WorkerActionSchema = z.object({\n action: z.nativeEnum(Enums.WorkerActionAction),\n processes: z.int().min(1.0).max(10.0).optional(),\n threads: z.int().min(1.0).max(20.0).optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type WorkerAction = z.infer<typeof WorkerActionSchema>","/**\n * Zod schema for WorkerActionRequest\n *\n * This schema provides runtime validation and type inference.\n * * Serializer for worker management actions.\n * */\nimport { z } from 'zod'\nimport * as Enums from '../../enums'\n\n/**\n * Serializer for worker management actions.\n */\nexport const WorkerActionRequestSchema = z.object({\n action: z.nativeEnum(Enums.WorkerActionRequestAction),\n processes: z.int().min(1.0).max(10.0).optional(),\n threads: z.int().min(1.0).max(20.0).optional(),\n})\n\n/**\n * Infer TypeScript type from Zod schema\n */\nexport type WorkerActionRequest = z.infer<typeof WorkerActionRequestSchema>","/**\n * Typed Fetchers - Universal API functions\n *\n * Auto-generated from OpenAPI specification.\n * These functions work in any JavaScript environment.\n *\n * Features:\n * - Runtime validation with Zod\n * - Type-safe parameters and responses\n * - Works with any data-fetching library (SWR, React Query, etc)\n * - Server Component compatible\n *\n * Usage:\n * ```typescript\n * import * as fetchers from './fetchers'\n *\n * // Direct usage\n * const user = await fetchers.getUser(1)\n *\n * // With SWR\n * const { data } = useSWR('user-1', () => fetchers.getUser(1))\n *\n * // With React Query\n * const { data } = useQuery(['user', 1], () => fetchers.getUser(1))\n * ```\n */\n\nexport * from './cfg__accounts'\nexport * from './cfg__accounts__auth'\nexport * from './cfg__accounts__user_profile'\nexport * from './cfg__endpoints'\nexport * from './cfg__health'\nexport * from './cfg__leads'\nexport * from './cfg__leads__lead_submission'\nexport * from './cfg__newsletter'\nexport * from './cfg__newsletter__bulk_email'\nexport * from './cfg__newsletter__campaigns'\nexport * from './cfg__newsletter__logs'\nexport * from './cfg__newsletter__newsletters'\nexport * from './cfg__newsletter__subscriptions'\nexport * from './cfg__newsletter__testing'\nexport * from './cfg__payments'\nexport * from './cfg__payments__webhooks'\nexport * from './cfg__support'\nexport * from './cfg__tasks'\n","/**\n * Global API Instance - Singleton configuration\n *\n * This module provides a global API instance that can be configured once\n * and used throughout your application.\n *\n * Usage:\n * ```typescript\n * // Configure once (e.g., in your app entry point)\n * import { configureAPI } from './api-instance'\n *\n * configureAPI({\n * baseUrl: 'https://api.example.com',\n * token: 'your-jwt-token'\n * })\n *\n * // Then use fetchers and hooks anywhere without configuration\n * import { getUsers } from './fetchers'\n * const users = await getUsers({ page: 1 })\n * ```\n *\n * For SSR or multiple instances:\n * ```typescript\n * import { API } from './index'\n * import { getUsers } from './fetchers'\n *\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\n\nimport { API, type APIOptions } from './index'\n\nlet globalAPI: API | null = null\n\n/**\n * Get the global API instance\n * @throws Error if API is not configured\n */\nexport function getAPIInstance(): API {\n if (!globalAPI) {\n throw new Error(\n 'API not configured. Call configureAPI() with your base URL before using fetchers or hooks.\\n\\n' +\n 'Example:\\n' +\n ' import { configureAPI } from \"./api-instance\"\\n' +\n ' configureAPI({ baseUrl: \"https://api.example.com\" })'\n )\n }\n return globalAPI\n}\n\n/**\n * Check if API is configured\n */\nexport function isAPIConfigured(): boolean {\n return globalAPI !== null\n}\n\n/**\n * Configure the global API instance\n *\n * @param baseUrl - Base URL for the API\n * @param options - Optional configuration (storage, retry, logger)\n *\n * @example\n * ```typescript\n * configureAPI({\n * baseUrl: 'https://api.example.com',\n * token: 'jwt-token',\n * options: {\n * retryConfig: { maxRetries: 3 },\n * loggerConfig: { enabled: true }\n * }\n * })\n * ```\n */\nexport function configureAPI(config: {\n baseUrl: string\n token?: string\n refreshToken?: string\n options?: APIOptions\n}): API {\n globalAPI = new API(config.baseUrl, config.options)\n\n if (config.token) {\n globalAPI.setToken(config.token, config.refreshToken)\n }\n\n return globalAPI\n}\n\n/**\n * Reconfigure the global API instance with new settings\n * Useful for updating tokens or base URL\n */\nexport function reconfigureAPI(updates: {\n baseUrl?: string\n token?: string\n refreshToken?: string\n}): API {\n const instance = getAPIInstance()\n\n if (updates.baseUrl) {\n instance.setBaseUrl(updates.baseUrl)\n }\n\n if (updates.token) {\n instance.setToken(updates.token, updates.refreshToken)\n }\n\n return instance\n}\n\n/**\n * Clear tokens from the global API instance\n */\nexport function clearAPITokens(): void {\n const instance = getAPIInstance()\n instance.clearTokens()\n}\n\n/**\n * Reset the global API instance\n * Useful for testing or logout scenarios\n */\nexport function resetAPI(): void {\n if (globalAPI) {\n globalAPI.clearTokens()\n }\n globalAPI = null\n}","/**\n * Typed fetchers for Accounts\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { OTPRequestRequestSchema, type OTPRequestRequest } from '../schemas/OTPRequestRequest.schema'\nimport { OTPRequestResponseSchema, type OTPRequestResponse } from '../schemas/OTPRequestResponse.schema'\nimport { OTPVerifyRequestSchema, type OTPVerifyRequest } from '../schemas/OTPVerifyRequest.schema'\nimport { OTPVerifyResponseSchema, type OTPVerifyResponse } from '../schemas/OTPVerifyResponse.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/accounts/otp/request/\n */\nexport async function createAccountsOtpRequestCreate( data: OTPRequestRequest, client?: API\n): Promise<OTPRequestResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_accounts.otpRequestCreate(data)\n return OTPRequestResponseSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/accounts/otp/verify/\n */\nexport async function createAccountsOtpVerifyCreate( data: OTPVerifyRequest, client?: API\n): Promise<OTPVerifyResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_accounts.otpVerifyCreate(data)\n return OTPVerifyResponseSchema.parse(response)\n}\n\n\n","/**\n * Typed fetchers for Auth\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { TokenRefreshSchema, type TokenRefresh } from '../schemas/TokenRefresh.schema'\nimport { TokenRefreshRequestSchema, type TokenRefreshRequest } from '../schemas/TokenRefreshRequest.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/accounts/token/refresh/\n */\nexport async function createAccountsTokenRefreshCreate( data: TokenRefreshRequest, client?: API\n): Promise<TokenRefresh> {\n const api = client || getAPIInstance()\n const response = await api.cfg_auth.accountsTokenRefreshCreate(data)\n return TokenRefreshSchema.parse(response)\n}\n\n\n","/**\n * Typed fetchers for User Profile\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { PatchedUserProfileUpdateRequestSchema, type PatchedUserProfileUpdateRequest } from '../schemas/PatchedUserProfileUpdateRequest.schema'\nimport { UserSchema, type User } from '../schemas/User.schema'\nimport { UserProfileUpdateRequestSchema, type UserProfileUpdateRequest } from '../schemas/UserProfileUpdateRequest.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * Get current user profile\n *\n * @method GET\n * @path /cfg/accounts/profile/\n */\nexport async function getAccountsProfileRetrieve( client?: API\n): Promise<User> {\n const api = client || getAPIInstance()\n const response = await api.cfg_user_profile.accountsProfileRetrieve()\n return UserSchema.parse(response)\n}\n\n\n/**\n * Upload user avatar\n *\n * @method POST\n * @path /cfg/accounts/profile/avatar/\n */\nexport async function createAccountsProfileAvatarCreate( data: any, client?: API\n): Promise<User> {\n const api = client || getAPIInstance()\n const response = await api.cfg_user_profile.accountsProfileAvatarCreate(data)\n return UserSchema.parse(response)\n}\n\n\n/**\n * Partial update user profile\n *\n * @method PUT\n * @path /cfg/accounts/profile/partial/\n */\nexport async function partialUpdateAccountsProfilePartialUpdate( data: UserProfileUpdateRequest, client?: API\n): Promise<User> {\n const api = client || getAPIInstance()\n const response = await api.cfg_user_profile.accountsProfilePartialUpdate(data)\n return UserSchema.parse(response)\n}\n\n\n/**\n * Partial update user profile\n *\n * @method PATCH\n * @path /cfg/accounts/profile/partial/\n */\nexport async function partialUpdateAccountsProfilePartialPartialUpdate( data?: PatchedUserProfileUpdateRequest, client?: API\n): Promise<User> {\n const api = client || getAPIInstance()\n const response = await api.cfg_user_profile.accountsProfilePartialPartialUpdate(data)\n return UserSchema.parse(response)\n}\n\n\n/**\n * Update user profile\n *\n * @method PUT\n * @path /cfg/accounts/profile/update/\n */\nexport async function updateAccountsProfileUpdateUpdate( data: UserProfileUpdateRequest, client?: API\n): Promise<User> {\n const api = client || getAPIInstance()\n const response = await api.cfg_user_profile.accountsProfileUpdateUpdate(data)\n return UserSchema.parse(response)\n}\n\n\n/**\n * Update user profile\n *\n * @method PATCH\n * @path /cfg/accounts/profile/update/\n */\nexport async function partialUpdateAccountsProfileUpdatePartialUpdate( data?: PatchedUserProfileUpdateRequest, client?: API\n): Promise<User> {\n const api = client || getAPIInstance()\n const response = await api.cfg_user_profile.accountsProfileUpdatePartialUpdate(data)\n return UserSchema.parse(response)\n}\n\n\n","/**\n * Typed fetchers for Endpoints\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { EndpointsStatusSchema, type EndpointsStatus } from '../schemas/EndpointsStatus.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/endpoints/drf/\n */\nexport async function getEndpointsDrfRetrieve( client?: API\n): Promise<EndpointsStatus> {\n const api = client || getAPIInstance()\n const response = await api.cfg_endpoints.drfRetrieve()\n return EndpointsStatusSchema.parse(response)\n}\n\n\n","/**\n * Typed fetchers for Health\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { HealthCheckSchema, type HealthCheck } from '../schemas/HealthCheck.schema'\nimport { QuickHealthSchema, type QuickHealth } from '../schemas/QuickHealth.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/health/drf/\n */\nexport async function getHealthDrfRetrieve( client?: API\n): Promise<HealthCheck> {\n const api = client || getAPIInstance()\n const response = await api.cfg_health.drfRetrieve()\n return HealthCheckSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/health/drf/quick/\n */\nexport async function getHealthDrfQuickRetrieve( client?: API\n): Promise<QuickHealth> {\n const api = client || getAPIInstance()\n const response = await api.cfg_health.drfQuickRetrieve()\n return QuickHealthSchema.parse(response)\n}\n\n\n","/**\n * Typed fetchers for Leads\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { LeadSubmissionSchema, type LeadSubmission } from '../schemas/LeadSubmission.schema'\nimport { LeadSubmissionRequestSchema, type LeadSubmissionRequest } from '../schemas/LeadSubmissionRequest.schema'\nimport { PaginatedLeadSubmissionListSchema, type PaginatedLeadSubmissionList } from '../schemas/PaginatedLeadSubmissionList.schema'\nimport { PatchedLeadSubmissionRequestSchema, type PatchedLeadSubmissionRequest } from '../schemas/PatchedLeadSubmissionRequest.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/leads/\n */\nexport async function getLeadsList( params?: { page?: number; page_size?: number }, client?: API\n): Promise<PaginatedLeadSubmissionList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_leads.list(params?.page, params?.page_size)\n return PaginatedLeadSubmissionListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/leads/\n */\nexport async function createLeadsCreate( data: LeadSubmissionRequest, client?: API\n): Promise<LeadSubmission> {\n const api = client || getAPIInstance()\n const response = await api.cfg_leads.create(data)\n return LeadSubmissionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/leads/{id}/\n */\nexport async function getLeadsRetrieve( id: number, client?: API\n): Promise<LeadSubmission> {\n const api = client || getAPIInstance()\n const response = await api.cfg_leads.retrieve(id)\n return LeadSubmissionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/leads/{id}/\n */\nexport async function updateLeadsUpdate( id: number, data: LeadSubmissionRequest, client?: API\n): Promise<LeadSubmission> {\n const api = client || getAPIInstance()\n const response = await api.cfg_leads.update(id, data)\n return LeadSubmissionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/leads/{id}/\n */\nexport async function partialUpdateLeadsPartialUpdate( id: number, data?: PatchedLeadSubmissionRequest, client?: API\n): Promise<LeadSubmission> {\n const api = client || getAPIInstance()\n const response = await api.cfg_leads.partialUpdate(id, data)\n return LeadSubmissionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/leads/{id}/\n */\nexport async function deleteLeadsDestroy( id: number, client?: API\n): Promise<void> {\n const api = client || getAPIInstance()\n const response = await api.cfg_leads.destroy(id)\n return response\n}\n\n\n","/**\n * Typed fetchers for Lead Submission\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { LeadSubmissionRequestSchema, type LeadSubmissionRequest } from '../schemas/LeadSubmissionRequest.schema'\nimport { LeadSubmissionResponseSchema, type LeadSubmissionResponse } from '../schemas/LeadSubmissionResponse.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * Submit Lead Form\n *\n * @method POST\n * @path /cfg/leads/submit/\n */\nexport async function createLeadsSubmitCreate( data: LeadSubmissionRequest, client?: API\n): Promise<LeadSubmissionResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_lead_submission.leadsSubmitCreate(data)\n return LeadSubmissionResponseSchema.parse(response)\n}\n\n\n","/**\n * Typed fetchers for Newsletter\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { NewsletterCampaignSchema, type NewsletterCampaign } from '../schemas/NewsletterCampaign.schema'\nimport { PatchedNewsletterCampaignRequestSchema, type PatchedNewsletterCampaignRequest } from '../schemas/PatchedNewsletterCampaignRequest.schema'\nimport { PatchedUnsubscribeRequestSchema, type PatchedUnsubscribeRequest } from '../schemas/PatchedUnsubscribeRequest.schema'\nimport { UnsubscribeSchema, type Unsubscribe } from '../schemas/Unsubscribe.schema'\nimport { UnsubscribeRequestSchema, type UnsubscribeRequest } from '../schemas/UnsubscribeRequest.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/newsletter/campaigns/{id}/\n */\nexport async function partialUpdateNewsletterCampaignsPartialUpdate( id: number, data?: PatchedNewsletterCampaignRequest, client?: API\n): Promise<NewsletterCampaign> {\n const api = client || getAPIInstance()\n const response = await api.cfg_newsletter.campaignsPartialUpdate(id, data)\n return NewsletterCampaignSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/newsletter/unsubscribe/\n */\nexport async function updateNewsletterUnsubscribeUpdate( data: UnsubscribeRequest, client?: API\n): Promise<Unsubscribe> {\n const api = client || getAPIInstance()\n const response = await api.cfg_newsletter.unsubscribeUpdate(data)\n return UnsubscribeSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/newsletter/unsubscribe/\n */\nexport async function partialUpdateNewsletterUnsubscribePartialUpdate( data?: PatchedUnsubscribeRequest, client?: API\n): Promise<Unsubscribe> {\n const api = client || getAPIInstance()\n const response = await api.cfg_newsletter.unsubscribePartialUpdate(data)\n return UnsubscribeSchema.parse(response)\n}\n\n\n","/**\n * Typed fetchers for Bulk Email\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { BulkEmailRequestSchema, type BulkEmailRequest } from '../schemas/BulkEmailRequest.schema'\nimport { BulkEmailResponseSchema, type BulkEmailResponse } from '../schemas/BulkEmailResponse.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * Send Bulk Email\n *\n * @method POST\n * @path /cfg/newsletter/bulk/\n */\nexport async function createNewsletterBulkCreate( data: BulkEmailRequest, client?: API\n): Promise<BulkEmailResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_bulk_email.newsletterBulkCreate(data)\n return BulkEmailResponseSchema.parse(response)\n}\n\n\n","/**\n * Typed fetchers for Campaigns\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { NewsletterCampaignSchema, type NewsletterCampaign } from '../schemas/NewsletterCampaign.schema'\nimport { NewsletterCampaignRequestSchema, type NewsletterCampaignRequest } from '../schemas/NewsletterCampaignRequest.schema'\nimport { PaginatedNewsletterCampaignListSchema, type PaginatedNewsletterCampaignList } from '../schemas/PaginatedNewsletterCampaignList.schema'\nimport { SendCampaignRequestSchema, type SendCampaignRequest } from '../schemas/SendCampaignRequest.schema'\nimport { SendCampaignResponseSchema, type SendCampaignResponse } from '../schemas/SendCampaignResponse.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * List Newsletter Campaigns\n *\n * @method GET\n * @path /cfg/newsletter/campaigns/\n */\nexport async function getNewsletterCampaignsList( params?: { page?: number; page_size?: number }, client?: API\n): Promise<PaginatedNewsletterCampaignList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_campaigns.newsletterCampaignsList(params?.page, params?.page_size)\n return PaginatedNewsletterCampaignListSchema.parse(response)\n}\n\n\n/**\n * Create Newsletter Campaign\n *\n * @method POST\n * @path /cfg/newsletter/campaigns/\n */\nexport async function createNewsletterCampaignsCreate( data: NewsletterCampaignRequest, client?: API\n): Promise<NewsletterCampaign> {\n const api = client || getAPIInstance()\n const response = await api.cfg_campaigns.newsletterCampaignsCreate(data)\n return NewsletterCampaignSchema.parse(response)\n}\n\n\n/**\n * Get Campaign Details\n *\n * @method GET\n * @path /cfg/newsletter/campaigns/{id}/\n */\nexport async function getNewsletterCampaignsRetrieve( id: number, client?: API\n): Promise<NewsletterCampaign> {\n const api = client || getAPIInstance()\n const response = await api.cfg_campaigns.newsletterCampaignsRetrieve(id)\n return NewsletterCampaignSchema.parse(response)\n}\n\n\n/**\n * Update Campaign\n *\n * @method PUT\n * @path /cfg/newsletter/campaigns/{id}/\n */\nexport async function updateNewsletterCampaignsUpdate( id: number, data: NewsletterCampaignRequest, client?: API\n): Promise<NewsletterCampaign> {\n const api = client || getAPIInstance()\n const response = await api.cfg_campaigns.newsletterCampaignsUpdate(id, data)\n return NewsletterCampaignSchema.parse(response)\n}\n\n\n/**\n * Delete Campaign\n *\n * @method DELETE\n * @path /cfg/newsletter/campaigns/{id}/\n */\nexport async function deleteNewsletterCampaignsDestroy( id: number, client?: API\n): Promise<void> {\n const api = client || getAPIInstance()\n const response = await api.cfg_campaigns.newsletterCampaignsDestroy(id)\n return response\n}\n\n\n/**\n * Send Newsletter Campaign\n *\n * @method POST\n * @path /cfg/newsletter/campaigns/send/\n */\nexport async function createNewsletterCampaignsSendCreate( data: SendCampaignRequest, client?: API\n): Promise<SendCampaignResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_campaigns.newsletterCampaignsSendCreate(data)\n return SendCampaignResponseSchema.parse(response)\n}\n\n\n","/**\n * Typed fetchers for Logs\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { PaginatedEmailLogListSchema, type PaginatedEmailLogList } from '../schemas/PaginatedEmailLogList.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * List Email Logs\n *\n * @method GET\n * @path /cfg/newsletter/logs/\n */\nexport async function getNewsletterLogsList( params?: { page?: number; page_size?: number }, client?: API\n): Promise<PaginatedEmailLogList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_logs.newsletterLogsList(params?.page, params?.page_size)\n return PaginatedEmailLogListSchema.parse(response)\n}\n\n\n","/**\n * Typed fetchers for Newsletters\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { NewsletterSchema, type Newsletter } from '../schemas/Newsletter.schema'\nimport { PaginatedNewsletterListSchema, type PaginatedNewsletterList } from '../schemas/PaginatedNewsletterList.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * List Active Newsletters\n *\n * @method GET\n * @path /cfg/newsletter/newsletters/\n */\nexport async function getNewsletterNewslettersList( params?: { page?: number; page_size?: number }, client?: API\n): Promise<PaginatedNewsletterList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_newsletters.newsletterNewslettersList(params?.page, params?.page_size)\n return PaginatedNewsletterListSchema.parse(response)\n}\n\n\n/**\n * Get Newsletter Details\n *\n * @method GET\n * @path /cfg/newsletter/newsletters/{id}/\n */\nexport async function getNewsletterNewslettersRetrieve( id: number, client?: API\n): Promise<Newsletter> {\n const api = client || getAPIInstance()\n const response = await api.cfg_newsletters.newsletterNewslettersRetrieve(id)\n return NewsletterSchema.parse(response)\n}\n\n\n","/**\n * Typed fetchers for Subscriptions\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { PaginatedNewsletterSubscriptionListSchema, type PaginatedNewsletterSubscriptionList } from '../schemas/PaginatedNewsletterSubscriptionList.schema'\nimport { SubscribeRequestSchema, type SubscribeRequest } from '../schemas/SubscribeRequest.schema'\nimport { SubscribeResponseSchema, type SubscribeResponse } from '../schemas/SubscribeResponse.schema'\nimport { SuccessResponseSchema, type SuccessResponse } from '../schemas/SuccessResponse.schema'\nimport { UnsubscribeRequestSchema, type UnsubscribeRequest } from '../schemas/UnsubscribeRequest.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * Subscribe to Newsletter\n *\n * @method POST\n * @path /cfg/newsletter/subscribe/\n */\nexport async function createNewsletterSubscribeCreate( data: SubscribeRequest, client?: API\n): Promise<SubscribeResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_subscriptions.newsletterSubscribeCreate(data)\n return SubscribeResponseSchema.parse(response)\n}\n\n\n/**\n * List User Subscriptions\n *\n * @method GET\n * @path /cfg/newsletter/subscriptions/\n */\nexport async function getNewsletterSubscriptionsList( params?: { page?: number; page_size?: number }, client?: API\n): Promise<PaginatedNewsletterSubscriptionList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_subscriptions.newsletterSubscriptionsList(params?.page, params?.page_size)\n return PaginatedNewsletterSubscriptionListSchema.parse(response)\n}\n\n\n/**\n * Unsubscribe from Newsletter\n *\n * @method POST\n * @path /cfg/newsletter/unsubscribe/\n */\nexport async function createNewsletterUnsubscribeCreate( data: UnsubscribeRequest, client?: API\n): Promise<SuccessResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_subscriptions.newsletterUnsubscribeCreate(data)\n return SuccessResponseSchema.parse(response)\n}\n\n\n","/**\n * Typed fetchers for Testing\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { BulkEmailResponseSchema, type BulkEmailResponse } from '../schemas/BulkEmailResponse.schema'\nimport { TestEmailRequestSchema, type TestEmailRequest } from '../schemas/TestEmailRequest.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * Test Email Sending\n *\n * @method POST\n * @path /cfg/newsletter/test/\n */\nexport async function createNewsletterTestCreate( data: TestEmailRequest, client?: API\n): Promise<BulkEmailResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_testing.newsletterTestCreate(data)\n return BulkEmailResponseSchema.parse(response)\n}\n\n\n","/**\n * Typed fetchers for Payments\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { APIKeyCreateSchema, type APIKeyCreate } from '../schemas/APIKeyCreate.schema'\nimport { APIKeyCreateRequestSchema, type APIKeyCreateRequest } from '../schemas/APIKeyCreateRequest.schema'\nimport { APIKeyDetailSchema, type APIKeyDetail } from '../schemas/APIKeyDetail.schema'\nimport { APIKeyUpdateSchema, type APIKeyUpdate } from '../schemas/APIKeyUpdate.schema'\nimport { APIKeyUpdateRequestSchema, type APIKeyUpdateRequest } from '../schemas/APIKeyUpdateRequest.schema'\nimport { APIKeyValidationRequestSchema, type APIKeyValidationRequest } from '../schemas/APIKeyValidationRequest.schema'\nimport { APIKeyValidationResponseSchema, type APIKeyValidationResponse } from '../schemas/APIKeyValidationResponse.schema'\nimport { APIKeysOverviewSchema, type APIKeysOverview } from '../schemas/APIKeysOverview.schema'\nimport { AdminPaymentCreateSchema, type AdminPaymentCreate } from '../schemas/AdminPaymentCreate.schema'\nimport { AdminPaymentCreateRequestSchema, type AdminPaymentCreateRequest } from '../schemas/AdminPaymentCreateRequest.schema'\nimport { AdminPaymentDetailSchema, type AdminPaymentDetail } from '../schemas/AdminPaymentDetail.schema'\nimport { AdminPaymentStatsSchema, type AdminPaymentStats } from '../schemas/AdminPaymentStats.schema'\nimport { AdminPaymentUpdateSchema, type AdminPaymentUpdate } from '../schemas/AdminPaymentUpdate.schema'\nimport { AdminPaymentUpdateRequestSchema, type AdminPaymentUpdateRequest } from '../schemas/AdminPaymentUpdateRequest.schema'\nimport { AdminUserSchema, type AdminUser } from '../schemas/AdminUser.schema'\nimport { BalanceOverviewSchema, type BalanceOverview } from '../schemas/BalanceOverview.schema'\nimport { CurrencySchema, type Currency } from '../schemas/Currency.schema'\nimport { EndpointGroupSchema, type EndpointGroup } from '../schemas/EndpointGroup.schema'\nimport { NetworkSchema, type Network } from '../schemas/Network.schema'\nimport { PaginatedAPIKeyListListSchema, type PaginatedAPIKeyListList } from '../schemas/PaginatedAPIKeyListList.schema'\nimport { PaginatedAdminPaymentListListSchema, type PaginatedAdminPaymentListList } from '../schemas/PaginatedAdminPaymentListList.schema'\nimport { PaginatedAdminPaymentStatsListSchema, type PaginatedAdminPaymentStatsList } from '../schemas/PaginatedAdminPaymentStatsList.schema'\nimport { PaginatedAdminUserListSchema, type PaginatedAdminUserList } from '../schemas/PaginatedAdminUserList.schema'\nimport { PaginatedCurrencyListListSchema, type PaginatedCurrencyListList } from '../schemas/PaginatedCurrencyListList.schema'\nimport { PaginatedEndpointGroupListSchema, type PaginatedEndpointGroupList } from '../schemas/PaginatedEndpointGroupList.schema'\nimport { PaginatedNetworkListSchema, type PaginatedNetworkList } from '../schemas/PaginatedNetworkList.schema'\nimport { PaginatedPaymentListListSchema, type PaginatedPaymentListList } from '../schemas/PaginatedPaymentListList.schema'\nimport { PaginatedProviderCurrencyListSchema, type PaginatedProviderCurrencyList } from '../schemas/PaginatedProviderCurrencyList.schema'\nimport { PaginatedRecentPaymentListSchema, type PaginatedRecentPaymentList } from '../schemas/PaginatedRecentPaymentList.schema'\nimport { PaginatedRecentTransactionListSchema, type PaginatedRecentTransactionList } from '../schemas/PaginatedRecentTransactionList.schema'\nimport { PaginatedSubscriptionListListSchema, type PaginatedSubscriptionListList } from '../schemas/PaginatedSubscriptionListList.schema'\nimport { PaginatedTariffListSchema, type PaginatedTariffList } from '../schemas/PaginatedTariffList.schema'\nimport { PaginatedTransactionListSchema, type PaginatedTransactionList } from '../schemas/PaginatedTransactionList.schema'\nimport { PaginatedUserBalanceListSchema, type PaginatedUserBalanceList } from '../schemas/PaginatedUserBalanceList.schema'\nimport { PaginatedWebhookEventListListSchema, type PaginatedWebhookEventListList } from '../schemas/PaginatedWebhookEventListList.schema'\nimport { PaginatedWebhookStatsListSchema, type PaginatedWebhookStatsList } from '../schemas/PaginatedWebhookStatsList.schema'\nimport { PatchedAPIKeyUpdateRequestSchema, type PatchedAPIKeyUpdateRequest } from '../schemas/PatchedAPIKeyUpdateRequest.schema'\nimport { PatchedAdminPaymentUpdateRequestSchema, type PatchedAdminPaymentUpdateRequest } from '../schemas/PatchedAdminPaymentUpdateRequest.schema'\nimport { PatchedPaymentRequestSchema, type PatchedPaymentRequest } from '../schemas/PatchedPaymentRequest.schema'\nimport { PatchedSubscriptionRequestSchema, type PatchedSubscriptionRequest } from '../schemas/PatchedSubscriptionRequest.schema'\nimport { PaymentSchema, type Payment } from '../schemas/Payment.schema'\nimport { PaymentAnalyticsResponseSchema, type PaymentAnalyticsResponse } from '../schemas/PaymentAnalyticsResponse.schema'\nimport { PaymentCreateSchema, type PaymentCreate } from '../schemas/PaymentCreate.schema'\nimport { PaymentCreateRequestSchema, type PaymentCreateRequest } from '../schemas/PaymentCreateRequest.schema'\nimport { PaymentRequestSchema, type PaymentRequest } from '../schemas/PaymentRequest.schema'\nimport { PaymentsChartResponseSchema, type PaymentsChartResponse } from '../schemas/PaymentsChartResponse.schema'\nimport { PaymentsDashboardOverviewSchema, type PaymentsDashboardOverview } from '../schemas/PaymentsDashboardOverview.schema'\nimport { PaymentsMetricsSchema, type PaymentsMetrics } from '../schemas/PaymentsMetrics.schema'\nimport { ProviderCurrencySchema, type ProviderCurrency } from '../schemas/ProviderCurrency.schema'\nimport { SubscriptionSchema, type Subscription } from '../schemas/Subscription.schema'\nimport { SubscriptionCreateSchema, type SubscriptionCreate } from '../schemas/SubscriptionCreate.schema'\nimport { SubscriptionCreateRequestSchema, type SubscriptionCreateRequest } from '../schemas/SubscriptionCreateRequest.schema'\nimport { SubscriptionOverviewSchema, type SubscriptionOverview } from '../schemas/SubscriptionOverview.schema'\nimport { SubscriptionRequestSchema, type SubscriptionRequest } from '../schemas/SubscriptionRequest.schema'\nimport { TariffSchema, type Tariff } from '../schemas/Tariff.schema'\nimport { TransactionSchema, type Transaction } from '../schemas/Transaction.schema'\nimport { UserBalanceSchema, type UserBalance } from '../schemas/UserBalance.schema'\nimport { WebhookEventListSchema, type WebhookEventList } from '../schemas/WebhookEventList.schema'\nimport { WebhookEventListRequestSchema, type WebhookEventListRequest } from '../schemas/WebhookEventListRequest.schema'\nimport { WebhookStatsSchema, type WebhookStats } from '../schemas/WebhookStats.schema'\nimport { WebhookStatsRequestSchema, type WebhookStatsRequest } from '../schemas/WebhookStatsRequest.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/payments/\n */\nexport async function getPaymentsAdminApiPaymentsList( params?: { currency__code?: string; ordering?: string; page?: number; page_size?: number; provider?: string; search?: string; status?: string; user?: number }, client?: API\n): Promise<PaginatedAdminPaymentListList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiPaymentsList(params?.currency__code, params?.ordering, params?.page, params?.page_size, params?.provider, params?.search, params?.status, params?.user)\n return PaginatedAdminPaymentListListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/admin/api/payments/\n */\nexport async function createPaymentsAdminApiPaymentsCreate( data: AdminPaymentCreateRequest, client?: API\n): Promise<AdminPaymentCreate> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiPaymentsCreate(data)\n return AdminPaymentCreateSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/payments/{id}/\n */\nexport async function getPaymentsAdminApiPaymentsRetrieve( id: string, client?: API\n): Promise<AdminPaymentDetail> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiPaymentsRetrieve(id)\n return AdminPaymentDetailSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/payments/admin/api/payments/{id}/\n */\nexport async function updatePaymentsAdminApiPaymentsUpdate( id: string, data: AdminPaymentUpdateRequest, client?: API\n): Promise<AdminPaymentUpdate> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiPaymentsUpdate(id, data)\n return AdminPaymentUpdateSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/payments/admin/api/payments/{id}/\n */\nexport async function partialUpdatePaymentsAdminApiPaymentsPartialUpdate( id: string, data?: PatchedAdminPaymentUpdateRequest, client?: API\n): Promise<AdminPaymentUpdate> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiPaymentsPartialUpdate(id, data)\n return AdminPaymentUpdateSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/payments/admin/api/payments/{id}/\n */\nexport async function deletePaymentsAdminApiPaymentsDestroy( id: string, client?: API\n): Promise<void> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiPaymentsDestroy(id)\n return response\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/admin/api/payments/{id}/cancel/\n */\nexport async function createPaymentsAdminApiPaymentsCancelCreate( id: string, client?: API\n): Promise<AdminPaymentDetail> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiPaymentsCancelCreate(id)\n return AdminPaymentDetailSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/admin/api/payments/{id}/refresh_status/\n */\nexport async function createPaymentsAdminApiPaymentsRefreshStatusCreate( id: string, client?: API\n): Promise<AdminPaymentDetail> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiPaymentsRefreshStatusCreate(id)\n return AdminPaymentDetailSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/admin/api/payments/{id}/refund/\n */\nexport async function createPaymentsAdminApiPaymentsRefundCreate( id: string, client?: API\n): Promise<AdminPaymentDetail> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiPaymentsRefundCreate(id)\n return AdminPaymentDetailSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/payments/stats/\n */\nexport async function getPaymentsAdminApiPaymentsStatsRetrieve( client?: API\n): Promise<AdminPaymentStats> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiPaymentsStatsRetrieve()\n return AdminPaymentStatsSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/stats/\n */\nexport async function getPaymentsAdminApiStatsList( params?: { ordering?: string; page?: number; page_size?: number; search?: string }, client?: API\n): Promise<PaginatedAdminPaymentStatsList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiStatsList(params?.ordering, params?.page, params?.page_size, params?.search)\n return PaginatedAdminPaymentStatsListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/stats/{id}/\n */\nexport async function getPaymentsAdminApiStatsRetrieve( id: string, client?: API\n): Promise<AdminPaymentStats> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiStatsRetrieve(id)\n return AdminPaymentStatsSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/stats/payments/\n */\nexport async function getPaymentsAdminApiStatsPaymentsRetrieve( client?: API\n): Promise<AdminPaymentStats> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiStatsPaymentsRetrieve()\n return AdminPaymentStatsSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/stats/system/\n */\nexport async function getPaymentsAdminApiStatsSystemRetrieve( client?: API\n): Promise<AdminPaymentStats> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiStatsSystemRetrieve()\n return AdminPaymentStatsSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/stats/webhooks/\n */\nexport async function getPaymentsAdminApiStatsWebhooksRetrieve( client?: API\n): Promise<AdminPaymentStats> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiStatsWebhooksRetrieve()\n return AdminPaymentStatsSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/users/\n */\nexport async function getPaymentsAdminApiUsersList( params?: { is_active?: boolean; is_staff?: boolean; is_superuser?: boolean; ordering?: string; page?: number; page_size?: number; search?: string }, client?: API\n): Promise<PaginatedAdminUserList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiUsersList(params?.is_active, params?.is_staff, params?.is_superuser, params?.ordering, params?.page, params?.page_size, params?.search)\n return PaginatedAdminUserListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/users/{id}/\n */\nexport async function getPaymentsAdminApiUsersRetrieve( id: number, client?: API\n): Promise<AdminUser> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiUsersRetrieve(id)\n return AdminUserSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/admin/api/webhook-test/test/\n */\nexport async function createPaymentsAdminApiWebhookTestTestCreate( data: WebhookStatsRequest, client?: API\n): Promise<WebhookStats> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiWebhookTestTestCreate(data)\n return WebhookStatsSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/webhooks/\n */\nexport async function getPaymentsAdminApiWebhooksList( params?: { ordering?: string; page?: number; page_size?: number; search?: string }, client?: API\n): Promise<PaginatedWebhookStatsList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiWebhooksList(params?.ordering, params?.page, params?.page_size, params?.search)\n return PaginatedWebhookStatsListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/webhooks/{id}/\n */\nexport async function getPaymentsAdminApiWebhooksRetrieve( id: string, client?: API\n): Promise<WebhookStats> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiWebhooksRetrieve(id)\n return WebhookStatsSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/webhooks/{webhook_pk}/events/\n */\nexport async function getPaymentsAdminApiWebhooksEventsList( webhook_pk: string, params?: { ordering?: string; page?: number; page_size?: number; search?: string }, client?: API\n): Promise<PaginatedWebhookEventListList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiWebhooksEventsList(webhook_pk, params?.ordering, params?.page, params?.page_size, params?.search)\n return PaginatedWebhookEventListListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/webhooks/{webhook_pk}/events/{id}/\n */\nexport async function getPaymentsAdminApiWebhooksEventsRetrieve( id: string, webhook_pk: string, client?: API\n): Promise<WebhookEventList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiWebhooksEventsRetrieve(id, webhook_pk)\n return WebhookEventListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/admin/api/webhooks/{webhook_pk}/events/{id}/retry/\n */\nexport async function createPaymentsAdminApiWebhooksEventsRetryCreate( id: string, webhook_pk: string, data: WebhookEventListRequest, client?: API\n): Promise<WebhookEventList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiWebhooksEventsRetryCreate(id, webhook_pk, data)\n return WebhookEventListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/admin/api/webhooks/{webhook_pk}/events/clear_all/\n */\nexport async function createPaymentsAdminApiWebhooksEventsClearAllCreate( webhook_pk: string, data: WebhookEventListRequest, client?: API\n): Promise<WebhookEventList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiWebhooksEventsClearAllCreate(webhook_pk, data)\n return WebhookEventListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/admin/api/webhooks/{webhook_pk}/events/retry_failed/\n */\nexport async function createPaymentsAdminApiWebhooksEventsRetryFailedCreate( webhook_pk: string, data: WebhookEventListRequest, client?: API\n): Promise<WebhookEventList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiWebhooksEventsRetryFailedCreate(webhook_pk, data)\n return WebhookEventListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/webhooks/stats/\n */\nexport async function getPaymentsAdminApiWebhooksStatsRetrieve( client?: API\n): Promise<WebhookStats> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.adminApiWebhooksStatsRetrieve()\n return WebhookStatsSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/api-keys/\n */\nexport async function getPaymentsApiKeysList( params?: { is_active?: boolean; ordering?: string; page?: number; page_size?: number; search?: string; user?: number }, client?: API\n): Promise<PaginatedAPIKeyListList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.apiKeysList(params?.is_active, params?.ordering, params?.page, params?.page_size, params?.search, params?.user)\n return PaginatedAPIKeyListListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/api-keys/\n */\nexport async function createPaymentsApiKeysCreate( data: APIKeyCreateRequest, client?: API\n): Promise<APIKeyCreate> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.apiKeysCreate(data)\n return APIKeyCreateSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/api-keys/{id}/\n */\nexport async function getPaymentsApiKeysRetrieve( id: string, client?: API\n): Promise<APIKeyDetail> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.apiKeysRetrieve(id)\n return APIKeyDetailSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/payments/api-keys/{id}/\n */\nexport async function updatePaymentsApiKeysUpdate( id: string, data: APIKeyUpdateRequest, client?: API\n): Promise<APIKeyUpdate> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.apiKeysUpdate(id, data)\n return APIKeyUpdateSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/payments/api-keys/{id}/\n */\nexport async function partialUpdatePaymentsApiKeysPartialUpdate( id: string, data?: PatchedAPIKeyUpdateRequest, client?: API\n): Promise<APIKeyUpdate> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.apiKeysPartialUpdate(id, data)\n return APIKeyUpdateSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/payments/api-keys/{id}/\n */\nexport async function deletePaymentsApiKeysDestroy( id: string, client?: API\n): Promise<void> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.apiKeysDestroy(id)\n return response\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/api-keys/{id}/perform_action/\n */\nexport async function createPaymentsApiKeysPerformActionCreate( id: string, client?: API\n): Promise<APIKeyDetail> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.apiKeysPerformActionCreate(id)\n return APIKeyDetailSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/api-keys/analytics/\n */\nexport async function getPaymentsApiKeysAnalyticsRetrieve( client?: API\n): Promise<APIKeyDetail> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.apiKeysAnalyticsRetrieve()\n return APIKeyDetailSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/api-keys/by_user/\n */\nexport async function getPaymentsApiKeysByUserRetrieve( client?: API\n): Promise<APIKeyDetail> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.apiKeysByUserRetrieve()\n return APIKeyDetailSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/api-keys/create/\n */\nexport async function createPaymentsApiKeysCreateCreate( data: APIKeyCreateRequest, client?: API\n): Promise<APIKeyCreate> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.apiKeysCreateCreate(data)\n return APIKeyCreateSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/api-keys/expiring_soon/\n */\nexport async function getPaymentsApiKeysExpiringSoonRetrieve( client?: API\n): Promise<APIKeyDetail> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.apiKeysExpiringSoonRetrieve()\n return APIKeyDetailSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/api-keys/health/\n */\nexport async function getPaymentsApiKeysHealthRetrieve( client?: API\n): Promise<APIKeyDetail> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.apiKeysHealthRetrieve()\n return APIKeyDetailSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/api-keys/stats/\n */\nexport async function getPaymentsApiKeysStatsRetrieve( client?: API\n): Promise<APIKeyDetail> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.apiKeysStatsRetrieve()\n return APIKeyDetailSchema.parse(response)\n}\n\n\n/**\n * Validate API Key (Standalone)\n *\n * @method POST\n * @path /cfg/payments/api-keys/validate/\n */\nexport async function createPaymentsApiKeysValidateCreate( data: APIKeyValidationRequest, client?: API\n): Promise<APIKeyValidationResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.apiKeysValidateCreate(data)\n return APIKeyValidationResponseSchema.parse(response)\n}\n\n\n/**\n * Validate API Key\n *\n * @method POST\n * @path /cfg/payments/api-keys/validate_key/\n */\nexport async function createPaymentsApiKeysValidateKeyCreate( data: APIKeyValidationRequest, client?: API\n): Promise<APIKeyValidationResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.apiKeysValidateKeyCreate(data)\n return APIKeyValidationResponseSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/balances/\n */\nexport async function getPaymentsBalancesList( params?: { ordering?: string; page?: number; page_size?: number; search?: string; user?: number }, client?: API\n): Promise<PaginatedUserBalanceList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.balancesList(params?.ordering, params?.page, params?.page_size, params?.search, params?.user)\n return PaginatedUserBalanceListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/balances/{id}/\n */\nexport async function getPaymentsBalancesRetrieve( id: number, client?: API\n): Promise<UserBalance> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.balancesRetrieve(id)\n return UserBalanceSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/balances/analytics/\n */\nexport async function getPaymentsBalancesAnalyticsRetrieve( client?: API\n): Promise<UserBalance> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.balancesAnalyticsRetrieve()\n return UserBalanceSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/balances/health/\n */\nexport async function getPaymentsBalancesHealthRetrieve( client?: API\n): Promise<UserBalance> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.balancesHealthRetrieve()\n return UserBalanceSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/balances/stats/\n */\nexport async function getPaymentsBalancesStatsRetrieve( client?: API\n): Promise<UserBalance> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.balancesStatsRetrieve()\n return UserBalanceSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/balances/summary/\n */\nexport async function getPaymentsBalancesSummaryRetrieve( client?: API\n): Promise<UserBalance> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.balancesSummaryRetrieve()\n return UserBalanceSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/\n */\nexport async function getPaymentsCurrenciesList( params?: { currency_type?: string; is_active?: boolean; ordering?: string; page?: number; page_size?: number; search?: string }, client?: API\n): Promise<PaginatedCurrencyListList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.currenciesList(params?.currency_type, params?.is_active, params?.ordering, params?.page, params?.page_size, params?.search)\n return PaginatedCurrencyListListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/currencies/\n */\nexport async function createPaymentsCurrenciesCreate( client?: API\n): Promise<Currency> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.currenciesCreate()\n return CurrencySchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/{id}/\n */\nexport async function getPaymentsCurrenciesRetrieve( id: number, client?: API\n): Promise<Currency> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.currenciesRetrieve(id)\n return CurrencySchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/{id}/networks/\n */\nexport async function getPaymentsCurrenciesNetworksRetrieve( id: number, client?: API\n): Promise<Currency> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.currenciesNetworksRetrieve(id)\n return CurrencySchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/{id}/providers/\n */\nexport async function getPaymentsCurrenciesProvidersRetrieve( id: number, client?: API\n): Promise<Currency> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.currenciesProvidersRetrieve(id)\n return CurrencySchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/currencies/convert/\n */\nexport async function createPaymentsCurrenciesConvertCreate( client?: API\n): Promise<Currency> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.currenciesConvertCreate()\n return CurrencySchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/crypto/\n */\nexport async function getPaymentsCurrenciesCryptoRetrieve( client?: API\n): Promise<Currency> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.currenciesCryptoRetrieve()\n return CurrencySchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/fiat/\n */\nexport async function getPaymentsCurrenciesFiatRetrieve( client?: API\n): Promise<Currency> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.currenciesFiatRetrieve()\n return CurrencySchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/health/\n */\nexport async function getPaymentsCurrenciesHealthRetrieve( client?: API\n): Promise<Currency> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.currenciesHealthRetrieve()\n return CurrencySchema.parse(response)\n}\n\n\n/**\n * Get exchange rates\n *\n * @method GET\n * @path /cfg/payments/currencies/rates/\n */\nexport async function getPaymentsCurrenciesRatesRetrieve( params: { base_currency: string; currencies: string }, client?: API\n): Promise<Currency> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.currenciesRatesRetrieve(params.base_currency, params.currencies)\n return CurrencySchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/stable/\n */\nexport async function getPaymentsCurrenciesStableRetrieve( client?: API\n): Promise<Currency> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.currenciesStableRetrieve()\n return CurrencySchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/stats/\n */\nexport async function getPaymentsCurrenciesStatsRetrieve( client?: API\n): Promise<Currency> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.currenciesStatsRetrieve()\n return CurrencySchema.parse(response)\n}\n\n\n/**\n * Get supported currencies\n *\n * @method GET\n * @path /cfg/payments/currencies/supported/\n */\nexport async function getPaymentsCurrenciesSupportedRetrieve( params?: { currency_type?: string; provider?: string }, client?: API\n): Promise<Currency> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.currenciesSupportedRetrieve(params?.currency_type, params?.provider)\n return CurrencySchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/endpoint-groups/\n */\nexport async function getPaymentsEndpointGroupsList( params?: { is_enabled?: boolean; ordering?: string; page?: number; page_size?: number; search?: string }, client?: API\n): Promise<PaginatedEndpointGroupList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.endpointGroupsList(params?.is_enabled, params?.ordering, params?.page, params?.page_size, params?.search)\n return PaginatedEndpointGroupListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/endpoint-groups/{id}/\n */\nexport async function getPaymentsEndpointGroupsRetrieve( id: number, client?: API\n): Promise<EndpointGroup> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.endpointGroupsRetrieve(id)\n return EndpointGroupSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/endpoint-groups/available/\n */\nexport async function getPaymentsEndpointGroupsAvailableRetrieve( client?: API\n): Promise<EndpointGroup> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.endpointGroupsAvailableRetrieve()\n return EndpointGroupSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/endpoint-groups/health/\n */\nexport async function getPaymentsEndpointGroupsHealthRetrieve( client?: API\n): Promise<EndpointGroup> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.endpointGroupsHealthRetrieve()\n return EndpointGroupSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/endpoint-groups/stats/\n */\nexport async function getPaymentsEndpointGroupsStatsRetrieve( client?: API\n): Promise<EndpointGroup> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.endpointGroupsStatsRetrieve()\n return EndpointGroupSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/health/\n */\nexport async function getPaymentsHealthRetrieve( client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.healthRetrieve()\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/networks/\n */\nexport async function getPaymentsNetworksList( params?: { is_active?: boolean; native_currency__code?: string; ordering?: string; page?: number; page_size?: number; search?: string }, client?: API\n): Promise<PaginatedNetworkList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.networksList(params?.is_active, params?.native_currency__code, params?.ordering, params?.page, params?.page_size, params?.search)\n return PaginatedNetworkListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/networks/{id}/\n */\nexport async function getPaymentsNetworksRetrieve( id: number, client?: API\n): Promise<Network> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.networksRetrieve(id)\n return NetworkSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/networks/by_currency/\n */\nexport async function getPaymentsNetworksByCurrencyRetrieve( client?: API\n): Promise<Network> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.networksByCurrencyRetrieve()\n return NetworkSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/networks/health/\n */\nexport async function getPaymentsNetworksHealthRetrieve( client?: API\n): Promise<Network> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.networksHealthRetrieve()\n return NetworkSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/networks/stats/\n */\nexport async function getPaymentsNetworksStatsRetrieve( client?: API\n): Promise<Network> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.networksStatsRetrieve()\n return NetworkSchema.parse(response)\n}\n\n\n/**\n * API Keys Overview\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/api_keys_overview/\n */\nexport async function getPaymentsOverviewDashboardApiKeysOverviewRetrieve( client?: API\n): Promise<APIKeysOverview> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.overviewDashboardApiKeysOverviewRetrieve()\n return APIKeysOverviewSchema.parse(response)\n}\n\n\n/**\n * Balance Overview\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/balance_overview/\n */\nexport async function getPaymentsOverviewDashboardBalanceOverviewRetrieve( client?: API\n): Promise<BalanceOverview> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.overviewDashboardBalanceOverviewRetrieve()\n return BalanceOverviewSchema.parse(response)\n}\n\n\n/**\n * Payments Chart Data\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/chart_data/\n */\nexport async function getPaymentsOverviewDashboardChartDataRetrieve( params?: { period?: string }, client?: API\n): Promise<PaymentsChartResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.overviewDashboardChartDataRetrieve(params?.period)\n return PaymentsChartResponseSchema.parse(response)\n}\n\n\n/**\n * Payments Dashboard Metrics\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/metrics/\n */\nexport async function getPaymentsOverviewDashboardMetricsRetrieve( client?: API\n): Promise<PaymentsMetrics> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.overviewDashboardMetricsRetrieve()\n return PaymentsMetricsSchema.parse(response)\n}\n\n\n/**\n * Payments Dashboard Overview\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/overview/\n */\nexport async function getPaymentsOverviewDashboardOverviewRetrieve( client?: API\n): Promise<PaymentsDashboardOverview> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.overviewDashboardOverviewRetrieve()\n return PaymentsDashboardOverviewSchema.parse(response)\n}\n\n\n/**\n * Payment Analytics\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/payment_analytics/\n */\nexport async function getPaymentsOverviewDashboardPaymentAnalyticsRetrieve( params?: { limit?: number }, client?: API\n): Promise<PaymentAnalyticsResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.overviewDashboardPaymentAnalyticsRetrieve(params?.limit)\n return PaymentAnalyticsResponseSchema.parse(response)\n}\n\n\n/**\n * Recent Payments\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/recent_payments/\n */\nexport async function getPaymentsOverviewDashboardRecentPaymentsList( params?: { limit?: number; page?: number; page_size?: number }, client?: API\n): Promise<PaginatedRecentPaymentList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.overviewDashboardRecentPaymentsList(params?.limit, params?.page, params?.page_size)\n return PaginatedRecentPaymentListSchema.parse(response)\n}\n\n\n/**\n * Recent Transactions\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/recent_transactions/\n */\nexport async function getPaymentsOverviewDashboardRecentTransactionsList( params?: { limit?: number; page?: number; page_size?: number }, client?: API\n): Promise<PaginatedRecentTransactionList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.overviewDashboardRecentTransactionsList(params?.limit, params?.page, params?.page_size)\n return PaginatedRecentTransactionListSchema.parse(response)\n}\n\n\n/**\n * Subscription Overview\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/subscription_overview/\n */\nexport async function getPaymentsOverviewDashboardSubscriptionOverviewRetrieve( client?: API\n): Promise<SubscriptionOverview> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.overviewDashboardSubscriptionOverviewRetrieve()\n return SubscriptionOverviewSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/payment/\n */\nexport async function getPaymentsPaymentList( params?: { currency__code?: string; ordering?: string; page?: number; page_size?: number; provider?: string; search?: string; status?: string; user?: number }, client?: API\n): Promise<PaginatedPaymentListList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.paymentList(params?.currency__code, params?.ordering, params?.page, params?.page_size, params?.provider, params?.search, params?.status, params?.user)\n return PaginatedPaymentListListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/payment/\n */\nexport async function createPaymentsPaymentCreate( data: PaymentCreateRequest, client?: API\n): Promise<PaymentCreate> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.paymentCreate(data)\n return PaymentCreateSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/payment/{id}/\n */\nexport async function getPaymentsPaymentRetrieve( id: string, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.paymentRetrieve(id)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/payments/payment/{id}/\n */\nexport async function updatePaymentsPaymentUpdate( id: string, data: PaymentRequest, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.paymentUpdate(id, data)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/payments/payment/{id}/\n */\nexport async function partialUpdatePaymentsPaymentPartialUpdate( id: string, data?: PatchedPaymentRequest, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.paymentPartialUpdate(id, data)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/payments/payment/{id}/\n */\nexport async function deletePaymentsPaymentDestroy( id: string, client?: API\n): Promise<void> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.paymentDestroy(id)\n return response\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/payment/{id}/cancel/\n */\nexport async function createPaymentsPaymentCancelCreate( id: string, data: PaymentRequest, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.paymentCancelCreate(id, data)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/payment/{id}/check_status/\n */\nexport async function createPaymentsPaymentCheckStatusCreate( id: string, data: PaymentRequest, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.paymentCheckStatusCreate(id, data)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/payment/analytics/\n */\nexport async function getPaymentsPaymentAnalyticsRetrieve( client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.paymentAnalyticsRetrieve()\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/payment/by_provider/\n */\nexport async function getPaymentsPaymentByProviderRetrieve( client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.paymentByProviderRetrieve()\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/payment/create/\n */\nexport async function createPaymentsPaymentCreateCreate( data: PaymentCreateRequest, client?: API\n): Promise<PaymentCreate> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.paymentCreateCreate(data)\n return PaymentCreateSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/payment/health/\n */\nexport async function getPaymentsPaymentHealthRetrieve( client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.paymentHealthRetrieve()\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/payment/stats/\n */\nexport async function getPaymentsPaymentStatsRetrieve( client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.paymentStatsRetrieve()\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/payment/status/{id}/\n */\nexport async function getPaymentsPaymentStatusRetrieve( id: string, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.paymentStatusRetrieve(id)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/provider-currencies/\n */\nexport async function getPaymentsProviderCurrenciesList( params?: { currency__code?: string; is_enabled?: boolean; network__code?: string; ordering?: string; page?: number; page_size?: number; provider?: string; search?: string }, client?: API\n): Promise<PaginatedProviderCurrencyList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.providerCurrenciesList(params?.currency__code, params?.is_enabled, params?.network__code, params?.ordering, params?.page, params?.page_size, params?.provider, params?.search)\n return PaginatedProviderCurrencyListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/provider-currencies/{id}/\n */\nexport async function getPaymentsProviderCurrenciesRetrieve( id: number, client?: API\n): Promise<ProviderCurrency> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.providerCurrenciesRetrieve(id)\n return ProviderCurrencySchema.parse(response)\n}\n\n\n/**\n * Get provider currencies grouped by provider\n *\n * @method GET\n * @path /cfg/payments/provider-currencies/by_provider/\n */\nexport async function getPaymentsProviderCurrenciesByProviderRetrieve( params?: { provider?: string }, client?: API\n): Promise<ProviderCurrency> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.providerCurrenciesByProviderRetrieve(params?.provider)\n return ProviderCurrencySchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/provider-currencies/health/\n */\nexport async function getPaymentsProviderCurrenciesHealthRetrieve( client?: API\n): Promise<ProviderCurrency> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.providerCurrenciesHealthRetrieve()\n return ProviderCurrencySchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/provider-currencies/limits/\n */\nexport async function getPaymentsProviderCurrenciesLimitsRetrieve( client?: API\n): Promise<ProviderCurrency> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.providerCurrenciesLimitsRetrieve()\n return ProviderCurrencySchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/provider-currencies/stats/\n */\nexport async function getPaymentsProviderCurrenciesStatsRetrieve( client?: API\n): Promise<ProviderCurrency> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.providerCurrenciesStatsRetrieve()\n return ProviderCurrencySchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/subscriptions/\n */\nexport async function getPaymentsSubscriptionsList( params?: { ordering?: string; page?: number; page_size?: number; search?: string; status?: string; tier?: string; user?: number }, client?: API\n): Promise<PaginatedSubscriptionListList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.subscriptionsList(params?.ordering, params?.page, params?.page_size, params?.search, params?.status, params?.tier, params?.user)\n return PaginatedSubscriptionListListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/subscriptions/\n */\nexport async function createPaymentsSubscriptionsCreate( data: SubscriptionCreateRequest, client?: API\n): Promise<SubscriptionCreate> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.subscriptionsCreate(data)\n return SubscriptionCreateSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/subscriptions/{id}/\n */\nexport async function getPaymentsSubscriptionsRetrieve( id: string, client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.subscriptionsRetrieve(id)\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/payments/subscriptions/{id}/\n */\nexport async function updatePaymentsSubscriptionsUpdate( id: string, data: SubscriptionRequest, client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.subscriptionsUpdate(id, data)\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/payments/subscriptions/{id}/\n */\nexport async function partialUpdatePaymentsSubscriptionsPartialUpdate( id: string, data?: PatchedSubscriptionRequest, client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.subscriptionsPartialUpdate(id, data)\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/payments/subscriptions/{id}/\n */\nexport async function deletePaymentsSubscriptionsDestroy( id: string, client?: API\n): Promise<void> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.subscriptionsDestroy(id)\n return response\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/subscriptions/{id}/increment_usage/\n */\nexport async function createPaymentsSubscriptionsIncrementUsageCreate( id: string, data: SubscriptionRequest, client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.subscriptionsIncrementUsageCreate(id, data)\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/subscriptions/{id}/update_status/\n */\nexport async function createPaymentsSubscriptionsUpdateStatusCreate( id: string, data: SubscriptionRequest, client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.subscriptionsUpdateStatusCreate(id, data)\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/subscriptions/analytics/\n */\nexport async function getPaymentsSubscriptionsAnalyticsRetrieve( client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.subscriptionsAnalyticsRetrieve()\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/subscriptions/by_status/\n */\nexport async function getPaymentsSubscriptionsByStatusRetrieve( client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.subscriptionsByStatusRetrieve()\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/subscriptions/by_tier/\n */\nexport async function getPaymentsSubscriptionsByTierRetrieve( client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.subscriptionsByTierRetrieve()\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/subscriptions/health/\n */\nexport async function getPaymentsSubscriptionsHealthRetrieve( client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.subscriptionsHealthRetrieve()\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/subscriptions/stats/\n */\nexport async function getPaymentsSubscriptionsStatsRetrieve( client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.subscriptionsStatsRetrieve()\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/tariffs/\n */\nexport async function getPaymentsTariffsList( params?: { is_active?: boolean; ordering?: string; page?: number; page_size?: number; search?: string }, client?: API\n): Promise<PaginatedTariffList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.tariffsList(params?.is_active, params?.ordering, params?.page, params?.page_size, params?.search)\n return PaginatedTariffListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/tariffs/{id}/\n */\nexport async function getPaymentsTariffsRetrieve( id: number, client?: API\n): Promise<Tariff> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.tariffsRetrieve(id)\n return TariffSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/tariffs/{id}/endpoint_groups/\n */\nexport async function getPaymentsTariffsEndpointGroupsRetrieve( id: number, client?: API\n): Promise<Tariff> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.tariffsEndpointGroupsRetrieve(id)\n return TariffSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/tariffs/free/\n */\nexport async function getPaymentsTariffsFreeRetrieve( client?: API\n): Promise<Tariff> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.tariffsFreeRetrieve()\n return TariffSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/tariffs/health/\n */\nexport async function getPaymentsTariffsHealthRetrieve( client?: API\n): Promise<Tariff> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.tariffsHealthRetrieve()\n return TariffSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/tariffs/paid/\n */\nexport async function getPaymentsTariffsPaidRetrieve( client?: API\n): Promise<Tariff> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.tariffsPaidRetrieve()\n return TariffSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/tariffs/stats/\n */\nexport async function getPaymentsTariffsStatsRetrieve( client?: API\n): Promise<Tariff> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.tariffsStatsRetrieve()\n return TariffSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/transactions/\n */\nexport async function getPaymentsTransactionsList( params?: { ordering?: string; page?: number; page_size?: number; payment_id?: string; search?: string; transaction_type?: string; user?: number }, client?: API\n): Promise<PaginatedTransactionList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.transactionsList(params?.ordering, params?.page, params?.page_size, params?.payment_id, params?.search, params?.transaction_type, params?.user)\n return PaginatedTransactionListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/transactions/{id}/\n */\nexport async function getPaymentsTransactionsRetrieve( id: string, client?: API\n): Promise<Transaction> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.transactionsRetrieve(id)\n return TransactionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/transactions/by_type/\n */\nexport async function getPaymentsTransactionsByTypeRetrieve( client?: API\n): Promise<Transaction> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.transactionsByTypeRetrieve()\n return TransactionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/transactions/health/\n */\nexport async function getPaymentsTransactionsHealthRetrieve( client?: API\n): Promise<Transaction> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.transactionsHealthRetrieve()\n return TransactionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/transactions/recent/\n */\nexport async function getPaymentsTransactionsRecentRetrieve( client?: API\n): Promise<Transaction> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.transactionsRecentRetrieve()\n return TransactionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/transactions/stats/\n */\nexport async function getPaymentsTransactionsStatsRetrieve( client?: API\n): Promise<Transaction> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.transactionsStatsRetrieve()\n return TransactionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/\n */\nexport async function getPaymentsUsersList( params?: { currency__code?: string; ordering?: string; page?: number; page_size?: number; provider?: string; search?: string; status?: string }, client?: API\n): Promise<PaginatedPaymentListList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersList(params?.currency__code, params?.ordering, params?.page, params?.page_size, params?.provider, params?.search, params?.status)\n return PaginatedPaymentListListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/\n */\nexport async function createPaymentsUsersCreate( data: PaymentCreateRequest, client?: API\n): Promise<PaymentCreate> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersCreate(data)\n return PaymentCreateSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{id}/\n */\nexport async function getPaymentsUsersRetrieve( id: string, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersRetrieve(id)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/payments/users/{id}/\n */\nexport async function updatePaymentsUsersUpdate( id: string, data: PaymentRequest, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersUpdate(id, data)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/payments/users/{id}/\n */\nexport async function partialUpdatePaymentsUsersPartialUpdate( id: string, data?: PatchedPaymentRequest, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersPartialUpdate(id, data)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/payments/users/{id}/\n */\nexport async function deletePaymentsUsersDestroy( id: string, client?: API\n): Promise<void> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersDestroy(id)\n return response\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{id}/cancel/\n */\nexport async function createPaymentsUsersCancelCreate( id: string, data: PaymentRequest, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersCancelCreate(id, data)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{id}/check_status/\n */\nexport async function createPaymentsUsersCheckStatusCreate( id: string, data: PaymentRequest, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersCheckStatusCreate(id, data)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/api-keys/\n */\nexport async function getPaymentsUsersApiKeysList( user_pk: number, params?: { is_active?: boolean; ordering?: string; page?: number; page_size?: number; search?: string }, client?: API\n): Promise<PaginatedAPIKeyListList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersApiKeysList(user_pk, params?.is_active, params?.ordering, params?.page, params?.page_size, params?.search)\n return PaginatedAPIKeyListListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{user_pk}/api-keys/\n */\nexport async function createPaymentsUsersApiKeysCreate( user_pk: number, data: APIKeyCreateRequest, client?: API\n): Promise<APIKeyCreate> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersApiKeysCreate(user_pk, data)\n return APIKeyCreateSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/api-keys/{id}/\n */\nexport async function getPaymentsUsersApiKeysRetrieve( id: string, user_pk: number, client?: API\n): Promise<APIKeyDetail> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersApiKeysRetrieve(id, user_pk)\n return APIKeyDetailSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/payments/users/{user_pk}/api-keys/{id}/\n */\nexport async function updatePaymentsUsersApiKeysUpdate( id: string, user_pk: number, data: APIKeyUpdateRequest, client?: API\n): Promise<APIKeyUpdate> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersApiKeysUpdate(id, user_pk, data)\n return APIKeyUpdateSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/payments/users/{user_pk}/api-keys/{id}/\n */\nexport async function partialUpdatePaymentsUsersApiKeysPartialUpdate( id: string, user_pk: number, data?: PatchedAPIKeyUpdateRequest, client?: API\n): Promise<APIKeyUpdate> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersApiKeysPartialUpdate(id, user_pk, data)\n return APIKeyUpdateSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/payments/users/{user_pk}/api-keys/{id}/\n */\nexport async function deletePaymentsUsersApiKeysDestroy( id: string, user_pk: number, client?: API\n): Promise<void> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersApiKeysDestroy(id, user_pk)\n return response\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{user_pk}/api-keys/{id}/perform_action/\n */\nexport async function createPaymentsUsersApiKeysPerformActionCreate( id: string, user_pk: number, client?: API\n): Promise<APIKeyDetail> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersApiKeysPerformActionCreate(id, user_pk)\n return APIKeyDetailSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/api-keys/active/\n */\nexport async function getPaymentsUsersApiKeysActiveRetrieve( user_pk: number, client?: API\n): Promise<APIKeyDetail> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersApiKeysActiveRetrieve(user_pk)\n return APIKeyDetailSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/api-keys/health/\n */\nexport async function getPaymentsUsersApiKeysHealthRetrieve( user_pk: number, client?: API\n): Promise<APIKeyDetail> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersApiKeysHealthRetrieve(user_pk)\n return APIKeyDetailSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/api-keys/stats/\n */\nexport async function getPaymentsUsersApiKeysStatsRetrieve( user_pk: number, client?: API\n): Promise<APIKeyDetail> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersApiKeysStatsRetrieve(user_pk)\n return APIKeyDetailSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/api-keys/summary/\n */\nexport async function getPaymentsUsersApiKeysSummaryRetrieve( user_pk: number, client?: API\n): Promise<APIKeyDetail> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersApiKeysSummaryRetrieve(user_pk)\n return APIKeyDetailSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/payment/\n */\nexport async function getPaymentsUsersPaymentList( user_pk: number, params?: { currency__code?: string; ordering?: string; page?: number; page_size?: number; provider?: string; search?: string; status?: string }, client?: API\n): Promise<PaginatedPaymentListList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersPaymentList(user_pk, params?.currency__code, params?.ordering, params?.page, params?.page_size, params?.provider, params?.search, params?.status)\n return PaginatedPaymentListListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{user_pk}/payment/\n */\nexport async function createPaymentsUsersPaymentCreate( user_pk: number, data: PaymentCreateRequest, client?: API\n): Promise<PaymentCreate> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersPaymentCreate(user_pk, data)\n return PaymentCreateSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/payment/{id}/\n */\nexport async function getPaymentsUsersPaymentRetrieve( id: string, user_pk: number, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersPaymentRetrieve(id, user_pk)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/payments/users/{user_pk}/payment/{id}/\n */\nexport async function updatePaymentsUsersPaymentUpdate( id: string, user_pk: number, data: PaymentRequest, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersPaymentUpdate(id, user_pk, data)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/payments/users/{user_pk}/payment/{id}/\n */\nexport async function partialUpdatePaymentsUsersPaymentPartialUpdate( id: string, user_pk: number, data?: PatchedPaymentRequest, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersPaymentPartialUpdate(id, user_pk, data)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/payments/users/{user_pk}/payment/{id}/\n */\nexport async function deletePaymentsUsersPaymentDestroy( id: string, user_pk: number, client?: API\n): Promise<void> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersPaymentDestroy(id, user_pk)\n return response\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{user_pk}/payment/{id}/cancel/\n */\nexport async function createPaymentsUsersPaymentCancelCreate( id: string, user_pk: number, data: PaymentRequest, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersPaymentCancelCreate(id, user_pk, data)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{user_pk}/payment/{id}/check_status/\n */\nexport async function createPaymentsUsersPaymentCheckStatusCreate( id: string, user_pk: number, data: PaymentRequest, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersPaymentCheckStatusCreate(id, user_pk, data)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/payment/health/\n */\nexport async function getPaymentsUsersPaymentHealthRetrieve( user_pk: number, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersPaymentHealthRetrieve(user_pk)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/payment/stats/\n */\nexport async function getPaymentsUsersPaymentStatsRetrieve( user_pk: number, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersPaymentStatsRetrieve(user_pk)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/payment/summary/\n */\nexport async function getPaymentsUsersPaymentSummaryRetrieve( user_pk: number, client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersPaymentSummaryRetrieve(user_pk)\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/subscriptions/\n */\nexport async function getPaymentsUsersSubscriptionsList( user_pk: number, params?: { ordering?: string; page?: number; page_size?: number; search?: string; status?: string; tier?: string }, client?: API\n): Promise<PaginatedSubscriptionListList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersSubscriptionsList(user_pk, params?.ordering, params?.page, params?.page_size, params?.search, params?.status, params?.tier)\n return PaginatedSubscriptionListListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{user_pk}/subscriptions/\n */\nexport async function createPaymentsUsersSubscriptionsCreate( user_pk: number, data: SubscriptionCreateRequest, client?: API\n): Promise<SubscriptionCreate> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersSubscriptionsCreate(user_pk, data)\n return SubscriptionCreateSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/subscriptions/{id}/\n */\nexport async function getPaymentsUsersSubscriptionsRetrieve( id: string, user_pk: number, client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersSubscriptionsRetrieve(id, user_pk)\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/payments/users/{user_pk}/subscriptions/{id}/\n */\nexport async function updatePaymentsUsersSubscriptionsUpdate( id: string, user_pk: number, data: SubscriptionRequest, client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersSubscriptionsUpdate(id, user_pk, data)\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/payments/users/{user_pk}/subscriptions/{id}/\n */\nexport async function partialUpdatePaymentsUsersSubscriptionsPartialUpdate( id: string, user_pk: number, data?: PatchedSubscriptionRequest, client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersSubscriptionsPartialUpdate(id, user_pk, data)\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/payments/users/{user_pk}/subscriptions/{id}/\n */\nexport async function deletePaymentsUsersSubscriptionsDestroy( id: string, user_pk: number, client?: API\n): Promise<void> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersSubscriptionsDestroy(id, user_pk)\n return response\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{user_pk}/subscriptions/{id}/increment_usage/\n */\nexport async function createPaymentsUsersSubscriptionsIncrementUsageCreate( id: string, user_pk: number, data: SubscriptionRequest, client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersSubscriptionsIncrementUsageCreate(id, user_pk, data)\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{user_pk}/subscriptions/{id}/update_status/\n */\nexport async function createPaymentsUsersSubscriptionsUpdateStatusCreate( id: string, user_pk: number, data: SubscriptionRequest, client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersSubscriptionsUpdateStatusCreate(id, user_pk, data)\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/subscriptions/active/\n */\nexport async function getPaymentsUsersSubscriptionsActiveRetrieve( user_pk: number, client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersSubscriptionsActiveRetrieve(user_pk)\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/subscriptions/health/\n */\nexport async function getPaymentsUsersSubscriptionsHealthRetrieve( user_pk: number, client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersSubscriptionsHealthRetrieve(user_pk)\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/subscriptions/stats/\n */\nexport async function getPaymentsUsersSubscriptionsStatsRetrieve( user_pk: number, client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersSubscriptionsStatsRetrieve(user_pk)\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/subscriptions/summary/\n */\nexport async function getPaymentsUsersSubscriptionsSummaryRetrieve( user_pk: number, client?: API\n): Promise<Subscription> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersSubscriptionsSummaryRetrieve(user_pk)\n return SubscriptionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/health/\n */\nexport async function getPaymentsUsersHealthRetrieve( client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersHealthRetrieve()\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/stats/\n */\nexport async function getPaymentsUsersStatsRetrieve( client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersStatsRetrieve()\n return PaymentSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/summary/\n */\nexport async function getPaymentsUsersSummaryRetrieve( client?: API\n): Promise<Payment> {\n const api = client || getAPIInstance()\n const response = await api.cfg_payments.usersSummaryRetrieve()\n return PaymentSchema.parse(response)\n}\n\n\n","/**\n * Typed fetchers for Webhooks\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { SupportedProvidersSchema, type SupportedProviders } from '../schemas/SupportedProviders.schema'\nimport { WebhookHealthSchema, type WebhookHealth } from '../schemas/WebhookHealth.schema'\nimport { WebhookResponseSchema, type WebhookResponse } from '../schemas/WebhookResponse.schema'\nimport { WebhookResponseRequestSchema, type WebhookResponseRequest } from '../schemas/WebhookResponseRequest.schema'\nimport { WebhookStatsSchema, type WebhookStats } from '../schemas/WebhookStats.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * Webhook Endpoint Info\n *\n * @method GET\n * @path /cfg/payments/webhooks/{provider}/\n */\nexport async function getPaymentsWebhooksRetrieve( provider: string, client?: API\n): Promise<WebhookResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_webhooks.paymentsWebhooksRetrieve(provider)\n return WebhookResponseSchema.parse(response)\n}\n\n\n/**\n * Process Webhook\n *\n * @method POST\n * @path /cfg/payments/webhooks/{provider}/\n */\nexport async function createPaymentsWebhooksCreate( provider: string, data: WebhookResponseRequest, client?: API\n): Promise<WebhookResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_webhooks.paymentsWebhooksCreate(provider, data)\n return WebhookResponseSchema.parse(response)\n}\n\n\n/**\n * Webhook Health Check\n *\n * @method GET\n * @path /cfg/payments/webhooks/health/\n */\nexport async function getPaymentsWebhooksHealthRetrieve( client?: API\n): Promise<WebhookHealth> {\n const api = client || getAPIInstance()\n const response = await api.cfg_webhooks.paymentsWebhooksHealthRetrieve()\n return WebhookHealthSchema.parse(response)\n}\n\n\n/**\n * Supported Webhook Providers\n *\n * @method GET\n * @path /cfg/payments/webhooks/providers/\n */\nexport async function getPaymentsWebhooksProvidersRetrieve( client?: API\n): Promise<SupportedProviders> {\n const api = client || getAPIInstance()\n const response = await api.cfg_webhooks.paymentsWebhooksProvidersRetrieve()\n return SupportedProvidersSchema.parse(response)\n}\n\n\n/**\n * Webhook Statistics\n *\n * @method GET\n * @path /cfg/payments/webhooks/stats/\n */\nexport async function getPaymentsWebhooksStatsRetrieve( params?: { days?: number }, client?: API\n): Promise<WebhookStats> {\n const api = client || getAPIInstance()\n const response = await api.cfg_webhooks.paymentsWebhooksStatsRetrieve(params?.days)\n return WebhookStatsSchema.parse(response)\n}\n\n\n","/**\n * Typed fetchers for Support\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { MessageSchema, type Message } from '../schemas/Message.schema'\nimport { MessageCreateSchema, type MessageCreate } from '../schemas/MessageCreate.schema'\nimport { MessageCreateRequestSchema, type MessageCreateRequest } from '../schemas/MessageCreateRequest.schema'\nimport { MessageRequestSchema, type MessageRequest } from '../schemas/MessageRequest.schema'\nimport { PaginatedMessageListSchema, type PaginatedMessageList } from '../schemas/PaginatedMessageList.schema'\nimport { PaginatedTicketListSchema, type PaginatedTicketList } from '../schemas/PaginatedTicketList.schema'\nimport { PatchedMessageRequestSchema, type PatchedMessageRequest } from '../schemas/PatchedMessageRequest.schema'\nimport { PatchedTicketRequestSchema, type PatchedTicketRequest } from '../schemas/PatchedTicketRequest.schema'\nimport { TicketSchema, type Ticket } from '../schemas/Ticket.schema'\nimport { TicketRequestSchema, type TicketRequest } from '../schemas/TicketRequest.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/support/tickets/\n */\nexport async function getSupportTicketsList( params?: { page?: number; page_size?: number }, client?: API\n): Promise<PaginatedTicketList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_support.ticketsList(params?.page, params?.page_size)\n return PaginatedTicketListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/support/tickets/\n */\nexport async function createSupportTicketsCreate( data: TicketRequest, client?: API\n): Promise<Ticket> {\n const api = client || getAPIInstance()\n const response = await api.cfg_support.ticketsCreate(data)\n return TicketSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/support/tickets/{ticket_uuid}/messages/\n */\nexport async function getSupportTicketsMessagesList( ticket_uuid: string, params?: { page?: number; page_size?: number }, client?: API\n): Promise<PaginatedMessageList> {\n const api = client || getAPIInstance()\n const response = await api.cfg_support.ticketsMessagesList(ticket_uuid, params?.page, params?.page_size)\n return PaginatedMessageListSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/support/tickets/{ticket_uuid}/messages/\n */\nexport async function createSupportTicketsMessagesCreate( ticket_uuid: string, data: MessageCreateRequest, client?: API\n): Promise<MessageCreate> {\n const api = client || getAPIInstance()\n const response = await api.cfg_support.ticketsMessagesCreate(ticket_uuid, data)\n return MessageCreateSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/support/tickets/{ticket_uuid}/messages/{uuid}/\n */\nexport async function getSupportTicketsMessagesRetrieve( ticket_uuid: string, uuid: string, client?: API\n): Promise<Message> {\n const api = client || getAPIInstance()\n const response = await api.cfg_support.ticketsMessagesRetrieve(ticket_uuid, uuid)\n return MessageSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/support/tickets/{ticket_uuid}/messages/{uuid}/\n */\nexport async function updateSupportTicketsMessagesUpdate( ticket_uuid: string, uuid: string, data: MessageRequest, client?: API\n): Promise<Message> {\n const api = client || getAPIInstance()\n const response = await api.cfg_support.ticketsMessagesUpdate(ticket_uuid, uuid, data)\n return MessageSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/support/tickets/{ticket_uuid}/messages/{uuid}/\n */\nexport async function partialUpdateSupportTicketsMessagesPartialUpdate( ticket_uuid: string, uuid: string, data?: PatchedMessageRequest, client?: API\n): Promise<Message> {\n const api = client || getAPIInstance()\n const response = await api.cfg_support.ticketsMessagesPartialUpdate(ticket_uuid, uuid, data)\n return MessageSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/support/tickets/{ticket_uuid}/messages/{uuid}/\n */\nexport async function deleteSupportTicketsMessagesDestroy( ticket_uuid: string, uuid: string, client?: API\n): Promise<void> {\n const api = client || getAPIInstance()\n const response = await api.cfg_support.ticketsMessagesDestroy(ticket_uuid, uuid)\n return response\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/support/tickets/{uuid}/\n */\nexport async function getSupportTicketsRetrieve( uuid: string, client?: API\n): Promise<Ticket> {\n const api = client || getAPIInstance()\n const response = await api.cfg_support.ticketsRetrieve(uuid)\n return TicketSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/support/tickets/{uuid}/\n */\nexport async function updateSupportTicketsUpdate( uuid: string, data: TicketRequest, client?: API\n): Promise<Ticket> {\n const api = client || getAPIInstance()\n const response = await api.cfg_support.ticketsUpdate(uuid, data)\n return TicketSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/support/tickets/{uuid}/\n */\nexport async function partialUpdateSupportTicketsPartialUpdate( uuid: string, data?: PatchedTicketRequest, client?: API\n): Promise<Ticket> {\n const api = client || getAPIInstance()\n const response = await api.cfg_support.ticketsPartialUpdate(uuid, data)\n return TicketSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/support/tickets/{uuid}/\n */\nexport async function deleteSupportTicketsDestroy( uuid: string, client?: API\n): Promise<void> {\n const api = client || getAPIInstance()\n const response = await api.cfg_support.ticketsDestroy(uuid)\n return response\n}\n\n\n","/**\n * Typed fetchers for Tasks\n *\n * Universal functions that work in any environment:\n * - Next.js (App Router / Pages Router / Server Components)\n * - React Native\n * - Node.js backend\n *\n * These fetchers use Zod schemas for runtime validation.\n *\n * Usage:\n * ```typescript\n * // Configure API once (in your app entry point)\n * import { configureAPI } from '../../api-instance'\n * configureAPI({ baseUrl: 'https://api.example.com' })\n *\n * // Then use fetchers anywhere\n * const users = await getUsers({ page: 1 })\n *\n * // With SWR\n * const { data } = useSWR(['users', params], () => getUsers(params))\n *\n * // With React Query\n * const { data } = useQuery(['users', params], () => getUsers(params))\n *\n * // In Server Component or SSR (pass custom client)\n * import { API } from '../../index'\n * const api = new API('https://api.example.com')\n * const users = await getUsers({ page: 1 }, api)\n * ```\n */\nimport { APIResponseSchema, type APIResponse } from '../schemas/APIResponse.schema'\nimport { APIResponseRequestSchema, type APIResponseRequest } from '../schemas/APIResponseRequest.schema'\nimport { QueueActionSchema, type QueueAction } from '../schemas/QueueAction.schema'\nimport { QueueActionRequestSchema, type QueueActionRequest } from '../schemas/QueueActionRequest.schema'\nimport { QueueStatusSchema, type QueueStatus } from '../schemas/QueueStatus.schema'\nimport { TaskStatisticsSchema, type TaskStatistics } from '../schemas/TaskStatistics.schema'\nimport { WorkerActionSchema, type WorkerAction } from '../schemas/WorkerAction.schema'\nimport { WorkerActionRequestSchema, type WorkerActionRequest } from '../schemas/WorkerActionRequest.schema'\nimport { getAPIInstance } from '../../api-instance'\nimport type { API } from '../../index'\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/tasks/api/clear/\n */\nexport async function createTasksApiClearCreate( data: APIResponseRequest, client?: API\n): Promise<APIResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_tasks.apiClearCreate(data)\n return APIResponseSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/tasks/api/clear-queues/\n */\nexport async function createTasksApiClearQueuesCreate( data: APIResponseRequest, client?: API\n): Promise<APIResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_tasks.apiClearQueuesCreate(data)\n return APIResponseSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/tasks/api/purge-failed/\n */\nexport async function createTasksApiPurgeFailedCreate( data: APIResponseRequest, client?: API\n): Promise<APIResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_tasks.apiPurgeFailedCreate(data)\n return APIResponseSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/tasks/api/queues/manage/\n */\nexport async function createTasksApiQueuesManageCreate( data: QueueActionRequest, client?: API\n): Promise<QueueAction> {\n const api = client || getAPIInstance()\n const response = await api.cfg_tasks.apiQueuesManageCreate(data)\n return QueueActionSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/tasks/api/queues/status/\n */\nexport async function getTasksApiQueuesStatusRetrieve( client?: API\n): Promise<QueueStatus> {\n const api = client || getAPIInstance()\n const response = await api.cfg_tasks.apiQueuesStatusRetrieve()\n return QueueStatusSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/tasks/api/simulate/\n */\nexport async function createTasksApiSimulateCreate( data: APIResponseRequest, client?: API\n): Promise<APIResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_tasks.apiSimulateCreate(data)\n return APIResponseSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/tasks/api/tasks/list/\n */\nexport async function getTasksApiTasksListRetrieve( client?: API\n): Promise<APIResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_tasks.apiTasksListRetrieve()\n return APIResponseSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/tasks/api/tasks/stats/\n */\nexport async function getTasksApiTasksStatsRetrieve( client?: API\n): Promise<TaskStatistics> {\n const api = client || getAPIInstance()\n const response = await api.cfg_tasks.apiTasksStatsRetrieve()\n return TaskStatisticsSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/tasks/api/workers/list/\n */\nexport async function getTasksApiWorkersListRetrieve( client?: API\n): Promise<APIResponse> {\n const api = client || getAPIInstance()\n const response = await api.cfg_tasks.apiWorkersListRetrieve()\n return APIResponseSchema.parse(response)\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/tasks/api/workers/manage/\n */\nexport async function createTasksApiWorkersManageCreate( data: WorkerActionRequest, client?: API\n): Promise<WorkerAction> {\n const api = client || getAPIInstance()\n const response = await api.cfg_tasks.apiWorkersManageCreate(data)\n return WorkerActionSchema.parse(response)\n}\n\n\n","/**\n * SWR Hooks - React data fetching hooks\n *\n * Auto-generated from OpenAPI specification.\n * Powered by SWR for automatic caching and revalidation.\n *\n * Features:\n * - Automatic caching and deduplication\n * - Revalidation on focus/reconnect\n * - Optimistic updates\n * - Type-safe parameters and responses\n *\n * Usage:\n * ```typescript\n * import * as hooks from './hooks'\n *\n * // Query hooks (GET)\n * const { data, error, isLoading } = hooks.useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = hooks.useCreateUser()\n * await createUser({ name: 'John' })\n * ```\n */\n\nexport * from './cfg__accounts__auth'\nexport * from './cfg__newsletter__bulk_email'\nexport * from './cfg__newsletter__campaigns'\nexport * from './cfg__leads__lead_submission'\nexport * from './cfg__newsletter__logs'\nexport * from './cfg__newsletter__newsletters'\nexport * from './cfg__newsletter__subscriptions'\nexport * from './cfg__newsletter__testing'\nexport * from './cfg__accounts__user_profile'\nexport * from './cfg__payments__webhooks'\nexport * from './cfg__accounts'\nexport * from './cfg__endpoints'\nexport * from './cfg__health'\nexport * from './cfg__leads'\nexport * from './cfg__newsletter'\nexport * from './cfg__payments'\nexport * from './cfg__support'\nexport * from './cfg__tasks'\n","/**\n * SWR Hooks for Auth\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__accounts__auth'\nimport type { API } from '../../index'\nimport type { TokenRefresh } from '../schemas/TokenRefresh.schema'\nimport type { TokenRefreshRequest } from '../schemas/TokenRefreshRequest.schema'\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/accounts/token/refresh/\n */\nexport function useCreateAccountsTokenRefreshCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: TokenRefreshRequest, client?: API): Promise<TokenRefresh> => {\n const result = await Fetchers.createAccountsTokenRefreshCreate(data, client)\n // Revalidate related queries\n mutate('cfg-accounts-token-refresh')\n return result\n }\n}\n\n\n","/**\n * SWR Hooks for Bulk Email\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__newsletter__bulk_email'\nimport type { API } from '../../index'\nimport type { BulkEmailRequest } from '../schemas/BulkEmailRequest.schema'\nimport type { BulkEmailResponse } from '../schemas/BulkEmailResponse.schema'\n\n/**\n * Send Bulk Email\n *\n * @method POST\n * @path /cfg/newsletter/bulk/\n */\nexport function useCreateNewsletterBulkCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: BulkEmailRequest, client?: API): Promise<BulkEmailResponse> => {\n const result = await Fetchers.createNewsletterBulkCreate(data, client)\n // Revalidate related queries\n mutate('cfg-newsletter-bulk')\n return result\n }\n}\n\n\n","/**\n * SWR Hooks for Campaigns\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__newsletter__campaigns'\nimport type { API } from '../../index'\nimport type { NewsletterCampaign } from '../schemas/NewsletterCampaign.schema'\nimport type { NewsletterCampaignRequest } from '../schemas/NewsletterCampaignRequest.schema'\nimport type { PaginatedNewsletterCampaignList } from '../schemas/PaginatedNewsletterCampaignList.schema'\nimport type { SendCampaignRequest } from '../schemas/SendCampaignRequest.schema'\nimport type { SendCampaignResponse } from '../schemas/SendCampaignResponse.schema'\n\n/**\n * List Newsletter Campaigns\n *\n * @method GET\n * @path /cfg/newsletter/campaigns/\n */\nexport function useNewsletterCampaignsList(params?: { page?: number; page_size?: number }, client?: API): ReturnType<typeof useSWR<PaginatedNewsletterCampaignList>> {\n return useSWR<PaginatedNewsletterCampaignList>(\n params ? ['cfg-newsletter-campaigns', params] : 'cfg-newsletter-campaigns',\n () => Fetchers.getNewsletterCampaignsList(params, client)\n )\n}\n\n\n/**\n * Create Newsletter Campaign\n *\n * @method POST\n * @path /cfg/newsletter/campaigns/\n */\nexport function useCreateNewsletterCampaignsCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: NewsletterCampaignRequest, client?: API): Promise<NewsletterCampaign> => {\n const result = await Fetchers.createNewsletterCampaignsCreate(data, client)\n // Revalidate related queries\n mutate('cfg-newsletter-campaigns')\n return result\n }\n}\n\n\n/**\n * Get Campaign Details\n *\n * @method GET\n * @path /cfg/newsletter/campaigns/{id}/\n */\nexport function useNewsletterCampaignsRetrieve(id: number, client?: API): ReturnType<typeof useSWR<NewsletterCampaign>> {\n return useSWR<NewsletterCampaign>(\n ['cfg-newsletter-campaign', id],\n () => Fetchers.getNewsletterCampaignsRetrieve(id, client)\n )\n}\n\n\n/**\n * Update Campaign\n *\n * @method PUT\n * @path /cfg/newsletter/campaigns/{id}/\n */\nexport function useUpdateNewsletterCampaignsUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: number, data: NewsletterCampaignRequest, client?: API): Promise<NewsletterCampaign> => {\n const result = await Fetchers.updateNewsletterCampaignsUpdate(id, data, client)\n // Revalidate related queries\n mutate('cfg-newsletter-campaigns')\n mutate('cfg-newsletter-campaign')\n return result\n }\n}\n\n\n/**\n * Delete Campaign\n *\n * @method DELETE\n * @path /cfg/newsletter/campaigns/{id}/\n */\nexport function useDeleteNewsletterCampaignsDestroy() {\n const { mutate } = useSWRConfig()\n\n return async (id: number, client?: API): Promise<void> => {\n const result = await Fetchers.deleteNewsletterCampaignsDestroy(id, client)\n // Revalidate related queries\n mutate('cfg-newsletter-campaigns')\n mutate('cfg-newsletter-campaign')\n return result\n }\n}\n\n\n/**\n * Send Newsletter Campaign\n *\n * @method POST\n * @path /cfg/newsletter/campaigns/send/\n */\nexport function useCreateNewsletterCampaignsSendCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: SendCampaignRequest, client?: API): Promise<SendCampaignResponse> => {\n const result = await Fetchers.createNewsletterCampaignsSendCreate(data, client)\n // Revalidate related queries\n mutate('cfg-newsletter-campaigns-send')\n return result\n }\n}\n\n\n","/**\n * SWR Hooks for Lead Submission\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__leads__lead_submission'\nimport type { API } from '../../index'\nimport type { LeadSubmissionRequest } from '../schemas/LeadSubmissionRequest.schema'\nimport type { LeadSubmissionResponse } from '../schemas/LeadSubmissionResponse.schema'\n\n/**\n * Submit Lead Form\n *\n * @method POST\n * @path /cfg/leads/submit/\n */\nexport function useCreateLeadsSubmitCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: LeadSubmissionRequest, client?: API): Promise<LeadSubmissionResponse> => {\n const result = await Fetchers.createLeadsSubmitCreate(data, client)\n // Revalidate related queries\n mutate('cfg-leads-submit')\n return result\n }\n}\n\n\n","/**\n * SWR Hooks for Logs\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__newsletter__logs'\nimport type { API } from '../../index'\nimport type { PaginatedEmailLogList } from '../schemas/PaginatedEmailLogList.schema'\n\n/**\n * List Email Logs\n *\n * @method GET\n * @path /cfg/newsletter/logs/\n */\nexport function useNewsletterLogsList(params?: { page?: number; page_size?: number }, client?: API): ReturnType<typeof useSWR<PaginatedEmailLogList>> {\n return useSWR<PaginatedEmailLogList>(\n params ? ['cfg-newsletter-logs', params] : 'cfg-newsletter-logs',\n () => Fetchers.getNewsletterLogsList(params, client)\n )\n}\n\n\n","/**\n * SWR Hooks for Newsletters\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__newsletter__newsletters'\nimport type { API } from '../../index'\nimport type { Newsletter } from '../schemas/Newsletter.schema'\nimport type { PaginatedNewsletterList } from '../schemas/PaginatedNewsletterList.schema'\n\n/**\n * List Active Newsletters\n *\n * @method GET\n * @path /cfg/newsletter/newsletters/\n */\nexport function useNewsletterNewslettersList(params?: { page?: number; page_size?: number }, client?: API): ReturnType<typeof useSWR<PaginatedNewsletterList>> {\n return useSWR<PaginatedNewsletterList>(\n params ? ['cfg-newsletter-newsletters', params] : 'cfg-newsletter-newsletters',\n () => Fetchers.getNewsletterNewslettersList(params, client)\n )\n}\n\n\n/**\n * Get Newsletter Details\n *\n * @method GET\n * @path /cfg/newsletter/newsletters/{id}/\n */\nexport function useNewsletterNewslettersRetrieve(id: number, client?: API): ReturnType<typeof useSWR<Newsletter>> {\n return useSWR<Newsletter>(\n ['cfg-newsletter-newsletter', id],\n () => Fetchers.getNewsletterNewslettersRetrieve(id, client)\n )\n}\n\n\n","/**\n * SWR Hooks for Subscriptions\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__newsletter__subscriptions'\nimport type { API } from '../../index'\nimport type { PaginatedNewsletterSubscriptionList } from '../schemas/PaginatedNewsletterSubscriptionList.schema'\nimport type { SubscribeRequest } from '../schemas/SubscribeRequest.schema'\nimport type { SubscribeResponse } from '../schemas/SubscribeResponse.schema'\nimport type { SuccessResponse } from '../schemas/SuccessResponse.schema'\nimport type { UnsubscribeRequest } from '../schemas/UnsubscribeRequest.schema'\n\n/**\n * Subscribe to Newsletter\n *\n * @method POST\n * @path /cfg/newsletter/subscribe/\n */\nexport function useCreateNewsletterSubscribeCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: SubscribeRequest, client?: API): Promise<SubscribeResponse> => {\n const result = await Fetchers.createNewsletterSubscribeCreate(data, client)\n // Revalidate related queries\n mutate('cfg-newsletter-subscribe')\n return result\n }\n}\n\n\n/**\n * List User Subscriptions\n *\n * @method GET\n * @path /cfg/newsletter/subscriptions/\n */\nexport function useNewsletterSubscriptionsList(params?: { page?: number; page_size?: number }, client?: API): ReturnType<typeof useSWR<PaginatedNewsletterSubscriptionList>> {\n return useSWR<PaginatedNewsletterSubscriptionList>(\n params ? ['cfg-newsletter-subscriptions', params] : 'cfg-newsletter-subscriptions',\n () => Fetchers.getNewsletterSubscriptionsList(params, client)\n )\n}\n\n\n/**\n * Unsubscribe from Newsletter\n *\n * @method POST\n * @path /cfg/newsletter/unsubscribe/\n */\nexport function useCreateNewsletterUnsubscribeCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: UnsubscribeRequest, client?: API): Promise<SuccessResponse> => {\n const result = await Fetchers.createNewsletterUnsubscribeCreate(data, client)\n // Revalidate related queries\n mutate('cfg-newsletter-unsubscribe')\n return result\n }\n}\n\n\n","/**\n * SWR Hooks for Testing\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__newsletter__testing'\nimport type { API } from '../../index'\nimport type { BulkEmailResponse } from '../schemas/BulkEmailResponse.schema'\nimport type { TestEmailRequest } from '../schemas/TestEmailRequest.schema'\n\n/**\n * Test Email Sending\n *\n * @method POST\n * @path /cfg/newsletter/test/\n */\nexport function useCreateNewsletterTestCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: TestEmailRequest, client?: API): Promise<BulkEmailResponse> => {\n const result = await Fetchers.createNewsletterTestCreate(data, client)\n // Revalidate related queries\n mutate('cfg-newsletter-test')\n return result\n }\n}\n\n\n","/**\n * SWR Hooks for User Profile\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__accounts__user_profile'\nimport type { API } from '../../index'\nimport type { PatchedUserProfileUpdateRequest } from '../schemas/PatchedUserProfileUpdateRequest.schema'\nimport type { User } from '../schemas/User.schema'\nimport type { UserProfileUpdateRequest } from '../schemas/UserProfileUpdateRequest.schema'\n\n/**\n * Get current user profile\n *\n * @method GET\n * @path /cfg/accounts/profile/\n */\nexport function useAccountsProfileRetrieve(client?: API): ReturnType<typeof useSWR<User>> {\n return useSWR<User>(\n 'cfg-accounts-profile',\n () => Fetchers.getAccountsProfileRetrieve(client)\n )\n}\n\n\n/**\n * Upload user avatar\n *\n * @method POST\n * @path /cfg/accounts/profile/avatar/\n */\nexport function useCreateAccountsProfileAvatarCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: any, client?: API): Promise<User> => {\n const result = await Fetchers.createAccountsProfileAvatarCreate(data, client)\n // Revalidate related queries\n mutate('cfg-accounts-profile-avatar')\n return result\n }\n}\n\n\n/**\n * Partial update user profile\n *\n * @method PUT\n * @path /cfg/accounts/profile/partial/\n */\nexport function usePartialUpdateAccountsProfilePartialUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (data: UserProfileUpdateRequest, client?: API): Promise<User> => {\n const result = await Fetchers.partialUpdateAccountsProfilePartialUpdate(data, client)\n // Revalidate related queries\n mutate('cfg-accounts-profile-partial')\n return result\n }\n}\n\n\n/**\n * Partial update user profile\n *\n * @method PATCH\n * @path /cfg/accounts/profile/partial/\n */\nexport function usePartialUpdateAccountsProfilePartialPartialUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (data?: PatchedUserProfileUpdateRequest, client?: API): Promise<User> => {\n const result = await Fetchers.partialUpdateAccountsProfilePartialPartialUpdate(data, client)\n // Revalidate related queries\n mutate('cfg-accounts-profile-partial-partial')\n return result\n }\n}\n\n\n/**\n * Update user profile\n *\n * @method PUT\n * @path /cfg/accounts/profile/update/\n */\nexport function useUpdateAccountsProfileUpdateUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (data: UserProfileUpdateRequest, client?: API): Promise<User> => {\n const result = await Fetchers.updateAccountsProfileUpdateUpdate(data, client)\n // Revalidate related queries\n mutate('cfg-accounts-profile')\n return result\n }\n}\n\n\n/**\n * Update user profile\n *\n * @method PATCH\n * @path /cfg/accounts/profile/update/\n */\nexport function usePartialUpdateAccountsProfileUpdatePartialUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (data?: PatchedUserProfileUpdateRequest, client?: API): Promise<User> => {\n const result = await Fetchers.partialUpdateAccountsProfileUpdatePartialUpdate(data, client)\n // Revalidate related queries\n mutate('cfg-accounts-profile-partial')\n return result\n }\n}\n\n\n","/**\n * SWR Hooks for Webhooks\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__payments__webhooks'\nimport type { API } from '../../index'\nimport type { SupportedProviders } from '../schemas/SupportedProviders.schema'\nimport type { WebhookHealth } from '../schemas/WebhookHealth.schema'\nimport type { WebhookResponse } from '../schemas/WebhookResponse.schema'\nimport type { WebhookResponseRequest } from '../schemas/WebhookResponseRequest.schema'\nimport type { WebhookStats } from '../schemas/WebhookStats.schema'\n\n/**\n * Webhook Endpoint Info\n *\n * @method GET\n * @path /cfg/payments/webhooks/{provider}/\n */\nexport function usePaymentsWebhooksRetrieve(provider: string, client?: API): ReturnType<typeof useSWR<WebhookResponse>> {\n return useSWR<WebhookResponse>(\n ['cfg-payments-webhook', provider],\n () => Fetchers.getPaymentsWebhooksRetrieve(provider, client)\n )\n}\n\n\n/**\n * Process Webhook\n *\n * @method POST\n * @path /cfg/payments/webhooks/{provider}/\n */\nexport function useCreatePaymentsWebhooksCreate() {\n const { mutate } = useSWRConfig()\n\n return async (provider: string, data: WebhookResponseRequest, client?: API): Promise<WebhookResponse> => {\n const result = await Fetchers.createPaymentsWebhooksCreate(provider, data, client)\n // Revalidate related queries\n mutate('cfg-payments-webhooks')\n return result\n }\n}\n\n\n/**\n * Webhook Health Check\n *\n * @method GET\n * @path /cfg/payments/webhooks/health/\n */\nexport function usePaymentsWebhooksHealthRetrieve(client?: API): ReturnType<typeof useSWR<WebhookHealth>> {\n return useSWR<WebhookHealth>(\n 'cfg-payments-webhooks-health',\n () => Fetchers.getPaymentsWebhooksHealthRetrieve(client)\n )\n}\n\n\n/**\n * Supported Webhook Providers\n *\n * @method GET\n * @path /cfg/payments/webhooks/providers/\n */\nexport function usePaymentsWebhooksProvidersRetrieve(client?: API): ReturnType<typeof useSWR<SupportedProviders>> {\n return useSWR<SupportedProviders>(\n 'cfg-payments-webhooks-provider',\n () => Fetchers.getPaymentsWebhooksProvidersRetrieve(client)\n )\n}\n\n\n/**\n * Webhook Statistics\n *\n * @method GET\n * @path /cfg/payments/webhooks/stats/\n */\nexport function usePaymentsWebhooksStatsRetrieve(params?: { days?: number }, client?: API): ReturnType<typeof useSWR<WebhookStats>> {\n return useSWR<WebhookStats>(\n params ? ['cfg-payments-webhooks-stat', params] : 'cfg-payments-webhooks-stat',\n () => Fetchers.getPaymentsWebhooksStatsRetrieve(params, client)\n )\n}\n\n\n","/**\n * SWR Hooks for Accounts\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__accounts'\nimport type { API } from '../../index'\nimport type { OTPRequestRequest } from '../schemas/OTPRequestRequest.schema'\nimport type { OTPRequestResponse } from '../schemas/OTPRequestResponse.schema'\nimport type { OTPVerifyRequest } from '../schemas/OTPVerifyRequest.schema'\nimport type { OTPVerifyResponse } from '../schemas/OTPVerifyResponse.schema'\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/accounts/otp/request/\n */\nexport function useCreateAccountsOtpRequestCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: OTPRequestRequest, client?: API): Promise<OTPRequestResponse> => {\n const result = await Fetchers.createAccountsOtpRequestCreate(data, client)\n // Revalidate related queries\n mutate('cfg-accounts-otp-request')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/accounts/otp/verify/\n */\nexport function useCreateAccountsOtpVerifyCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: OTPVerifyRequest, client?: API): Promise<OTPVerifyResponse> => {\n const result = await Fetchers.createAccountsOtpVerifyCreate(data, client)\n // Revalidate related queries\n mutate('cfg-accounts-otp-verify')\n return result\n }\n}\n\n\n","/**\n * SWR Hooks for Endpoints\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__endpoints'\nimport type { API } from '../../index'\nimport type { EndpointsStatus } from '../schemas/EndpointsStatus.schema'\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/endpoints/drf/\n */\nexport function useEndpointsDrfRetrieve(client?: API): ReturnType<typeof useSWR<EndpointsStatus>> {\n return useSWR<EndpointsStatus>(\n 'cfg-endpoints-drf',\n () => Fetchers.getEndpointsDrfRetrieve(client)\n )\n}\n\n\n","/**\n * SWR Hooks for Health\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__health'\nimport type { API } from '../../index'\nimport type { HealthCheck } from '../schemas/HealthCheck.schema'\nimport type { QuickHealth } from '../schemas/QuickHealth.schema'\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/health/drf/\n */\nexport function useHealthDrfRetrieve(client?: API): ReturnType<typeof useSWR<HealthCheck>> {\n return useSWR<HealthCheck>(\n 'cfg-health-drf',\n () => Fetchers.getHealthDrfRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/health/drf/quick/\n */\nexport function useHealthDrfQuickRetrieve(client?: API): ReturnType<typeof useSWR<QuickHealth>> {\n return useSWR<QuickHealth>(\n 'cfg-health-drf-quick',\n () => Fetchers.getHealthDrfQuickRetrieve(client)\n )\n}\n\n\n","/**\n * SWR Hooks for Leads\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__leads'\nimport type { API } from '../../index'\nimport type { LeadSubmission } from '../schemas/LeadSubmission.schema'\nimport type { LeadSubmissionRequest } from '../schemas/LeadSubmissionRequest.schema'\nimport type { PaginatedLeadSubmissionList } from '../schemas/PaginatedLeadSubmissionList.schema'\nimport type { PatchedLeadSubmissionRequest } from '../schemas/PatchedLeadSubmissionRequest.schema'\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/leads/\n */\nexport function useLeadsList(params?: { page?: number; page_size?: number }, client?: API): ReturnType<typeof useSWR<PaginatedLeadSubmissionList>> {\n return useSWR<PaginatedLeadSubmissionList>(\n params ? ['cfg-leads', params] : 'cfg-leads',\n () => Fetchers.getLeadsList(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/leads/\n */\nexport function useCreateLeadsCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: LeadSubmissionRequest, client?: API): Promise<LeadSubmission> => {\n const result = await Fetchers.createLeadsCreate(data, client)\n // Revalidate related queries\n mutate('cfg-leads')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/leads/{id}/\n */\nexport function useLeadsRetrieve(id: number, client?: API): ReturnType<typeof useSWR<LeadSubmission>> {\n return useSWR<LeadSubmission>(\n ['cfg-lead', id],\n () => Fetchers.getLeadsRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/leads/{id}/\n */\nexport function useUpdateLeadsUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: number, data: LeadSubmissionRequest, client?: API): Promise<LeadSubmission> => {\n const result = await Fetchers.updateLeadsUpdate(id, data, client)\n // Revalidate related queries\n mutate('cfg-leads')\n mutate('cfg-lead')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/leads/{id}/\n */\nexport function usePartialUpdateLeadsPartialUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: number, data?: PatchedLeadSubmissionRequest, client?: API): Promise<LeadSubmission> => {\n const result = await Fetchers.partialUpdateLeadsPartialUpdate(id, data, client)\n // Revalidate related queries\n mutate('cfg-leads-partial')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/leads/{id}/\n */\nexport function useDeleteLeadsDestroy() {\n const { mutate } = useSWRConfig()\n\n return async (id: number, client?: API): Promise<void> => {\n const result = await Fetchers.deleteLeadsDestroy(id, client)\n // Revalidate related queries\n mutate('cfg-leads')\n mutate('cfg-lead')\n return result\n }\n}\n\n\n","/**\n * SWR Hooks for Newsletter\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__newsletter'\nimport type { API } from '../../index'\nimport type { NewsletterCampaign } from '../schemas/NewsletterCampaign.schema'\nimport type { PatchedNewsletterCampaignRequest } from '../schemas/PatchedNewsletterCampaignRequest.schema'\nimport type { PatchedUnsubscribeRequest } from '../schemas/PatchedUnsubscribeRequest.schema'\nimport type { Unsubscribe } from '../schemas/Unsubscribe.schema'\nimport type { UnsubscribeRequest } from '../schemas/UnsubscribeRequest.schema'\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/newsletter/campaigns/{id}/\n */\nexport function usePartialUpdateNewsletterCampaignsPartialUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: number, data?: PatchedNewsletterCampaignRequest, client?: API): Promise<NewsletterCampaign> => {\n const result = await Fetchers.partialUpdateNewsletterCampaignsPartialUpdate(id, data, client)\n // Revalidate related queries\n mutate('cfg-newsletter-campaigns-partial')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/newsletter/unsubscribe/\n */\nexport function useUpdateNewsletterUnsubscribeUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (data: UnsubscribeRequest, client?: API): Promise<Unsubscribe> => {\n const result = await Fetchers.updateNewsletterUnsubscribeUpdate(data, client)\n // Revalidate related queries\n mutate('cfg-newsletter-unsubscribe')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/newsletter/unsubscribe/\n */\nexport function usePartialUpdateNewsletterUnsubscribePartialUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (data?: PatchedUnsubscribeRequest, client?: API): Promise<Unsubscribe> => {\n const result = await Fetchers.partialUpdateNewsletterUnsubscribePartialUpdate(data, client)\n // Revalidate related queries\n mutate('cfg-newsletter-unsubscribe-partial')\n return result\n }\n}\n\n\n","/**\n * SWR Hooks for Payments\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__payments'\nimport type { API } from '../../index'\nimport type { APIKeyCreate } from '../schemas/APIKeyCreate.schema'\nimport type { APIKeyCreateRequest } from '../schemas/APIKeyCreateRequest.schema'\nimport type { APIKeyDetail } from '../schemas/APIKeyDetail.schema'\nimport type { APIKeyUpdate } from '../schemas/APIKeyUpdate.schema'\nimport type { APIKeyUpdateRequest } from '../schemas/APIKeyUpdateRequest.schema'\nimport type { APIKeyValidationRequest } from '../schemas/APIKeyValidationRequest.schema'\nimport type { APIKeyValidationResponse } from '../schemas/APIKeyValidationResponse.schema'\nimport type { APIKeysOverview } from '../schemas/APIKeysOverview.schema'\nimport type { AdminPaymentCreate } from '../schemas/AdminPaymentCreate.schema'\nimport type { AdminPaymentCreateRequest } from '../schemas/AdminPaymentCreateRequest.schema'\nimport type { AdminPaymentDetail } from '../schemas/AdminPaymentDetail.schema'\nimport type { AdminPaymentStats } from '../schemas/AdminPaymentStats.schema'\nimport type { AdminPaymentUpdate } from '../schemas/AdminPaymentUpdate.schema'\nimport type { AdminPaymentUpdateRequest } from '../schemas/AdminPaymentUpdateRequest.schema'\nimport type { AdminUser } from '../schemas/AdminUser.schema'\nimport type { BalanceOverview } from '../schemas/BalanceOverview.schema'\nimport type { Currency } from '../schemas/Currency.schema'\nimport type { EndpointGroup } from '../schemas/EndpointGroup.schema'\nimport type { Network } from '../schemas/Network.schema'\nimport type { PaginatedAPIKeyListList } from '../schemas/PaginatedAPIKeyListList.schema'\nimport type { PaginatedAdminPaymentListList } from '../schemas/PaginatedAdminPaymentListList.schema'\nimport type { PaginatedAdminPaymentStatsList } from '../schemas/PaginatedAdminPaymentStatsList.schema'\nimport type { PaginatedAdminUserList } from '../schemas/PaginatedAdminUserList.schema'\nimport type { PaginatedCurrencyListList } from '../schemas/PaginatedCurrencyListList.schema'\nimport type { PaginatedEndpointGroupList } from '../schemas/PaginatedEndpointGroupList.schema'\nimport type { PaginatedNetworkList } from '../schemas/PaginatedNetworkList.schema'\nimport type { PaginatedPaymentListList } from '../schemas/PaginatedPaymentListList.schema'\nimport type { PaginatedProviderCurrencyList } from '../schemas/PaginatedProviderCurrencyList.schema'\nimport type { PaginatedRecentPaymentList } from '../schemas/PaginatedRecentPaymentList.schema'\nimport type { PaginatedRecentTransactionList } from '../schemas/PaginatedRecentTransactionList.schema'\nimport type { PaginatedSubscriptionListList } from '../schemas/PaginatedSubscriptionListList.schema'\nimport type { PaginatedTariffList } from '../schemas/PaginatedTariffList.schema'\nimport type { PaginatedTransactionList } from '../schemas/PaginatedTransactionList.schema'\nimport type { PaginatedUserBalanceList } from '../schemas/PaginatedUserBalanceList.schema'\nimport type { PaginatedWebhookEventListList } from '../schemas/PaginatedWebhookEventListList.schema'\nimport type { PaginatedWebhookStatsList } from '../schemas/PaginatedWebhookStatsList.schema'\nimport type { PatchedAPIKeyUpdateRequest } from '../schemas/PatchedAPIKeyUpdateRequest.schema'\nimport type { PatchedAdminPaymentUpdateRequest } from '../schemas/PatchedAdminPaymentUpdateRequest.schema'\nimport type { PatchedPaymentRequest } from '../schemas/PatchedPaymentRequest.schema'\nimport type { PatchedSubscriptionRequest } from '../schemas/PatchedSubscriptionRequest.schema'\nimport type { Payment } from '../schemas/Payment.schema'\nimport type { PaymentAnalyticsResponse } from '../schemas/PaymentAnalyticsResponse.schema'\nimport type { PaymentCreate } from '../schemas/PaymentCreate.schema'\nimport type { PaymentCreateRequest } from '../schemas/PaymentCreateRequest.schema'\nimport type { PaymentRequest } from '../schemas/PaymentRequest.schema'\nimport type { PaymentsChartResponse } from '../schemas/PaymentsChartResponse.schema'\nimport type { PaymentsDashboardOverview } from '../schemas/PaymentsDashboardOverview.schema'\nimport type { PaymentsMetrics } from '../schemas/PaymentsMetrics.schema'\nimport type { ProviderCurrency } from '../schemas/ProviderCurrency.schema'\nimport type { Subscription } from '../schemas/Subscription.schema'\nimport type { SubscriptionCreate } from '../schemas/SubscriptionCreate.schema'\nimport type { SubscriptionCreateRequest } from '../schemas/SubscriptionCreateRequest.schema'\nimport type { SubscriptionOverview } from '../schemas/SubscriptionOverview.schema'\nimport type { SubscriptionRequest } from '../schemas/SubscriptionRequest.schema'\nimport type { Tariff } from '../schemas/Tariff.schema'\nimport type { Transaction } from '../schemas/Transaction.schema'\nimport type { UserBalance } from '../schemas/UserBalance.schema'\nimport type { WebhookEventList } from '../schemas/WebhookEventList.schema'\nimport type { WebhookEventListRequest } from '../schemas/WebhookEventListRequest.schema'\nimport type { WebhookStats } from '../schemas/WebhookStats.schema'\nimport type { WebhookStatsRequest } from '../schemas/WebhookStatsRequest.schema'\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/payments/\n */\nexport function usePaymentsAdminApiPaymentsList(params?: { currency__code?: string; ordering?: string; page?: number; page_size?: number; provider?: string; search?: string; status?: string; user?: number }, client?: API): ReturnType<typeof useSWR<PaginatedAdminPaymentListList>> {\n return useSWR<PaginatedAdminPaymentListList>(\n params ? ['cfg-payments-admin-api-payments', params] : 'cfg-payments-admin-api-payments',\n () => Fetchers.getPaymentsAdminApiPaymentsList(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/admin/api/payments/\n */\nexport function useCreatePaymentsAdminApiPaymentsCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: AdminPaymentCreateRequest, client?: API): Promise<AdminPaymentCreate> => {\n const result = await Fetchers.createPaymentsAdminApiPaymentsCreate(data, client)\n // Revalidate related queries\n mutate('cfg-payments-admin-api-payments')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/payments/{id}/\n */\nexport function usePaymentsAdminApiPaymentsRetrieve(id: string, client?: API): ReturnType<typeof useSWR<AdminPaymentDetail>> {\n return useSWR<AdminPaymentDetail>(\n ['cfg-payments-admin-api-payment', id],\n () => Fetchers.getPaymentsAdminApiPaymentsRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/payments/admin/api/payments/{id}/\n */\nexport function useUpdatePaymentsAdminApiPaymentsUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, data: AdminPaymentUpdateRequest, client?: API): Promise<AdminPaymentUpdate> => {\n const result = await Fetchers.updatePaymentsAdminApiPaymentsUpdate(id, data, client)\n // Revalidate related queries\n mutate('cfg-payments-admin-api-payments')\n mutate('cfg-payments-admin-api-payment')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/payments/admin/api/payments/{id}/\n */\nexport function usePartialUpdatePaymentsAdminApiPaymentsPartialUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, data?: PatchedAdminPaymentUpdateRequest, client?: API): Promise<AdminPaymentUpdate> => {\n const result = await Fetchers.partialUpdatePaymentsAdminApiPaymentsPartialUpdate(id, data, client)\n // Revalidate related queries\n mutate('cfg-payments-admin-api-payments-partial')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/payments/admin/api/payments/{id}/\n */\nexport function useDeletePaymentsAdminApiPaymentsDestroy() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, client?: API): Promise<void> => {\n const result = await Fetchers.deletePaymentsAdminApiPaymentsDestroy(id, client)\n // Revalidate related queries\n mutate('cfg-payments-admin-api-payments')\n mutate('cfg-payments-admin-api-payment')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/admin/api/payments/{id}/cancel/\n */\nexport function useCreatePaymentsAdminApiPaymentsCancelCreate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, client?: API): Promise<AdminPaymentDetail> => {\n const result = await Fetchers.createPaymentsAdminApiPaymentsCancelCreate(id, client)\n // Revalidate related queries\n mutate('cfg-payments-admin-api-payments-cancel')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/admin/api/payments/{id}/refresh_status/\n */\nexport function useCreatePaymentsAdminApiPaymentsRefreshStatusCreate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, client?: API): Promise<AdminPaymentDetail> => {\n const result = await Fetchers.createPaymentsAdminApiPaymentsRefreshStatusCreate(id, client)\n // Revalidate related queries\n mutate('cfg-payments-admin-api-payments-refresh-status')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/admin/api/payments/{id}/refund/\n */\nexport function useCreatePaymentsAdminApiPaymentsRefundCreate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, client?: API): Promise<AdminPaymentDetail> => {\n const result = await Fetchers.createPaymentsAdminApiPaymentsRefundCreate(id, client)\n // Revalidate related queries\n mutate('cfg-payments-admin-api-payments-refund')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/payments/stats/\n */\nexport function usePaymentsAdminApiPaymentsStatsRetrieve(client?: API): ReturnType<typeof useSWR<AdminPaymentStats>> {\n return useSWR<AdminPaymentStats>(\n 'cfg-payments-admin-api-payments-stat',\n () => Fetchers.getPaymentsAdminApiPaymentsStatsRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/stats/\n */\nexport function usePaymentsAdminApiStatsList(params?: { ordering?: string; page?: number; page_size?: number; search?: string }, client?: API): ReturnType<typeof useSWR<PaginatedAdminPaymentStatsList>> {\n return useSWR<PaginatedAdminPaymentStatsList>(\n params ? ['cfg-payments-admin-api-stats', params] : 'cfg-payments-admin-api-stats',\n () => Fetchers.getPaymentsAdminApiStatsList(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/stats/{id}/\n */\nexport function usePaymentsAdminApiStatsRetrieve(id: string, client?: API): ReturnType<typeof useSWR<AdminPaymentStats>> {\n return useSWR<AdminPaymentStats>(\n ['cfg-payments-admin-api-stat', id],\n () => Fetchers.getPaymentsAdminApiStatsRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/stats/payments/\n */\nexport function usePaymentsAdminApiStatsPaymentsRetrieve(client?: API): ReturnType<typeof useSWR<AdminPaymentStats>> {\n return useSWR<AdminPaymentStats>(\n 'cfg-payments-admin-api-stats-payment',\n () => Fetchers.getPaymentsAdminApiStatsPaymentsRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/stats/system/\n */\nexport function usePaymentsAdminApiStatsSystemRetrieve(client?: API): ReturnType<typeof useSWR<AdminPaymentStats>> {\n return useSWR<AdminPaymentStats>(\n 'cfg-payments-admin-api-stats-system',\n () => Fetchers.getPaymentsAdminApiStatsSystemRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/stats/webhooks/\n */\nexport function usePaymentsAdminApiStatsWebhooksRetrieve(client?: API): ReturnType<typeof useSWR<AdminPaymentStats>> {\n return useSWR<AdminPaymentStats>(\n 'cfg-payments-admin-api-stats-webhook',\n () => Fetchers.getPaymentsAdminApiStatsWebhooksRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/users/\n */\nexport function usePaymentsAdminApiUsersList(params?: { is_active?: boolean; is_staff?: boolean; is_superuser?: boolean; ordering?: string; page?: number; page_size?: number; search?: string }, client?: API): ReturnType<typeof useSWR<PaginatedAdminUserList>> {\n return useSWR<PaginatedAdminUserList>(\n params ? ['cfg-payments-admin-api-users', params] : 'cfg-payments-admin-api-users',\n () => Fetchers.getPaymentsAdminApiUsersList(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/users/{id}/\n */\nexport function usePaymentsAdminApiUsersRetrieve(id: number, client?: API): ReturnType<typeof useSWR<AdminUser>> {\n return useSWR<AdminUser>(\n ['cfg-payments-admin-api-user', id],\n () => Fetchers.getPaymentsAdminApiUsersRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/admin/api/webhook-test/test/\n */\nexport function useCreatePaymentsAdminApiWebhookTestTestCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: WebhookStatsRequest, client?: API): Promise<WebhookStats> => {\n const result = await Fetchers.createPaymentsAdminApiWebhookTestTestCreate(data, client)\n // Revalidate related queries\n mutate('cfg-payments-admin-api-webhook-test-test')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/webhooks/\n */\nexport function usePaymentsAdminApiWebhooksList(params?: { ordering?: string; page?: number; page_size?: number; search?: string }, client?: API): ReturnType<typeof useSWR<PaginatedWebhookStatsList>> {\n return useSWR<PaginatedWebhookStatsList>(\n params ? ['cfg-payments-admin-api-webhooks', params] : 'cfg-payments-admin-api-webhooks',\n () => Fetchers.getPaymentsAdminApiWebhooksList(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/webhooks/{id}/\n */\nexport function usePaymentsAdminApiWebhooksRetrieve(id: string, client?: API): ReturnType<typeof useSWR<WebhookStats>> {\n return useSWR<WebhookStats>(\n ['cfg-payments-admin-api-webhook', id],\n () => Fetchers.getPaymentsAdminApiWebhooksRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/webhooks/{webhook_pk}/events/\n */\nexport function usePaymentsAdminApiWebhooksEventsList(webhook_pk: string, params?: { ordering?: string; page?: number; page_size?: number; search?: string }, client?: API): ReturnType<typeof useSWR<PaginatedWebhookEventListList>> {\n return useSWR<PaginatedWebhookEventListList>(\n ['cfg-payments-admin-api-webhooks-events', webhook_pk],\n () => Fetchers.getPaymentsAdminApiWebhooksEventsList(webhook_pk, params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/webhooks/{webhook_pk}/events/{id}/\n */\nexport function usePaymentsAdminApiWebhooksEventsRetrieve(id: string, webhook_pk: string, client?: API): ReturnType<typeof useSWR<WebhookEventList>> {\n return useSWR<WebhookEventList>(\n ['cfg-payments-admin-api-webhooks-event', id],\n () => Fetchers.getPaymentsAdminApiWebhooksEventsRetrieve(id, webhook_pk, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/admin/api/webhooks/{webhook_pk}/events/{id}/retry/\n */\nexport function useCreatePaymentsAdminApiWebhooksEventsRetryCreate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, webhook_pk: string, data: WebhookEventListRequest, client?: API): Promise<WebhookEventList> => {\n const result = await Fetchers.createPaymentsAdminApiWebhooksEventsRetryCreate(id, webhook_pk, data, client)\n // Revalidate related queries\n mutate('cfg-payments-admin-api-webhooks-events-retry')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/admin/api/webhooks/{webhook_pk}/events/clear_all/\n */\nexport function useCreatePaymentsAdminApiWebhooksEventsClearAllCreate() {\n const { mutate } = useSWRConfig()\n\n return async (webhook_pk: string, data: WebhookEventListRequest, client?: API): Promise<WebhookEventList> => {\n const result = await Fetchers.createPaymentsAdminApiWebhooksEventsClearAllCreate(webhook_pk, data, client)\n // Revalidate related queries\n mutate('cfg-payments-admin-api-webhooks-events-clear-all')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/admin/api/webhooks/{webhook_pk}/events/retry_failed/\n */\nexport function useCreatePaymentsAdminApiWebhooksEventsRetryFailedCreate() {\n const { mutate } = useSWRConfig()\n\n return async (webhook_pk: string, data: WebhookEventListRequest, client?: API): Promise<WebhookEventList> => {\n const result = await Fetchers.createPaymentsAdminApiWebhooksEventsRetryFailedCreate(webhook_pk, data, client)\n // Revalidate related queries\n mutate('cfg-payments-admin-api-webhooks-events-retry-failed')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/admin/api/webhooks/stats/\n */\nexport function usePaymentsAdminApiWebhooksStatsRetrieve(client?: API): ReturnType<typeof useSWR<WebhookStats>> {\n return useSWR<WebhookStats>(\n 'cfg-payments-admin-api-webhooks-stat',\n () => Fetchers.getPaymentsAdminApiWebhooksStatsRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/api-keys/\n */\nexport function usePaymentsApiKeysList(params?: { is_active?: boolean; ordering?: string; page?: number; page_size?: number; search?: string; user?: number }, client?: API): ReturnType<typeof useSWR<PaginatedAPIKeyListList>> {\n return useSWR<PaginatedAPIKeyListList>(\n params ? ['cfg-payments-api-keys', params] : 'cfg-payments-api-keys',\n () => Fetchers.getPaymentsApiKeysList(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/api-keys/\n */\nexport function useCreatePaymentsApiKeysCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: APIKeyCreateRequest, client?: API): Promise<APIKeyCreate> => {\n const result = await Fetchers.createPaymentsApiKeysCreate(data, client)\n // Revalidate related queries\n mutate('cfg-payments-api-keys')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/api-keys/{id}/\n */\nexport function usePaymentsApiKeysRetrieve(id: string, client?: API): ReturnType<typeof useSWR<APIKeyDetail>> {\n return useSWR<APIKeyDetail>(\n ['cfg-payments-api-key', id],\n () => Fetchers.getPaymentsApiKeysRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/payments/api-keys/{id}/\n */\nexport function useUpdatePaymentsApiKeysUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, data: APIKeyUpdateRequest, client?: API): Promise<APIKeyUpdate> => {\n const result = await Fetchers.updatePaymentsApiKeysUpdate(id, data, client)\n // Revalidate related queries\n mutate('cfg-payments-api-keys')\n mutate('cfg-payments-api-key')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/payments/api-keys/{id}/\n */\nexport function usePartialUpdatePaymentsApiKeysPartialUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, data?: PatchedAPIKeyUpdateRequest, client?: API): Promise<APIKeyUpdate> => {\n const result = await Fetchers.partialUpdatePaymentsApiKeysPartialUpdate(id, data, client)\n // Revalidate related queries\n mutate('cfg-payments-api-keys-partial')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/payments/api-keys/{id}/\n */\nexport function useDeletePaymentsApiKeysDestroy() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, client?: API): Promise<void> => {\n const result = await Fetchers.deletePaymentsApiKeysDestroy(id, client)\n // Revalidate related queries\n mutate('cfg-payments-api-keys')\n mutate('cfg-payments-api-key')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/api-keys/{id}/perform_action/\n */\nexport function useCreatePaymentsApiKeysPerformActionCreate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, client?: API): Promise<APIKeyDetail> => {\n const result = await Fetchers.createPaymentsApiKeysPerformActionCreate(id, client)\n // Revalidate related queries\n mutate('cfg-payments-api-keys-perform-action')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/api-keys/analytics/\n */\nexport function usePaymentsApiKeysAnalyticsRetrieve(client?: API): ReturnType<typeof useSWR<APIKeyDetail>> {\n return useSWR<APIKeyDetail>(\n 'cfg-payments-api-keys-analytic',\n () => Fetchers.getPaymentsApiKeysAnalyticsRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/api-keys/by_user/\n */\nexport function usePaymentsApiKeysByUserRetrieve(client?: API): ReturnType<typeof useSWR<APIKeyDetail>> {\n return useSWR<APIKeyDetail>(\n 'cfg-payments-api-keys-by-user',\n () => Fetchers.getPaymentsApiKeysByUserRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/api-keys/create/\n */\nexport function useCreatePaymentsApiKeysCreateCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: APIKeyCreateRequest, client?: API): Promise<APIKeyCreate> => {\n const result = await Fetchers.createPaymentsApiKeysCreateCreate(data, client)\n // Revalidate related queries\n mutate('cfg-payments-api-keys')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/api-keys/expiring_soon/\n */\nexport function usePaymentsApiKeysExpiringSoonRetrieve(client?: API): ReturnType<typeof useSWR<APIKeyDetail>> {\n return useSWR<APIKeyDetail>(\n 'cfg-payments-api-keys-expiring-soon',\n () => Fetchers.getPaymentsApiKeysExpiringSoonRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/api-keys/health/\n */\nexport function usePaymentsApiKeysHealthRetrieve(client?: API): ReturnType<typeof useSWR<APIKeyDetail>> {\n return useSWR<APIKeyDetail>(\n 'cfg-payments-api-keys-health',\n () => Fetchers.getPaymentsApiKeysHealthRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/api-keys/stats/\n */\nexport function usePaymentsApiKeysStatsRetrieve(client?: API): ReturnType<typeof useSWR<APIKeyDetail>> {\n return useSWR<APIKeyDetail>(\n 'cfg-payments-api-keys-stat',\n () => Fetchers.getPaymentsApiKeysStatsRetrieve(client)\n )\n}\n\n\n/**\n * Validate API Key (Standalone)\n *\n * @method POST\n * @path /cfg/payments/api-keys/validate/\n */\nexport function useCreatePaymentsApiKeysValidateCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: APIKeyValidationRequest, client?: API): Promise<APIKeyValidationResponse> => {\n const result = await Fetchers.createPaymentsApiKeysValidateCreate(data, client)\n // Revalidate related queries\n mutate('cfg-payments-api-keys-validate')\n return result\n }\n}\n\n\n/**\n * Validate API Key\n *\n * @method POST\n * @path /cfg/payments/api-keys/validate_key/\n */\nexport function useCreatePaymentsApiKeysValidateKeyCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: APIKeyValidationRequest, client?: API): Promise<APIKeyValidationResponse> => {\n const result = await Fetchers.createPaymentsApiKeysValidateKeyCreate(data, client)\n // Revalidate related queries\n mutate('cfg-payments-api-keys-validate-key')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/balances/\n */\nexport function usePaymentsBalancesList(params?: { ordering?: string; page?: number; page_size?: number; search?: string; user?: number }, client?: API): ReturnType<typeof useSWR<PaginatedUserBalanceList>> {\n return useSWR<PaginatedUserBalanceList>(\n params ? ['cfg-payments-balances', params] : 'cfg-payments-balances',\n () => Fetchers.getPaymentsBalancesList(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/balances/{id}/\n */\nexport function usePaymentsBalancesRetrieve(id: number, client?: API): ReturnType<typeof useSWR<UserBalance>> {\n return useSWR<UserBalance>(\n ['cfg-payments-balance', id],\n () => Fetchers.getPaymentsBalancesRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/balances/analytics/\n */\nexport function usePaymentsBalancesAnalyticsRetrieve(client?: API): ReturnType<typeof useSWR<UserBalance>> {\n return useSWR<UserBalance>(\n 'cfg-payments-balances-analytic',\n () => Fetchers.getPaymentsBalancesAnalyticsRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/balances/health/\n */\nexport function usePaymentsBalancesHealthRetrieve(client?: API): ReturnType<typeof useSWR<UserBalance>> {\n return useSWR<UserBalance>(\n 'cfg-payments-balances-health',\n () => Fetchers.getPaymentsBalancesHealthRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/balances/stats/\n */\nexport function usePaymentsBalancesStatsRetrieve(client?: API): ReturnType<typeof useSWR<UserBalance>> {\n return useSWR<UserBalance>(\n 'cfg-payments-balances-stat',\n () => Fetchers.getPaymentsBalancesStatsRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/balances/summary/\n */\nexport function usePaymentsBalancesSummaryRetrieve(client?: API): ReturnType<typeof useSWR<UserBalance>> {\n return useSWR<UserBalance>(\n 'cfg-payments-balances-summary',\n () => Fetchers.getPaymentsBalancesSummaryRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/\n */\nexport function usePaymentsCurrenciesList(params?: { currency_type?: string; is_active?: boolean; ordering?: string; page?: number; page_size?: number; search?: string }, client?: API): ReturnType<typeof useSWR<PaginatedCurrencyListList>> {\n return useSWR<PaginatedCurrencyListList>(\n params ? ['cfg-payments-currencies', params] : 'cfg-payments-currencies',\n () => Fetchers.getPaymentsCurrenciesList(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/currencies/\n */\nexport function useCreatePaymentsCurrenciesCreate() {\n const { mutate } = useSWRConfig()\n\n return async (client?: API): Promise<Currency> => {\n const result = await Fetchers.createPaymentsCurrenciesCreate(client)\n // Revalidate related queries\n mutate('cfg-payments-currencies')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/{id}/\n */\nexport function usePaymentsCurrenciesRetrieve(id: number, client?: API): ReturnType<typeof useSWR<Currency>> {\n return useSWR<Currency>(\n ['cfg-payments-currencie', id],\n () => Fetchers.getPaymentsCurrenciesRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/{id}/networks/\n */\nexport function usePaymentsCurrenciesNetworksRetrieve(id: number, client?: API): ReturnType<typeof useSWR<Currency>> {\n return useSWR<Currency>(\n ['cfg-payments-currencies-network', id],\n () => Fetchers.getPaymentsCurrenciesNetworksRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/{id}/providers/\n */\nexport function usePaymentsCurrenciesProvidersRetrieve(id: number, client?: API): ReturnType<typeof useSWR<Currency>> {\n return useSWR<Currency>(\n ['cfg-payments-currencies-provider', id],\n () => Fetchers.getPaymentsCurrenciesProvidersRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/currencies/convert/\n */\nexport function useCreatePaymentsCurrenciesConvertCreate() {\n const { mutate } = useSWRConfig()\n\n return async (client?: API): Promise<Currency> => {\n const result = await Fetchers.createPaymentsCurrenciesConvertCreate(client)\n // Revalidate related queries\n mutate('cfg-payments-currencies-convert')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/crypto/\n */\nexport function usePaymentsCurrenciesCryptoRetrieve(client?: API): ReturnType<typeof useSWR<Currency>> {\n return useSWR<Currency>(\n 'cfg-payments-currencies-crypto',\n () => Fetchers.getPaymentsCurrenciesCryptoRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/fiat/\n */\nexport function usePaymentsCurrenciesFiatRetrieve(client?: API): ReturnType<typeof useSWR<Currency>> {\n return useSWR<Currency>(\n 'cfg-payments-currencies-fiat',\n () => Fetchers.getPaymentsCurrenciesFiatRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/health/\n */\nexport function usePaymentsCurrenciesHealthRetrieve(client?: API): ReturnType<typeof useSWR<Currency>> {\n return useSWR<Currency>(\n 'cfg-payments-currencies-health',\n () => Fetchers.getPaymentsCurrenciesHealthRetrieve(client)\n )\n}\n\n\n/**\n * Get exchange rates\n *\n * @method GET\n * @path /cfg/payments/currencies/rates/\n */\nexport function usePaymentsCurrenciesRatesRetrieve(params: { base_currency: string; currencies: string }, client?: API): ReturnType<typeof useSWR<Currency>> {\n return useSWR<Currency>(\n params ? ['cfg-payments-currencies-rate', params] : 'cfg-payments-currencies-rate',\n () => Fetchers.getPaymentsCurrenciesRatesRetrieve(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/stable/\n */\nexport function usePaymentsCurrenciesStableRetrieve(client?: API): ReturnType<typeof useSWR<Currency>> {\n return useSWR<Currency>(\n 'cfg-payments-currencies-stable',\n () => Fetchers.getPaymentsCurrenciesStableRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/currencies/stats/\n */\nexport function usePaymentsCurrenciesStatsRetrieve(client?: API): ReturnType<typeof useSWR<Currency>> {\n return useSWR<Currency>(\n 'cfg-payments-currencies-stat',\n () => Fetchers.getPaymentsCurrenciesStatsRetrieve(client)\n )\n}\n\n\n/**\n * Get supported currencies\n *\n * @method GET\n * @path /cfg/payments/currencies/supported/\n */\nexport function usePaymentsCurrenciesSupportedRetrieve(params?: { currency_type?: string; provider?: string }, client?: API): ReturnType<typeof useSWR<Currency>> {\n return useSWR<Currency>(\n params ? ['cfg-payments-currencies-supported', params] : 'cfg-payments-currencies-supported',\n () => Fetchers.getPaymentsCurrenciesSupportedRetrieve(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/endpoint-groups/\n */\nexport function usePaymentsEndpointGroupsList(params?: { is_enabled?: boolean; ordering?: string; page?: number; page_size?: number; search?: string }, client?: API): ReturnType<typeof useSWR<PaginatedEndpointGroupList>> {\n return useSWR<PaginatedEndpointGroupList>(\n params ? ['cfg-payments-endpoint-groups', params] : 'cfg-payments-endpoint-groups',\n () => Fetchers.getPaymentsEndpointGroupsList(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/endpoint-groups/{id}/\n */\nexport function usePaymentsEndpointGroupsRetrieve(id: number, client?: API): ReturnType<typeof useSWR<EndpointGroup>> {\n return useSWR<EndpointGroup>(\n ['cfg-payments-endpoint-group', id],\n () => Fetchers.getPaymentsEndpointGroupsRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/endpoint-groups/available/\n */\nexport function usePaymentsEndpointGroupsAvailableRetrieve(client?: API): ReturnType<typeof useSWR<EndpointGroup>> {\n return useSWR<EndpointGroup>(\n 'cfg-payments-endpoint-groups-available',\n () => Fetchers.getPaymentsEndpointGroupsAvailableRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/endpoint-groups/health/\n */\nexport function usePaymentsEndpointGroupsHealthRetrieve(client?: API): ReturnType<typeof useSWR<EndpointGroup>> {\n return useSWR<EndpointGroup>(\n 'cfg-payments-endpoint-groups-health',\n () => Fetchers.getPaymentsEndpointGroupsHealthRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/endpoint-groups/stats/\n */\nexport function usePaymentsEndpointGroupsStatsRetrieve(client?: API): ReturnType<typeof useSWR<EndpointGroup>> {\n return useSWR<EndpointGroup>(\n 'cfg-payments-endpoint-groups-stat',\n () => Fetchers.getPaymentsEndpointGroupsStatsRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/health/\n */\nexport function usePaymentsHealthRetrieve(client?: API): ReturnType<typeof useSWR<Payment>> {\n return useSWR<Payment>(\n 'cfg-payments-health',\n () => Fetchers.getPaymentsHealthRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/networks/\n */\nexport function usePaymentsNetworksList(params?: { is_active?: boolean; native_currency__code?: string; ordering?: string; page?: number; page_size?: number; search?: string }, client?: API): ReturnType<typeof useSWR<PaginatedNetworkList>> {\n return useSWR<PaginatedNetworkList>(\n params ? ['cfg-payments-networks', params] : 'cfg-payments-networks',\n () => Fetchers.getPaymentsNetworksList(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/networks/{id}/\n */\nexport function usePaymentsNetworksRetrieve(id: number, client?: API): ReturnType<typeof useSWR<Network>> {\n return useSWR<Network>(\n ['cfg-payments-network', id],\n () => Fetchers.getPaymentsNetworksRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/networks/by_currency/\n */\nexport function usePaymentsNetworksByCurrencyRetrieve(client?: API): ReturnType<typeof useSWR<Network>> {\n return useSWR<Network>(\n 'cfg-payments-networks-by-currency',\n () => Fetchers.getPaymentsNetworksByCurrencyRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/networks/health/\n */\nexport function usePaymentsNetworksHealthRetrieve(client?: API): ReturnType<typeof useSWR<Network>> {\n return useSWR<Network>(\n 'cfg-payments-networks-health',\n () => Fetchers.getPaymentsNetworksHealthRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/networks/stats/\n */\nexport function usePaymentsNetworksStatsRetrieve(client?: API): ReturnType<typeof useSWR<Network>> {\n return useSWR<Network>(\n 'cfg-payments-networks-stat',\n () => Fetchers.getPaymentsNetworksStatsRetrieve(client)\n )\n}\n\n\n/**\n * API Keys Overview\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/api_keys_overview/\n */\nexport function usePaymentsOverviewDashboardApiKeysOverviewRetrieve(client?: API): ReturnType<typeof useSWR<APIKeysOverview>> {\n return useSWR<APIKeysOverview>(\n 'cfg-payments-overview-dashboard-api-keys-overview',\n () => Fetchers.getPaymentsOverviewDashboardApiKeysOverviewRetrieve(client)\n )\n}\n\n\n/**\n * Balance Overview\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/balance_overview/\n */\nexport function usePaymentsOverviewDashboardBalanceOverviewRetrieve(client?: API): ReturnType<typeof useSWR<BalanceOverview>> {\n return useSWR<BalanceOverview>(\n 'cfg-payments-overview-dashboard-balance-overview',\n () => Fetchers.getPaymentsOverviewDashboardBalanceOverviewRetrieve(client)\n )\n}\n\n\n/**\n * Payments Chart Data\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/chart_data/\n */\nexport function usePaymentsOverviewDashboardChartDataRetrieve(params?: { period?: string }, client?: API): ReturnType<typeof useSWR<PaymentsChartResponse>> {\n return useSWR<PaymentsChartResponse>(\n params ? ['cfg-payments-overview-dashboard-chart-data', params] : 'cfg-payments-overview-dashboard-chart-data',\n () => Fetchers.getPaymentsOverviewDashboardChartDataRetrieve(params, client)\n )\n}\n\n\n/**\n * Payments Dashboard Metrics\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/metrics/\n */\nexport function usePaymentsOverviewDashboardMetricsRetrieve(client?: API): ReturnType<typeof useSWR<PaymentsMetrics>> {\n return useSWR<PaymentsMetrics>(\n 'cfg-payments-overview-dashboard-metric',\n () => Fetchers.getPaymentsOverviewDashboardMetricsRetrieve(client)\n )\n}\n\n\n/**\n * Payments Dashboard Overview\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/overview/\n */\nexport function usePaymentsOverviewDashboardOverviewRetrieve(client?: API): ReturnType<typeof useSWR<PaymentsDashboardOverview>> {\n return useSWR<PaymentsDashboardOverview>(\n 'cfg-payments-overview-dashboard-overview',\n () => Fetchers.getPaymentsOverviewDashboardOverviewRetrieve(client)\n )\n}\n\n\n/**\n * Payment Analytics\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/payment_analytics/\n */\nexport function usePaymentsOverviewDashboardPaymentAnalyticsRetrieve(params?: { limit?: number }, client?: API): ReturnType<typeof useSWR<PaymentAnalyticsResponse>> {\n return useSWR<PaymentAnalyticsResponse>(\n params ? ['cfg-payments-overview-dashboard-payment-analytic', params] : 'cfg-payments-overview-dashboard-payment-analytic',\n () => Fetchers.getPaymentsOverviewDashboardPaymentAnalyticsRetrieve(params, client)\n )\n}\n\n\n/**\n * Recent Payments\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/recent_payments/\n */\nexport function usePaymentsOverviewDashboardRecentPaymentsList(params?: { limit?: number; page?: number; page_size?: number }, client?: API): ReturnType<typeof useSWR<PaginatedRecentPaymentList>> {\n return useSWR<PaginatedRecentPaymentList>(\n params ? ['cfg-payments-overview-dashboard-recent-payments', params] : 'cfg-payments-overview-dashboard-recent-payments',\n () => Fetchers.getPaymentsOverviewDashboardRecentPaymentsList(params, client)\n )\n}\n\n\n/**\n * Recent Transactions\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/recent_transactions/\n */\nexport function usePaymentsOverviewDashboardRecentTransactionsList(params?: { limit?: number; page?: number; page_size?: number }, client?: API): ReturnType<typeof useSWR<PaginatedRecentTransactionList>> {\n return useSWR<PaginatedRecentTransactionList>(\n params ? ['cfg-payments-overview-dashboard-recent-transactions', params] : 'cfg-payments-overview-dashboard-recent-transactions',\n () => Fetchers.getPaymentsOverviewDashboardRecentTransactionsList(params, client)\n )\n}\n\n\n/**\n * Subscription Overview\n *\n * @method GET\n * @path /cfg/payments/overview/dashboard/subscription_overview/\n */\nexport function usePaymentsOverviewDashboardSubscriptionOverviewRetrieve(client?: API): ReturnType<typeof useSWR<SubscriptionOverview>> {\n return useSWR<SubscriptionOverview>(\n 'cfg-payments-overview-dashboard-subscription-overview',\n () => Fetchers.getPaymentsOverviewDashboardSubscriptionOverviewRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/payment/\n */\nexport function usePaymentsPaymentList(params?: { currency__code?: string; ordering?: string; page?: number; page_size?: number; provider?: string; search?: string; status?: string; user?: number }, client?: API): ReturnType<typeof useSWR<PaginatedPaymentListList>> {\n return useSWR<PaginatedPaymentListList>(\n params ? ['cfg-payments-payment', params] : 'cfg-payments-payment',\n () => Fetchers.getPaymentsPaymentList(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/payment/\n */\nexport function useCreatePaymentsPaymentCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: PaymentCreateRequest, client?: API): Promise<PaymentCreate> => {\n const result = await Fetchers.createPaymentsPaymentCreate(data, client)\n // Revalidate related queries\n mutate('cfg-payments-payment')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/payment/{id}/\n */\nexport function usePaymentsPaymentRetrieve(id: string, client?: API): ReturnType<typeof useSWR<Payment>> {\n return useSWR<Payment>(\n ['cfg-payments-payment', id],\n () => Fetchers.getPaymentsPaymentRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/payments/payment/{id}/\n */\nexport function useUpdatePaymentsPaymentUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, data: PaymentRequest, client?: API): Promise<Payment> => {\n const result = await Fetchers.updatePaymentsPaymentUpdate(id, data, client)\n // Revalidate related queries\n mutate('cfg-payments-payment')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/payments/payment/{id}/\n */\nexport function usePartialUpdatePaymentsPaymentPartialUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, data?: PatchedPaymentRequest, client?: API): Promise<Payment> => {\n const result = await Fetchers.partialUpdatePaymentsPaymentPartialUpdate(id, data, client)\n // Revalidate related queries\n mutate('cfg-payments-payment-partial')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/payments/payment/{id}/\n */\nexport function useDeletePaymentsPaymentDestroy() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, client?: API): Promise<void> => {\n const result = await Fetchers.deletePaymentsPaymentDestroy(id, client)\n // Revalidate related queries\n mutate('cfg-payments-payment')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/payment/{id}/cancel/\n */\nexport function useCreatePaymentsPaymentCancelCreate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, data: PaymentRequest, client?: API): Promise<Payment> => {\n const result = await Fetchers.createPaymentsPaymentCancelCreate(id, data, client)\n // Revalidate related queries\n mutate('cfg-payments-payment-cancel')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/payment/{id}/check_status/\n */\nexport function useCreatePaymentsPaymentCheckStatusCreate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, data: PaymentRequest, client?: API): Promise<Payment> => {\n const result = await Fetchers.createPaymentsPaymentCheckStatusCreate(id, data, client)\n // Revalidate related queries\n mutate('cfg-payments-payment-check-status')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/payment/analytics/\n */\nexport function usePaymentsPaymentAnalyticsRetrieve(client?: API): ReturnType<typeof useSWR<Payment>> {\n return useSWR<Payment>(\n 'cfg-payments-payment-analytic',\n () => Fetchers.getPaymentsPaymentAnalyticsRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/payment/by_provider/\n */\nexport function usePaymentsPaymentByProviderRetrieve(client?: API): ReturnType<typeof useSWR<Payment>> {\n return useSWR<Payment>(\n 'cfg-payments-payment-by-provider',\n () => Fetchers.getPaymentsPaymentByProviderRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/payment/create/\n */\nexport function useCreatePaymentsPaymentCreateCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: PaymentCreateRequest, client?: API): Promise<PaymentCreate> => {\n const result = await Fetchers.createPaymentsPaymentCreateCreate(data, client)\n // Revalidate related queries\n mutate('cfg-payments-payment')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/payment/health/\n */\nexport function usePaymentsPaymentHealthRetrieve(client?: API): ReturnType<typeof useSWR<Payment>> {\n return useSWR<Payment>(\n 'cfg-payments-payment-health',\n () => Fetchers.getPaymentsPaymentHealthRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/payment/stats/\n */\nexport function usePaymentsPaymentStatsRetrieve(client?: API): ReturnType<typeof useSWR<Payment>> {\n return useSWR<Payment>(\n 'cfg-payments-payment-stat',\n () => Fetchers.getPaymentsPaymentStatsRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/payment/status/{id}/\n */\nexport function usePaymentsPaymentStatusRetrieve(id: string, client?: API): ReturnType<typeof useSWR<Payment>> {\n return useSWR<Payment>(\n ['cfg-payments-payment-statu', id],\n () => Fetchers.getPaymentsPaymentStatusRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/provider-currencies/\n */\nexport function usePaymentsProviderCurrenciesList(params?: { currency__code?: string; is_enabled?: boolean; network__code?: string; ordering?: string; page?: number; page_size?: number; provider?: string; search?: string }, client?: API): ReturnType<typeof useSWR<PaginatedProviderCurrencyList>> {\n return useSWR<PaginatedProviderCurrencyList>(\n params ? ['cfg-payments-provider-currencies', params] : 'cfg-payments-provider-currencies',\n () => Fetchers.getPaymentsProviderCurrenciesList(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/provider-currencies/{id}/\n */\nexport function usePaymentsProviderCurrenciesRetrieve(id: number, client?: API): ReturnType<typeof useSWR<ProviderCurrency>> {\n return useSWR<ProviderCurrency>(\n ['cfg-payments-provider-currencie', id],\n () => Fetchers.getPaymentsProviderCurrenciesRetrieve(id, client)\n )\n}\n\n\n/**\n * Get provider currencies grouped by provider\n *\n * @method GET\n * @path /cfg/payments/provider-currencies/by_provider/\n */\nexport function usePaymentsProviderCurrenciesByProviderRetrieve(params?: { provider?: string }, client?: API): ReturnType<typeof useSWR<ProviderCurrency>> {\n return useSWR<ProviderCurrency>(\n params ? ['cfg-payments-provider-currencies-by-provider', params] : 'cfg-payments-provider-currencies-by-provider',\n () => Fetchers.getPaymentsProviderCurrenciesByProviderRetrieve(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/provider-currencies/health/\n */\nexport function usePaymentsProviderCurrenciesHealthRetrieve(client?: API): ReturnType<typeof useSWR<ProviderCurrency>> {\n return useSWR<ProviderCurrency>(\n 'cfg-payments-provider-currencies-health',\n () => Fetchers.getPaymentsProviderCurrenciesHealthRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/provider-currencies/limits/\n */\nexport function usePaymentsProviderCurrenciesLimitsRetrieve(client?: API): ReturnType<typeof useSWR<ProviderCurrency>> {\n return useSWR<ProviderCurrency>(\n 'cfg-payments-provider-currencies-limit',\n () => Fetchers.getPaymentsProviderCurrenciesLimitsRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/provider-currencies/stats/\n */\nexport function usePaymentsProviderCurrenciesStatsRetrieve(client?: API): ReturnType<typeof useSWR<ProviderCurrency>> {\n return useSWR<ProviderCurrency>(\n 'cfg-payments-provider-currencies-stat',\n () => Fetchers.getPaymentsProviderCurrenciesStatsRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/subscriptions/\n */\nexport function usePaymentsSubscriptionsList(params?: { ordering?: string; page?: number; page_size?: number; search?: string; status?: string; tier?: string; user?: number }, client?: API): ReturnType<typeof useSWR<PaginatedSubscriptionListList>> {\n return useSWR<PaginatedSubscriptionListList>(\n params ? ['cfg-payments-subscriptions', params] : 'cfg-payments-subscriptions',\n () => Fetchers.getPaymentsSubscriptionsList(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/subscriptions/\n */\nexport function useCreatePaymentsSubscriptionsCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: SubscriptionCreateRequest, client?: API): Promise<SubscriptionCreate> => {\n const result = await Fetchers.createPaymentsSubscriptionsCreate(data, client)\n // Revalidate related queries\n mutate('cfg-payments-subscriptions')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/subscriptions/{id}/\n */\nexport function usePaymentsSubscriptionsRetrieve(id: string, client?: API): ReturnType<typeof useSWR<Subscription>> {\n return useSWR<Subscription>(\n ['cfg-payments-subscription', id],\n () => Fetchers.getPaymentsSubscriptionsRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/payments/subscriptions/{id}/\n */\nexport function useUpdatePaymentsSubscriptionsUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, data: SubscriptionRequest, client?: API): Promise<Subscription> => {\n const result = await Fetchers.updatePaymentsSubscriptionsUpdate(id, data, client)\n // Revalidate related queries\n mutate('cfg-payments-subscriptions')\n mutate('cfg-payments-subscription')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/payments/subscriptions/{id}/\n */\nexport function usePartialUpdatePaymentsSubscriptionsPartialUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, data?: PatchedSubscriptionRequest, client?: API): Promise<Subscription> => {\n const result = await Fetchers.partialUpdatePaymentsSubscriptionsPartialUpdate(id, data, client)\n // Revalidate related queries\n mutate('cfg-payments-subscriptions-partial')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/payments/subscriptions/{id}/\n */\nexport function useDeletePaymentsSubscriptionsDestroy() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, client?: API): Promise<void> => {\n const result = await Fetchers.deletePaymentsSubscriptionsDestroy(id, client)\n // Revalidate related queries\n mutate('cfg-payments-subscriptions')\n mutate('cfg-payments-subscription')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/subscriptions/{id}/increment_usage/\n */\nexport function useCreatePaymentsSubscriptionsIncrementUsageCreate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, data: SubscriptionRequest, client?: API): Promise<Subscription> => {\n const result = await Fetchers.createPaymentsSubscriptionsIncrementUsageCreate(id, data, client)\n // Revalidate related queries\n mutate('cfg-payments-subscriptions-increment-usage')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/subscriptions/{id}/update_status/\n */\nexport function useCreatePaymentsSubscriptionsUpdateStatusCreate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, data: SubscriptionRequest, client?: API): Promise<Subscription> => {\n const result = await Fetchers.createPaymentsSubscriptionsUpdateStatusCreate(id, data, client)\n // Revalidate related queries\n mutate('cfg-payments-subscriptions-status')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/subscriptions/analytics/\n */\nexport function usePaymentsSubscriptionsAnalyticsRetrieve(client?: API): ReturnType<typeof useSWR<Subscription>> {\n return useSWR<Subscription>(\n 'cfg-payments-subscriptions-analytic',\n () => Fetchers.getPaymentsSubscriptionsAnalyticsRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/subscriptions/by_status/\n */\nexport function usePaymentsSubscriptionsByStatusRetrieve(client?: API): ReturnType<typeof useSWR<Subscription>> {\n return useSWR<Subscription>(\n 'cfg-payments-subscriptions-by-statu',\n () => Fetchers.getPaymentsSubscriptionsByStatusRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/subscriptions/by_tier/\n */\nexport function usePaymentsSubscriptionsByTierRetrieve(client?: API): ReturnType<typeof useSWR<Subscription>> {\n return useSWR<Subscription>(\n 'cfg-payments-subscriptions-by-tier',\n () => Fetchers.getPaymentsSubscriptionsByTierRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/subscriptions/health/\n */\nexport function usePaymentsSubscriptionsHealthRetrieve(client?: API): ReturnType<typeof useSWR<Subscription>> {\n return useSWR<Subscription>(\n 'cfg-payments-subscriptions-health',\n () => Fetchers.getPaymentsSubscriptionsHealthRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/subscriptions/stats/\n */\nexport function usePaymentsSubscriptionsStatsRetrieve(client?: API): ReturnType<typeof useSWR<Subscription>> {\n return useSWR<Subscription>(\n 'cfg-payments-subscriptions-stat',\n () => Fetchers.getPaymentsSubscriptionsStatsRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/tariffs/\n */\nexport function usePaymentsTariffsList(params?: { is_active?: boolean; ordering?: string; page?: number; page_size?: number; search?: string }, client?: API): ReturnType<typeof useSWR<PaginatedTariffList>> {\n return useSWR<PaginatedTariffList>(\n params ? ['cfg-payments-tariffs', params] : 'cfg-payments-tariffs',\n () => Fetchers.getPaymentsTariffsList(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/tariffs/{id}/\n */\nexport function usePaymentsTariffsRetrieve(id: number, client?: API): ReturnType<typeof useSWR<Tariff>> {\n return useSWR<Tariff>(\n ['cfg-payments-tariff', id],\n () => Fetchers.getPaymentsTariffsRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/tariffs/{id}/endpoint_groups/\n */\nexport function usePaymentsTariffsEndpointGroupsRetrieve(id: number, client?: API): ReturnType<typeof useSWR<Tariff>> {\n return useSWR<Tariff>(\n ['cfg-payments-tariffs-endpoint-group', id],\n () => Fetchers.getPaymentsTariffsEndpointGroupsRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/tariffs/free/\n */\nexport function usePaymentsTariffsFreeRetrieve(client?: API): ReturnType<typeof useSWR<Tariff>> {\n return useSWR<Tariff>(\n 'cfg-payments-tariffs-free',\n () => Fetchers.getPaymentsTariffsFreeRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/tariffs/health/\n */\nexport function usePaymentsTariffsHealthRetrieve(client?: API): ReturnType<typeof useSWR<Tariff>> {\n return useSWR<Tariff>(\n 'cfg-payments-tariffs-health',\n () => Fetchers.getPaymentsTariffsHealthRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/tariffs/paid/\n */\nexport function usePaymentsTariffsPaidRetrieve(client?: API): ReturnType<typeof useSWR<Tariff>> {\n return useSWR<Tariff>(\n 'cfg-payments-tariffs-paid',\n () => Fetchers.getPaymentsTariffsPaidRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/tariffs/stats/\n */\nexport function usePaymentsTariffsStatsRetrieve(client?: API): ReturnType<typeof useSWR<Tariff>> {\n return useSWR<Tariff>(\n 'cfg-payments-tariffs-stat',\n () => Fetchers.getPaymentsTariffsStatsRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/transactions/\n */\nexport function usePaymentsTransactionsList(params?: { ordering?: string; page?: number; page_size?: number; payment_id?: string; search?: string; transaction_type?: string; user?: number }, client?: API): ReturnType<typeof useSWR<PaginatedTransactionList>> {\n return useSWR<PaginatedTransactionList>(\n params ? ['cfg-payments-transactions', params] : 'cfg-payments-transactions',\n () => Fetchers.getPaymentsTransactionsList(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/transactions/{id}/\n */\nexport function usePaymentsTransactionsRetrieve(id: string, client?: API): ReturnType<typeof useSWR<Transaction>> {\n return useSWR<Transaction>(\n ['cfg-payments-transaction', id],\n () => Fetchers.getPaymentsTransactionsRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/transactions/by_type/\n */\nexport function usePaymentsTransactionsByTypeRetrieve(client?: API): ReturnType<typeof useSWR<Transaction>> {\n return useSWR<Transaction>(\n 'cfg-payments-transactions-by-type',\n () => Fetchers.getPaymentsTransactionsByTypeRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/transactions/health/\n */\nexport function usePaymentsTransactionsHealthRetrieve(client?: API): ReturnType<typeof useSWR<Transaction>> {\n return useSWR<Transaction>(\n 'cfg-payments-transactions-health',\n () => Fetchers.getPaymentsTransactionsHealthRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/transactions/recent/\n */\nexport function usePaymentsTransactionsRecentRetrieve(client?: API): ReturnType<typeof useSWR<Transaction>> {\n return useSWR<Transaction>(\n 'cfg-payments-transactions-recent',\n () => Fetchers.getPaymentsTransactionsRecentRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/transactions/stats/\n */\nexport function usePaymentsTransactionsStatsRetrieve(client?: API): ReturnType<typeof useSWR<Transaction>> {\n return useSWR<Transaction>(\n 'cfg-payments-transactions-stat',\n () => Fetchers.getPaymentsTransactionsStatsRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/\n */\nexport function usePaymentsUsersList(params?: { currency__code?: string; ordering?: string; page?: number; page_size?: number; provider?: string; search?: string; status?: string }, client?: API): ReturnType<typeof useSWR<PaginatedPaymentListList>> {\n return useSWR<PaginatedPaymentListList>(\n params ? ['cfg-payments-users', params] : 'cfg-payments-users',\n () => Fetchers.getPaymentsUsersList(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/\n */\nexport function useCreatePaymentsUsersCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: PaymentCreateRequest, client?: API): Promise<PaymentCreate> => {\n const result = await Fetchers.createPaymentsUsersCreate(data, client)\n // Revalidate related queries\n mutate('cfg-payments-users')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{id}/\n */\nexport function usePaymentsUsersRetrieve(id: string, client?: API): ReturnType<typeof useSWR<Payment>> {\n return useSWR<Payment>(\n ['cfg-payments-user', id],\n () => Fetchers.getPaymentsUsersRetrieve(id, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/payments/users/{id}/\n */\nexport function useUpdatePaymentsUsersUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, data: PaymentRequest, client?: API): Promise<Payment> => {\n const result = await Fetchers.updatePaymentsUsersUpdate(id, data, client)\n // Revalidate related queries\n mutate('cfg-payments-users')\n mutate('cfg-payments-user')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/payments/users/{id}/\n */\nexport function usePartialUpdatePaymentsUsersPartialUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, data?: PatchedPaymentRequest, client?: API): Promise<Payment> => {\n const result = await Fetchers.partialUpdatePaymentsUsersPartialUpdate(id, data, client)\n // Revalidate related queries\n mutate('cfg-payments-users-partial')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/payments/users/{id}/\n */\nexport function useDeletePaymentsUsersDestroy() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, client?: API): Promise<void> => {\n const result = await Fetchers.deletePaymentsUsersDestroy(id, client)\n // Revalidate related queries\n mutate('cfg-payments-users')\n mutate('cfg-payments-user')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{id}/cancel/\n */\nexport function useCreatePaymentsUsersCancelCreate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, data: PaymentRequest, client?: API): Promise<Payment> => {\n const result = await Fetchers.createPaymentsUsersCancelCreate(id, data, client)\n // Revalidate related queries\n mutate('cfg-payments-users-cancel')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{id}/check_status/\n */\nexport function useCreatePaymentsUsersCheckStatusCreate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, data: PaymentRequest, client?: API): Promise<Payment> => {\n const result = await Fetchers.createPaymentsUsersCheckStatusCreate(id, data, client)\n // Revalidate related queries\n mutate('cfg-payments-users-check-status')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/api-keys/\n */\nexport function usePaymentsUsersApiKeysList(user_pk: number, params?: { is_active?: boolean; ordering?: string; page?: number; page_size?: number; search?: string }, client?: API): ReturnType<typeof useSWR<PaginatedAPIKeyListList>> {\n return useSWR<PaginatedAPIKeyListList>(\n ['cfg-payments-users-api-keys', user_pk],\n () => Fetchers.getPaymentsUsersApiKeysList(user_pk, params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{user_pk}/api-keys/\n */\nexport function useCreatePaymentsUsersApiKeysCreate() {\n const { mutate } = useSWRConfig()\n\n return async (user_pk: number, data: APIKeyCreateRequest, client?: API): Promise<APIKeyCreate> => {\n const result = await Fetchers.createPaymentsUsersApiKeysCreate(user_pk, data, client)\n // Revalidate related queries\n mutate('cfg-payments-users-api-keys')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/api-keys/{id}/\n */\nexport function usePaymentsUsersApiKeysRetrieve(id: string, user_pk: number, client?: API): ReturnType<typeof useSWR<APIKeyDetail>> {\n return useSWR<APIKeyDetail>(\n ['cfg-payments-users-api-key', id],\n () => Fetchers.getPaymentsUsersApiKeysRetrieve(id, user_pk, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/payments/users/{user_pk}/api-keys/{id}/\n */\nexport function useUpdatePaymentsUsersApiKeysUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, user_pk: number, data: APIKeyUpdateRequest, client?: API): Promise<APIKeyUpdate> => {\n const result = await Fetchers.updatePaymentsUsersApiKeysUpdate(id, user_pk, data, client)\n // Revalidate related queries\n mutate('cfg-payments-users-api-keys')\n mutate('cfg-payments-users-api-key')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/payments/users/{user_pk}/api-keys/{id}/\n */\nexport function usePartialUpdatePaymentsUsersApiKeysPartialUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, user_pk: number, data?: PatchedAPIKeyUpdateRequest, client?: API): Promise<APIKeyUpdate> => {\n const result = await Fetchers.partialUpdatePaymentsUsersApiKeysPartialUpdate(id, user_pk, data, client)\n // Revalidate related queries\n mutate('cfg-payments-users-api-keys-partial')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/payments/users/{user_pk}/api-keys/{id}/\n */\nexport function useDeletePaymentsUsersApiKeysDestroy() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, user_pk: number, client?: API): Promise<void> => {\n const result = await Fetchers.deletePaymentsUsersApiKeysDestroy(id, user_pk, client)\n // Revalidate related queries\n mutate('cfg-payments-users-api-keys')\n mutate('cfg-payments-users-api-key')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{user_pk}/api-keys/{id}/perform_action/\n */\nexport function useCreatePaymentsUsersApiKeysPerformActionCreate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, user_pk: number, client?: API): Promise<APIKeyDetail> => {\n const result = await Fetchers.createPaymentsUsersApiKeysPerformActionCreate(id, user_pk, client)\n // Revalidate related queries\n mutate('cfg-payments-users-api-keys-perform-action')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/api-keys/active/\n */\nexport function usePaymentsUsersApiKeysActiveRetrieve(user_pk: number, client?: API): ReturnType<typeof useSWR<APIKeyDetail>> {\n return useSWR<APIKeyDetail>(\n ['cfg-payments-users-api-keys-active', user_pk],\n () => Fetchers.getPaymentsUsersApiKeysActiveRetrieve(user_pk, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/api-keys/health/\n */\nexport function usePaymentsUsersApiKeysHealthRetrieve(user_pk: number, client?: API): ReturnType<typeof useSWR<APIKeyDetail>> {\n return useSWR<APIKeyDetail>(\n ['cfg-payments-users-api-keys-health', user_pk],\n () => Fetchers.getPaymentsUsersApiKeysHealthRetrieve(user_pk, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/api-keys/stats/\n */\nexport function usePaymentsUsersApiKeysStatsRetrieve(user_pk: number, client?: API): ReturnType<typeof useSWR<APIKeyDetail>> {\n return useSWR<APIKeyDetail>(\n ['cfg-payments-users-api-keys-stat', user_pk],\n () => Fetchers.getPaymentsUsersApiKeysStatsRetrieve(user_pk, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/api-keys/summary/\n */\nexport function usePaymentsUsersApiKeysSummaryRetrieve(user_pk: number, client?: API): ReturnType<typeof useSWR<APIKeyDetail>> {\n return useSWR<APIKeyDetail>(\n ['cfg-payments-users-api-keys-summary', user_pk],\n () => Fetchers.getPaymentsUsersApiKeysSummaryRetrieve(user_pk, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/payment/\n */\nexport function usePaymentsUsersPaymentList(user_pk: number, params?: { currency__code?: string; ordering?: string; page?: number; page_size?: number; provider?: string; search?: string; status?: string }, client?: API): ReturnType<typeof useSWR<PaginatedPaymentListList>> {\n return useSWR<PaginatedPaymentListList>(\n ['cfg-payments-users-payment', user_pk],\n () => Fetchers.getPaymentsUsersPaymentList(user_pk, params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{user_pk}/payment/\n */\nexport function useCreatePaymentsUsersPaymentCreate() {\n const { mutate } = useSWRConfig()\n\n return async (user_pk: number, data: PaymentCreateRequest, client?: API): Promise<PaymentCreate> => {\n const result = await Fetchers.createPaymentsUsersPaymentCreate(user_pk, data, client)\n // Revalidate related queries\n mutate('cfg-payments-users-payment')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/payment/{id}/\n */\nexport function usePaymentsUsersPaymentRetrieve(id: string, user_pk: number, client?: API): ReturnType<typeof useSWR<Payment>> {\n return useSWR<Payment>(\n ['cfg-payments-users-payment', id],\n () => Fetchers.getPaymentsUsersPaymentRetrieve(id, user_pk, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/payments/users/{user_pk}/payment/{id}/\n */\nexport function useUpdatePaymentsUsersPaymentUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, user_pk: number, data: PaymentRequest, client?: API): Promise<Payment> => {\n const result = await Fetchers.updatePaymentsUsersPaymentUpdate(id, user_pk, data, client)\n // Revalidate related queries\n mutate('cfg-payments-users-payment')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/payments/users/{user_pk}/payment/{id}/\n */\nexport function usePartialUpdatePaymentsUsersPaymentPartialUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, user_pk: number, data?: PatchedPaymentRequest, client?: API): Promise<Payment> => {\n const result = await Fetchers.partialUpdatePaymentsUsersPaymentPartialUpdate(id, user_pk, data, client)\n // Revalidate related queries\n mutate('cfg-payments-users-payment-partial')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/payments/users/{user_pk}/payment/{id}/\n */\nexport function useDeletePaymentsUsersPaymentDestroy() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, user_pk: number, client?: API): Promise<void> => {\n const result = await Fetchers.deletePaymentsUsersPaymentDestroy(id, user_pk, client)\n // Revalidate related queries\n mutate('cfg-payments-users-payment')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{user_pk}/payment/{id}/cancel/\n */\nexport function useCreatePaymentsUsersPaymentCancelCreate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, user_pk: number, data: PaymentRequest, client?: API): Promise<Payment> => {\n const result = await Fetchers.createPaymentsUsersPaymentCancelCreate(id, user_pk, data, client)\n // Revalidate related queries\n mutate('cfg-payments-users-payment-cancel')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{user_pk}/payment/{id}/check_status/\n */\nexport function useCreatePaymentsUsersPaymentCheckStatusCreate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, user_pk: number, data: PaymentRequest, client?: API): Promise<Payment> => {\n const result = await Fetchers.createPaymentsUsersPaymentCheckStatusCreate(id, user_pk, data, client)\n // Revalidate related queries\n mutate('cfg-payments-users-payment-check-status')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/payment/health/\n */\nexport function usePaymentsUsersPaymentHealthRetrieve(user_pk: number, client?: API): ReturnType<typeof useSWR<Payment>> {\n return useSWR<Payment>(\n ['cfg-payments-users-payment-health', user_pk],\n () => Fetchers.getPaymentsUsersPaymentHealthRetrieve(user_pk, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/payment/stats/\n */\nexport function usePaymentsUsersPaymentStatsRetrieve(user_pk: number, client?: API): ReturnType<typeof useSWR<Payment>> {\n return useSWR<Payment>(\n ['cfg-payments-users-payment-stat', user_pk],\n () => Fetchers.getPaymentsUsersPaymentStatsRetrieve(user_pk, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/payment/summary/\n */\nexport function usePaymentsUsersPaymentSummaryRetrieve(user_pk: number, client?: API): ReturnType<typeof useSWR<Payment>> {\n return useSWR<Payment>(\n ['cfg-payments-users-payment-summary', user_pk],\n () => Fetchers.getPaymentsUsersPaymentSummaryRetrieve(user_pk, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/subscriptions/\n */\nexport function usePaymentsUsersSubscriptionsList(user_pk: number, params?: { ordering?: string; page?: number; page_size?: number; search?: string; status?: string; tier?: string }, client?: API): ReturnType<typeof useSWR<PaginatedSubscriptionListList>> {\n return useSWR<PaginatedSubscriptionListList>(\n ['cfg-payments-users-subscriptions', user_pk],\n () => Fetchers.getPaymentsUsersSubscriptionsList(user_pk, params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{user_pk}/subscriptions/\n */\nexport function useCreatePaymentsUsersSubscriptionsCreate() {\n const { mutate } = useSWRConfig()\n\n return async (user_pk: number, data: SubscriptionCreateRequest, client?: API): Promise<SubscriptionCreate> => {\n const result = await Fetchers.createPaymentsUsersSubscriptionsCreate(user_pk, data, client)\n // Revalidate related queries\n mutate('cfg-payments-users-subscriptions')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/subscriptions/{id}/\n */\nexport function usePaymentsUsersSubscriptionsRetrieve(id: string, user_pk: number, client?: API): ReturnType<typeof useSWR<Subscription>> {\n return useSWR<Subscription>(\n ['cfg-payments-users-subscription', id],\n () => Fetchers.getPaymentsUsersSubscriptionsRetrieve(id, user_pk, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/payments/users/{user_pk}/subscriptions/{id}/\n */\nexport function useUpdatePaymentsUsersSubscriptionsUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, user_pk: number, data: SubscriptionRequest, client?: API): Promise<Subscription> => {\n const result = await Fetchers.updatePaymentsUsersSubscriptionsUpdate(id, user_pk, data, client)\n // Revalidate related queries\n mutate('cfg-payments-users-subscriptions')\n mutate('cfg-payments-users-subscription')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/payments/users/{user_pk}/subscriptions/{id}/\n */\nexport function usePartialUpdatePaymentsUsersSubscriptionsPartialUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, user_pk: number, data?: PatchedSubscriptionRequest, client?: API): Promise<Subscription> => {\n const result = await Fetchers.partialUpdatePaymentsUsersSubscriptionsPartialUpdate(id, user_pk, data, client)\n // Revalidate related queries\n mutate('cfg-payments-users-subscriptions-partial')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/payments/users/{user_pk}/subscriptions/{id}/\n */\nexport function useDeletePaymentsUsersSubscriptionsDestroy() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, user_pk: number, client?: API): Promise<void> => {\n const result = await Fetchers.deletePaymentsUsersSubscriptionsDestroy(id, user_pk, client)\n // Revalidate related queries\n mutate('cfg-payments-users-subscriptions')\n mutate('cfg-payments-users-subscription')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{user_pk}/subscriptions/{id}/increment_usage/\n */\nexport function useCreatePaymentsUsersSubscriptionsIncrementUsageCreate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, user_pk: number, data: SubscriptionRequest, client?: API): Promise<Subscription> => {\n const result = await Fetchers.createPaymentsUsersSubscriptionsIncrementUsageCreate(id, user_pk, data, client)\n // Revalidate related queries\n mutate('cfg-payments-users-subscriptions-increment-usage')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/payments/users/{user_pk}/subscriptions/{id}/update_status/\n */\nexport function useCreatePaymentsUsersSubscriptionsUpdateStatusCreate() {\n const { mutate } = useSWRConfig()\n\n return async (id: string, user_pk: number, data: SubscriptionRequest, client?: API): Promise<Subscription> => {\n const result = await Fetchers.createPaymentsUsersSubscriptionsUpdateStatusCreate(id, user_pk, data, client)\n // Revalidate related queries\n mutate('cfg-payments-users-subscriptions-status')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/subscriptions/active/\n */\nexport function usePaymentsUsersSubscriptionsActiveRetrieve(user_pk: number, client?: API): ReturnType<typeof useSWR<Subscription>> {\n return useSWR<Subscription>(\n ['cfg-payments-users-subscriptions-active', user_pk],\n () => Fetchers.getPaymentsUsersSubscriptionsActiveRetrieve(user_pk, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/subscriptions/health/\n */\nexport function usePaymentsUsersSubscriptionsHealthRetrieve(user_pk: number, client?: API): ReturnType<typeof useSWR<Subscription>> {\n return useSWR<Subscription>(\n ['cfg-payments-users-subscriptions-health', user_pk],\n () => Fetchers.getPaymentsUsersSubscriptionsHealthRetrieve(user_pk, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/subscriptions/stats/\n */\nexport function usePaymentsUsersSubscriptionsStatsRetrieve(user_pk: number, client?: API): ReturnType<typeof useSWR<Subscription>> {\n return useSWR<Subscription>(\n ['cfg-payments-users-subscriptions-stat', user_pk],\n () => Fetchers.getPaymentsUsersSubscriptionsStatsRetrieve(user_pk, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/{user_pk}/subscriptions/summary/\n */\nexport function usePaymentsUsersSubscriptionsSummaryRetrieve(user_pk: number, client?: API): ReturnType<typeof useSWR<Subscription>> {\n return useSWR<Subscription>(\n ['cfg-payments-users-subscriptions-summary', user_pk],\n () => Fetchers.getPaymentsUsersSubscriptionsSummaryRetrieve(user_pk, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/health/\n */\nexport function usePaymentsUsersHealthRetrieve(client?: API): ReturnType<typeof useSWR<Payment>> {\n return useSWR<Payment>(\n 'cfg-payments-users-health',\n () => Fetchers.getPaymentsUsersHealthRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/stats/\n */\nexport function usePaymentsUsersStatsRetrieve(client?: API): ReturnType<typeof useSWR<Payment>> {\n return useSWR<Payment>(\n 'cfg-payments-users-stat',\n () => Fetchers.getPaymentsUsersStatsRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/payments/users/summary/\n */\nexport function usePaymentsUsersSummaryRetrieve(client?: API): ReturnType<typeof useSWR<Payment>> {\n return useSWR<Payment>(\n 'cfg-payments-users-summary',\n () => Fetchers.getPaymentsUsersSummaryRetrieve(client)\n )\n}\n\n\n","/**\n * SWR Hooks for Support\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__support'\nimport type { API } from '../../index'\nimport type { Message } from '../schemas/Message.schema'\nimport type { MessageCreate } from '../schemas/MessageCreate.schema'\nimport type { MessageCreateRequest } from '../schemas/MessageCreateRequest.schema'\nimport type { MessageRequest } from '../schemas/MessageRequest.schema'\nimport type { PaginatedMessageList } from '../schemas/PaginatedMessageList.schema'\nimport type { PaginatedTicketList } from '../schemas/PaginatedTicketList.schema'\nimport type { PatchedMessageRequest } from '../schemas/PatchedMessageRequest.schema'\nimport type { PatchedTicketRequest } from '../schemas/PatchedTicketRequest.schema'\nimport type { Ticket } from '../schemas/Ticket.schema'\nimport type { TicketRequest } from '../schemas/TicketRequest.schema'\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/support/tickets/\n */\nexport function useSupportTicketsList(params?: { page?: number; page_size?: number }, client?: API): ReturnType<typeof useSWR<PaginatedTicketList>> {\n return useSWR<PaginatedTicketList>(\n params ? ['cfg-support-tickets', params] : 'cfg-support-tickets',\n () => Fetchers.getSupportTicketsList(params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/support/tickets/\n */\nexport function useCreateSupportTicketsCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: TicketRequest, client?: API): Promise<Ticket> => {\n const result = await Fetchers.createSupportTicketsCreate(data, client)\n // Revalidate related queries\n mutate('cfg-support-tickets')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/support/tickets/{ticket_uuid}/messages/\n */\nexport function useSupportTicketsMessagesList(ticket_uuid: string, params?: { page?: number; page_size?: number }, client?: API): ReturnType<typeof useSWR<PaginatedMessageList>> {\n return useSWR<PaginatedMessageList>(\n ['cfg-support-tickets-messages', ticket_uuid],\n () => Fetchers.getSupportTicketsMessagesList(ticket_uuid, params, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/support/tickets/{ticket_uuid}/messages/\n */\nexport function useCreateSupportTicketsMessagesCreate() {\n const { mutate } = useSWRConfig()\n\n return async (ticket_uuid: string, data: MessageCreateRequest, client?: API): Promise<MessageCreate> => {\n const result = await Fetchers.createSupportTicketsMessagesCreate(ticket_uuid, data, client)\n // Revalidate related queries\n mutate('cfg-support-tickets-messages')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/support/tickets/{ticket_uuid}/messages/{uuid}/\n */\nexport function useSupportTicketsMessagesRetrieve(ticket_uuid: string, uuid: string, client?: API): ReturnType<typeof useSWR<Message>> {\n return useSWR<Message>(\n ['cfg-support-tickets-message', ticket_uuid],\n () => Fetchers.getSupportTicketsMessagesRetrieve(ticket_uuid, uuid, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/support/tickets/{ticket_uuid}/messages/{uuid}/\n */\nexport function useUpdateSupportTicketsMessagesUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (ticket_uuid: string, uuid: string, data: MessageRequest, client?: API): Promise<Message> => {\n const result = await Fetchers.updateSupportTicketsMessagesUpdate(ticket_uuid, uuid, data, client)\n // Revalidate related queries\n mutate('cfg-support-tickets-messages')\n mutate('cfg-support-tickets-message')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/support/tickets/{ticket_uuid}/messages/{uuid}/\n */\nexport function usePartialUpdateSupportTicketsMessagesPartialUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (ticket_uuid: string, uuid: string, data?: PatchedMessageRequest, client?: API): Promise<Message> => {\n const result = await Fetchers.partialUpdateSupportTicketsMessagesPartialUpdate(ticket_uuid, uuid, data, client)\n // Revalidate related queries\n mutate('cfg-support-tickets-messages-partial')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/support/tickets/{ticket_uuid}/messages/{uuid}/\n */\nexport function useDeleteSupportTicketsMessagesDestroy() {\n const { mutate } = useSWRConfig()\n\n return async (ticket_uuid: string, uuid: string, client?: API): Promise<void> => {\n const result = await Fetchers.deleteSupportTicketsMessagesDestroy(ticket_uuid, uuid, client)\n // Revalidate related queries\n mutate('cfg-support-tickets-messages')\n mutate('cfg-support-tickets-message')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/support/tickets/{uuid}/\n */\nexport function useSupportTicketsRetrieve(uuid: string, client?: API): ReturnType<typeof useSWR<Ticket>> {\n return useSWR<Ticket>(\n ['cfg-support-ticket', uuid],\n () => Fetchers.getSupportTicketsRetrieve(uuid, client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method PUT\n * @path /cfg/support/tickets/{uuid}/\n */\nexport function useUpdateSupportTicketsUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (uuid: string, data: TicketRequest, client?: API): Promise<Ticket> => {\n const result = await Fetchers.updateSupportTicketsUpdate(uuid, data, client)\n // Revalidate related queries\n mutate('cfg-support-tickets')\n mutate('cfg-support-ticket')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method PATCH\n * @path /cfg/support/tickets/{uuid}/\n */\nexport function usePartialUpdateSupportTicketsPartialUpdate() {\n const { mutate } = useSWRConfig()\n\n return async (uuid: string, data?: PatchedTicketRequest, client?: API): Promise<Ticket> => {\n const result = await Fetchers.partialUpdateSupportTicketsPartialUpdate(uuid, data, client)\n // Revalidate related queries\n mutate('cfg-support-tickets-partial')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method DELETE\n * @path /cfg/support/tickets/{uuid}/\n */\nexport function useDeleteSupportTicketsDestroy() {\n const { mutate } = useSWRConfig()\n\n return async (uuid: string, client?: API): Promise<void> => {\n const result = await Fetchers.deleteSupportTicketsDestroy(uuid, client)\n // Revalidate related queries\n mutate('cfg-support-tickets')\n mutate('cfg-support-ticket')\n return result\n }\n}\n\n\n","/**\n * SWR Hooks for Tasks\n *\n * React hooks powered by SWR for data fetching with automatic caching,\n * revalidation, and optimistic updates.\n *\n * Usage:\n * ```typescript\n * // Query hooks (GET)\n * const { data, error, isLoading } = useUsers({ page: 1 })\n *\n * // Mutation hooks (POST/PUT/PATCH/DELETE)\n * const createUser = useCreateUser()\n * await createUser({ name: 'John', email: 'john@example.com' })\n * ```\n */\nimport useSWR from 'swr'\nimport { useSWRConfig } from 'swr'\nimport * as Fetchers from '../fetchers/cfg__tasks'\nimport type { API } from '../../index'\nimport type { APIResponse } from '../schemas/APIResponse.schema'\nimport type { APIResponseRequest } from '../schemas/APIResponseRequest.schema'\nimport type { QueueAction } from '../schemas/QueueAction.schema'\nimport type { QueueActionRequest } from '../schemas/QueueActionRequest.schema'\nimport type { QueueStatus } from '../schemas/QueueStatus.schema'\nimport type { TaskStatistics } from '../schemas/TaskStatistics.schema'\nimport type { WorkerAction } from '../schemas/WorkerAction.schema'\nimport type { WorkerActionRequest } from '../schemas/WorkerActionRequest.schema'\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/tasks/api/clear/\n */\nexport function useCreateTasksApiClearCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: APIResponseRequest, client?: API): Promise<APIResponse> => {\n const result = await Fetchers.createTasksApiClearCreate(data, client)\n // Revalidate related queries\n mutate('cfg-tasks-api-clear')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/tasks/api/clear-queues/\n */\nexport function useCreateTasksApiClearQueuesCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: APIResponseRequest, client?: API): Promise<APIResponse> => {\n const result = await Fetchers.createTasksApiClearQueuesCreate(data, client)\n // Revalidate related queries\n mutate('cfg-tasks-api-clear-queues')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/tasks/api/purge-failed/\n */\nexport function useCreateTasksApiPurgeFailedCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: APIResponseRequest, client?: API): Promise<APIResponse> => {\n const result = await Fetchers.createTasksApiPurgeFailedCreate(data, client)\n // Revalidate related queries\n mutate('cfg-tasks-api-purge-failed')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/tasks/api/queues/manage/\n */\nexport function useCreateTasksApiQueuesManageCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: QueueActionRequest, client?: API): Promise<QueueAction> => {\n const result = await Fetchers.createTasksApiQueuesManageCreate(data, client)\n // Revalidate related queries\n mutate('cfg-tasks-api-queues-manage')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/tasks/api/queues/status/\n */\nexport function useTasksApiQueuesStatusRetrieve(client?: API): ReturnType<typeof useSWR<QueueStatus>> {\n return useSWR<QueueStatus>(\n 'cfg-tasks-api-queues-statu',\n () => Fetchers.getTasksApiQueuesStatusRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/tasks/api/simulate/\n */\nexport function useCreateTasksApiSimulateCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: APIResponseRequest, client?: API): Promise<APIResponse> => {\n const result = await Fetchers.createTasksApiSimulateCreate(data, client)\n // Revalidate related queries\n mutate('cfg-tasks-api-simulate')\n return result\n }\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/tasks/api/tasks/list/\n */\nexport function useTasksApiTasksListRetrieve(client?: API): ReturnType<typeof useSWR<APIResponse>> {\n return useSWR<APIResponse>(\n 'cfg-tasks-api-task',\n () => Fetchers.getTasksApiTasksListRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/tasks/api/tasks/stats/\n */\nexport function useTasksApiTasksStatsRetrieve(client?: API): ReturnType<typeof useSWR<TaskStatistics>> {\n return useSWR<TaskStatistics>(\n 'cfg-tasks-api-tasks-stat',\n () => Fetchers.getTasksApiTasksStatsRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method GET\n * @path /cfg/tasks/api/workers/list/\n */\nexport function useTasksApiWorkersListRetrieve(client?: API): ReturnType<typeof useSWR<APIResponse>> {\n return useSWR<APIResponse>(\n 'cfg-tasks-api-worker',\n () => Fetchers.getTasksApiWorkersListRetrieve(client)\n )\n}\n\n\n/**\n * API operation\n *\n * @method POST\n * @path /cfg/tasks/api/workers/manage/\n */\nexport function useCreateTasksApiWorkersManageCreate() {\n const { mutate } = useSWRConfig()\n\n return async (data: WorkerActionRequest, client?: API): Promise<WorkerAction> => {\n const result = await Fetchers.createTasksApiWorkersManageCreate(data, client)\n // Revalidate related queries\n mutate('cfg-tasks-api-workers-manage')\n return result\n }\n}\n\n\n","/**\n * Django CFG Sample API - API Client with JWT Management\n *\n * Usage:\n * ```typescript\n * import { API } from './api';\n *\n * const api = new API('https://api.example.com');\n *\n * // Set JWT token\n * api.setToken('your-jwt-token', 'refresh-token');\n *\n * // Use API\n * const posts = await api.posts.list();\n * const user = await api.users.retrieve(1);\n *\n * // Check authentication\n * if (api.isAuthenticated()) {\n * // ...\n * }\n *\n * // Custom storage with logging (for Electron/Node.js)\n * import { MemoryStorageAdapter, APILogger } from './storage';\n * const logger = new APILogger({ enabled: true, logLevel: 'debug' });\n * const api = new API('https://api.example.com', {\n * storage: new MemoryStorageAdapter(logger),\n * loggerConfig: { enabled: true, logLevel: 'debug' }\n * });\n *\n * // Get OpenAPI schema\n * const schema = api.getSchema();\n * ```\n */\n\nimport { APIClient } from \"./client\";\nimport { OPENAPI_SCHEMA } from \"./schema\";\nimport {\n StorageAdapter,\n LocalStorageAdapter,\n CookieStorageAdapter,\n MemoryStorageAdapter\n} from \"./storage\";\nimport type { RetryConfig } from \"./retry\";\nimport type { LoggerConfig } from \"./logger\";\nimport { APILogger } from \"./logger\";\nexport * as CfgAuthTypes from \"./cfg__accounts__auth/models\";\nexport * as CfgBulkEmailTypes from \"./cfg__newsletter__bulk_email/models\";\nexport * as CfgCampaignsTypes from \"./cfg__newsletter__campaigns/models\";\nexport * as CfgLeadSubmissionTypes from \"./cfg__leads__lead_submission/models\";\nexport * as CfgLogsTypes from \"./cfg__newsletter__logs/models\";\nexport * as CfgNewslettersTypes from \"./cfg__newsletter__newsletters/models\";\nexport * as CfgSubscriptionsTypes from \"./cfg__newsletter__subscriptions/models\";\nexport * as CfgTestingTypes from \"./cfg__newsletter__testing/models\";\nexport * as CfgUserProfileTypes from \"./cfg__accounts__user_profile/models\";\nexport * as CfgWebhooksTypes from \"./cfg__payments__webhooks/models\";\nexport * as CfgAccountsTypes from \"./cfg__accounts/models\";\nexport * as CfgEndpointsTypes from \"./cfg__endpoints/models\";\nexport * as CfgHealthTypes from \"./cfg__health/models\";\nexport * as CfgLeadsTypes from \"./cfg__leads/models\";\nexport * as CfgNewsletterTypes from \"./cfg__newsletter/models\";\nexport * as CfgPaymentsTypes from \"./cfg__payments/models\";\nexport * as CfgSupportTypes from \"./cfg__support/models\";\nexport * as CfgTasksTypes from \"./cfg__tasks/models\";\nexport * as Enums from \"./enums\";\n\n// Re-export Zod schemas for runtime validation\nexport * as Schemas from \"./_utils/schemas\";\n\n// Re-export typed fetchers for universal usage\nexport * as Fetchers from \"./_utils/fetchers\";\n\n// Re-export API instance configuration functions\nexport {\n configureAPI,\n getAPIInstance,\n reconfigureAPI,\n clearAPITokens,\n resetAPI,\n isAPIConfigured\n} from \"./api-instance\";\n\n// Re-export SWR hooks for React\nexport * as Hooks from \"./_utils/hooks\";\n\n// Re-export core client\nexport { APIClient };\n\n// Re-export OpenAPI schema\nexport { OPENAPI_SCHEMA };\n\n// Re-export storage adapters for convenience\nexport type { StorageAdapter };\nexport { LocalStorageAdapter, CookieStorageAdapter, MemoryStorageAdapter };\n\n// Re-export error classes for convenience\nexport { APIError, NetworkError } from \"./errors\";\n\n// Re-export HTTP adapters for custom implementations\nexport type { HttpClientAdapter, HttpRequest, HttpResponse } from \"./http\";\nexport { FetchAdapter } from \"./http\";\n\n// Re-export logger types and classes\nexport type { LoggerConfig, RequestLog, ResponseLog, ErrorLog } from \"./logger\";\nexport { APILogger } from \"./logger\";\n\n// Re-export retry configuration and utilities\nexport type { RetryConfig, FailedAttemptInfo } from \"./retry\";\nexport { withRetry, shouldRetry, DEFAULT_RETRY_CONFIG } from \"./retry\";\n\nexport const TOKEN_KEY = \"auth_token\";\nexport const REFRESH_TOKEN_KEY = \"refresh_token\";\n\nexport interface APIOptions {\n /** Custom storage adapter (defaults to LocalStorageAdapter) */\n storage?: StorageAdapter;\n /** Retry configuration for failed requests */\n retryConfig?: RetryConfig;\n /** Logger configuration */\n loggerConfig?: Partial<LoggerConfig>;\n}\n\nexport class API {\n private baseUrl: string;\n private _client!: APIClient;\n private _token: string | null = null;\n private _refreshToken: string | null = null;\n private storage: StorageAdapter;\n private options?: APIOptions;\n\n // Sub-clients\n public cfg_auth!: APIClient['cfg_auth'];\n public cfg_bulk_email!: APIClient['cfg_bulk_email'];\n public cfg_campaigns!: APIClient['cfg_campaigns'];\n public cfg_lead_submission!: APIClient['cfg_lead_submission'];\n public cfg_logs!: APIClient['cfg_logs'];\n public cfg_newsletters!: APIClient['cfg_newsletters'];\n public cfg_subscriptions!: APIClient['cfg_subscriptions'];\n public cfg_testing!: APIClient['cfg_testing'];\n public cfg_user_profile!: APIClient['cfg_user_profile'];\n public cfg_webhooks!: APIClient['cfg_webhooks'];\n public cfg_accounts!: APIClient['cfg_accounts'];\n public cfg_endpoints!: APIClient['cfg_endpoints'];\n public cfg_health!: APIClient['cfg_health'];\n public cfg_leads!: APIClient['cfg_leads'];\n public cfg_newsletter!: APIClient['cfg_newsletter'];\n public cfg_payments!: APIClient['cfg_payments'];\n public cfg_support!: APIClient['cfg_support'];\n public cfg_tasks!: APIClient['cfg_tasks'];\n\n constructor(baseUrl: string, options?: APIOptions) {\n this.baseUrl = baseUrl;\n this.options = options;\n\n // Create logger if config provided\n const logger = options?.loggerConfig ? new APILogger(options.loggerConfig) : undefined;\n\n // Initialize storage with logger\n this.storage = options?.storage || new LocalStorageAdapter(logger);\n\n this._loadTokensFromStorage();\n this._initClients();\n }\n\n private _loadTokensFromStorage(): void {\n this._token = this.storage.getItem(TOKEN_KEY);\n this._refreshToken = this.storage.getItem(REFRESH_TOKEN_KEY);\n }\n\n private _initClients(): void {\n this._client = new APIClient(this.baseUrl, {\n retryConfig: (this as any).options?.retryConfig,\n loggerConfig: (this as any).options?.loggerConfig,\n });\n\n // Inject Authorization header if token exists\n if (this._token) {\n this._injectAuthHeader();\n }\n\n // Proxy sub-clients\n this.cfg_auth = this._client.cfg_auth;\n this.cfg_bulk_email = this._client.cfg_bulk_email;\n this.cfg_campaigns = this._client.cfg_campaigns;\n this.cfg_lead_submission = this._client.cfg_lead_submission;\n this.cfg_logs = this._client.cfg_logs;\n this.cfg_newsletters = this._client.cfg_newsletters;\n this.cfg_subscriptions = this._client.cfg_subscriptions;\n this.cfg_testing = this._client.cfg_testing;\n this.cfg_user_profile = this._client.cfg_user_profile;\n this.cfg_webhooks = this._client.cfg_webhooks;\n this.cfg_accounts = this._client.cfg_accounts;\n this.cfg_endpoints = this._client.cfg_endpoints;\n this.cfg_health = this._client.cfg_health;\n this.cfg_leads = this._client.cfg_leads;\n this.cfg_newsletter = this._client.cfg_newsletter;\n this.cfg_payments = this._client.cfg_payments;\n this.cfg_support = this._client.cfg_support;\n this.cfg_tasks = this._client.cfg_tasks;\n }\n\n private _injectAuthHeader(): void {\n // Override request method to inject auth header\n const originalRequest = this._client.request.bind(this._client);\n this._client.request = async <T>(\n method: string,\n path: string,\n options?: { params?: Record<string, any>; body?: any; formData?: FormData; headers?: Record<string, string> }\n ): Promise<T> => {\n // Merge Authorization header with existing headers\n const mergedOptions = {\n ...options,\n headers: {\n ...(options?.headers || {}),\n ...(this._token ? { 'Authorization': `Bearer ${this._token}` } : {}),\n },\n };\n\n return originalRequest(method, path, mergedOptions);\n };\n }\n\n /**\n * Get current JWT token\n */\n getToken(): string | null {\n return this.storage.getItem(TOKEN_KEY);\n }\n\n /**\n * Get current refresh token\n */\n getRefreshToken(): string | null {\n return this.storage.getItem(REFRESH_TOKEN_KEY);\n }\n\n /**\n * Set JWT token and refresh token\n * @param token - JWT access token\n * @param refreshToken - JWT refresh token (optional)\n */\n setToken(token: string, refreshToken?: string): void {\n this._token = token;\n this.storage.setItem(TOKEN_KEY, token);\n\n if (refreshToken) {\n this._refreshToken = refreshToken;\n this.storage.setItem(REFRESH_TOKEN_KEY, refreshToken);\n }\n\n // Reinitialize clients with new token\n this._initClients();\n }\n\n /**\n * Clear all tokens\n */\n clearTokens(): void {\n this._token = null;\n this._refreshToken = null;\n this.storage.removeItem(TOKEN_KEY);\n this.storage.removeItem(REFRESH_TOKEN_KEY);\n\n // Reinitialize clients without token\n this._initClients();\n }\n\n /**\n * Check if user is authenticated\n */\n isAuthenticated(): boolean {\n return !!this.getToken();\n }\n\n /**\n * Update base URL and reinitialize clients\n * @param url - New base URL\n */\n setBaseUrl(url: string): void {\n this.baseUrl = url;\n this._initClients();\n }\n\n /**\n * Get current base URL\n */\n getBaseUrl(): string {\n return this.baseUrl;\n }\n\n /**\n * Get OpenAPI schema\n * @returns Complete OpenAPI specification for this API\n */\n getSchema(): any {\n return OPENAPI_SCHEMA;\n }\n}\n\nexport default API;","/**\n * Base Client for all API services\n *\n * Provides:\n * - Centralized API instance with JWT token management\n * - LocalStorage adapter for browser environments\n * - Singleton pattern for API client\n */\n\nimport { API, LocalStorageAdapter } from './generated';\n\n/**\n * Singleton API instance with JWT token management\n * Uses LocalStorage for token persistence\n */\nconst api = new API(\n typeof process !== 'undefined' && process.env?.NEXT_PUBLIC_API_URL\n ? process.env.NEXT_PUBLIC_API_URL\n : 'http://localhost:8000',\n {\n storage: new LocalStorageAdapter()\n }\n);\n\n/**\n * Base Client Class\n *\n * Service classes can extend this to access api instance\n */\nexport class BaseClient {\n /**\n * Authenticated API instance with JWT management\n */\n protected static api = api;\n}\n\n/**\n * Export API instance for direct access\n *\n * Usage:\n * ```typescript\n * import { api } from '@djangocfg/api';\n *\n * // Set JWT tokens after login\n * api.setToken('access-token', 'refresh-token');\n *\n * // Check authentication\n * if (api.isAuthenticated()) {\n * // Make authenticated requests\n * }\n *\n * // Clear tokens on logout\n * api.clearTokens();\n * ```\n */\nexport { api };\n","/**\n * Authentication Service\n *\n * Handles OTP authentication, token management, and user profile\n */\n\nimport { BaseClient } from '../../BaseClient';\nimport { APIError, CfgAccountsTypes, CfgUserProfileTypes, Enums } from '../../generated';\n\nexport class AuthService extends BaseClient {\n /**\n * Request OTP code\n */\n static async requestOTP(\n identifier: string,\n channel?: Enums.OTPRequestRequestChannel\n ): Promise<{\n success: boolean;\n message?: string;\n error?: string;\n }> {\n try {\n const response = await this.api.cfg_accounts.otpRequestCreate({\n identifier,\n channel,\n });\n return { success: true, message: response.message };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Verify OTP and login\n */\n static async verifyOTP(\n identifier: string,\n otp: string,\n channel?: Enums.OTPVerifyRequestChannel\n ): Promise<{\n success: boolean;\n user?: CfgUserProfileTypes.User;\n error?: string;\n fieldErrors?: Record<string, string[]>;\n }> {\n try {\n const { access, refresh } = await this.api.cfg_accounts.otpVerifyCreate({\n identifier,\n otp,\n channel,\n });\n\n this.api.setToken(access, refresh);\n\n const user = await this.api.cfg_user_profile.accountsProfileRetrieve();\n\n return { success: true, user };\n } catch (error) {\n if (error instanceof APIError) {\n if (error.isValidationError && error.fieldErrors) {\n return { success: false, fieldErrors: error.fieldErrors };\n }\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get current user profile\n */\n static async getCurrentUser(): Promise<{\n success: boolean;\n user?: CfgUserProfileTypes.User;\n error?: string;\n }> {\n try {\n const user = await this.api.cfg_user_profile.accountsProfileRetrieve();\n return { success: true, user };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Update user profile\n */\n static async updateProfile(\n data: CfgUserProfileTypes.PatchedUserProfileUpdateRequest\n ): Promise<{\n success: boolean;\n user?: CfgUserProfileTypes.User;\n error?: string;\n fieldErrors?: Record<string, string[]>;\n }> {\n try {\n const user = await this.api.cfg_user_profile.accountsProfilePartialUpdate(data);\n return { success: true, user };\n } catch (error) {\n if (error instanceof APIError) {\n if (error.isValidationError && error.fieldErrors) {\n return { success: false, fieldErrors: error.fieldErrors };\n }\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Refresh access token\n */\n static async refreshToken(): Promise<{ success: boolean; error?: string }> {\n const refresh = this.api.getRefreshToken();\n if (!refresh) {\n return { success: false, error: 'No refresh token' };\n }\n\n try {\n const { access } = await this.api.cfg_auth.accountsTokenRefreshCreate({ refresh });\n this.api.setToken(access);\n return { success: true };\n } catch (error) {\n this.api.clearTokens();\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Logout user\n */\n static logout(): void {\n this.api.clearTokens();\n }\n\n /**\n * Check if user is authenticated\n */\n static isAuthenticated(): boolean {\n return this.api.isAuthenticated();\n }\n\n /**\n * Get access token\n */\n static getToken(): string | null {\n return this.api.getToken();\n }\n\n /**\n * Get refresh token\n */\n static getRefreshToken(): string | null {\n return this.api.getRefreshToken();\n }\n}\n","/**\n * Leads Service\n *\n * Handles lead submission and management\n */\n\nimport { BaseClient } from '../../BaseClient';\nimport { APIError, CfgLeadsTypes, CfgLeadSubmissionTypes, Enums } from '../../generated';\n\nexport class LeadsService extends BaseClient {\n /**\n * Submit lead (public)\n */\n static async submitLead(data: {\n email: string;\n name: string;\n message: string;\n company?: string;\n phone?: string;\n contact_type?: Enums.LeadSubmissionRequestContactType;\n }): Promise<{\n success: boolean;\n lead?: CfgLeadSubmissionTypes.LeadSubmissionResponse;\n error?: string;\n fieldErrors?: Record<string, string[]>;\n }> {\n try {\n const lead = await this.api.cfg_lead_submission.leadsSubmitCreate({\n name: data.name,\n email: data.email,\n message: data.message,\n company: data.company,\n contact_type: data.contact_type || Enums.LeadSubmissionRequestContactType.EMAIL,\n contact_value: data.phone,\n site_url: typeof window !== 'undefined' ? window.location.href : '',\n });\n return { success: true, lead };\n } catch (error) {\n if (error instanceof APIError) {\n if (error.isValidationError && error.fieldErrors) {\n return { success: false, fieldErrors: error.fieldErrors };\n }\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get leads list (admin)\n */\n static async getLeads(\n page: number = 1,\n pageSize: number = 20\n ): Promise<{\n success: boolean;\n leads?: CfgLeadsTypes.PaginatedLeadSubmissionList;\n error?: string;\n }> {\n try {\n const response = await this.api.cfg_leads.list({ page, page_size: pageSize });\n return { success: true, leads: response };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get lead by ID (admin)\n */\n static async getLead(id: number): Promise<{\n success: boolean;\n lead?: CfgLeadsTypes.LeadSubmission;\n error?: string;\n }> {\n try {\n const lead = await this.api.cfg_leads.retrieve(id);\n return { success: true, lead };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Update lead (admin)\n */\n static async updateLead(\n id: number,\n data: CfgLeadsTypes.PatchedLeadSubmissionRequest\n ): Promise<{\n success: boolean;\n lead?: CfgLeadsTypes.LeadSubmission;\n error?: string;\n fieldErrors?: Record<string, string[]>;\n }> {\n try {\n const lead = await this.api.cfg_leads.partialUpdate(id, data);\n return { success: true, lead };\n } catch (error) {\n if (error instanceof APIError) {\n if (error.isValidationError && error.fieldErrors) {\n return { success: false, fieldErrors: error.fieldErrors };\n }\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Delete lead (admin)\n */\n static async deleteLead(id: number): Promise<{\n success: boolean;\n error?: string;\n }> {\n try {\n await this.api.cfg_leads.destroy(id);\n return { success: true };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n}\n","/**\n * Support Service\n *\n * Handles support tickets and messages\n */\n\nimport { BaseClient } from '../../BaseClient';\nimport { APIError, CfgSupportTypes } from '../../generated';\n\nexport class SupportService extends BaseClient {\n /**\n * Get tickets list\n */\n static async getTickets(): Promise<{\n success: boolean;\n error?: string;\n }> {\n try {\n await this.api.cfg_support.ticketsList();\n return { success: true };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get ticket by ID\n */\n static async getTicket(id: string): Promise<{\n success: boolean;\n ticket?: CfgSupportTypes.Ticket;\n error?: string;\n }> {\n try {\n const ticket = await this.api.cfg_support.ticketsRetrieve(id);\n return { success: true, ticket };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Create ticket\n */\n static async createTicket(data: CfgSupportTypes.TicketRequest): Promise<{\n success: boolean;\n ticket?: CfgSupportTypes.Ticket;\n error?: string;\n fieldErrors?: Record<string, string[]>;\n }> {\n try {\n const ticket = await this.api.cfg_support.ticketsCreate(data);\n return { success: true, ticket };\n } catch (error) {\n if (error instanceof APIError) {\n if (error.isValidationError && error.fieldErrors) {\n return { success: false, fieldErrors: error.fieldErrors };\n }\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Update ticket\n */\n static async updateTicket(\n id: string,\n data: CfgSupportTypes.PatchedTicketRequest\n ): Promise<{\n success: boolean;\n ticket?: CfgSupportTypes.Ticket;\n error?: string;\n fieldErrors?: Record<string, string[]>;\n }> {\n try {\n const ticket = await this.api.cfg_support.ticketsPartialUpdate(id, data);\n return { success: true, ticket };\n } catch (error) {\n if (error instanceof APIError) {\n if (error.isValidationError && error.fieldErrors) {\n return { success: false, fieldErrors: error.fieldErrors };\n }\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get ticket messages\n */\n static async getMessages(ticketId: string): Promise<{\n success: boolean;\n error?: string;\n }> {\n try {\n await this.api.cfg_support.ticketsMessagesList(ticketId);\n return { success: true };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Send message to ticket\n */\n static async sendMessage(\n ticketId: string,\n text: string\n ): Promise<{\n success: boolean;\n message?: CfgSupportTypes.MessageCreate;\n error?: string;\n fieldErrors?: Record<string, string[]>;\n }> {\n try {\n const message = await this.api.cfg_support.ticketsMessagesCreate(ticketId, {\n text,\n });\n return { success: true, message };\n } catch (error) {\n if (error instanceof APIError) {\n if (error.isValidationError && error.fieldErrors) {\n return { success: false, fieldErrors: error.fieldErrors };\n }\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n}\n","/**\n * Tasks Service\n *\n * Manages background tasks, queues, and workers\n */\n\nimport { BaseClient } from '../../BaseClient';\nimport { APIError, CfgTasksTypes } from '../../generated';\n\nexport class TasksService extends BaseClient {\n /**\n * Get queue status\n */\n static async getQueuesStatus(): Promise<{\n success: boolean;\n status?: CfgTasksTypes.QueueStatus;\n error?: string;\n }> {\n try {\n const status = await this.api.cfg_tasks.apiQueuesStatusRetrieve();\n return { success: true, status };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Manage queue operations\n */\n static async manageQueue(\n data: CfgTasksTypes.QueueActionRequest\n ): Promise<{\n success: boolean;\n result?: CfgTasksTypes.QueueAction;\n error?: string;\n }> {\n try {\n const result = await this.api.cfg_tasks.apiQueuesManageCreate(data);\n return { success: true, result };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Clear all queues\n */\n static async clearQueues(\n data: CfgTasksTypes.APIResponseRequest\n ): Promise<{\n success: boolean;\n response?: CfgTasksTypes.APIResponse;\n error?: string;\n }> {\n try {\n const response = await this.api.cfg_tasks.apiClearQueuesCreate(data);\n return { success: true, response };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Purge failed tasks\n */\n static async purgeFailed(\n data: CfgTasksTypes.APIResponseRequest\n ): Promise<{\n success: boolean;\n response?: CfgTasksTypes.APIResponse;\n error?: string;\n }> {\n try {\n const response = await this.api.cfg_tasks.apiPurgeFailedCreate(data);\n return { success: true, response };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get task statistics\n */\n static async getTaskStats(): Promise<{\n success: boolean;\n stats?: CfgTasksTypes.TaskStatistics;\n error?: string;\n }> {\n try {\n const stats = await this.api.cfg_tasks.apiTasksStatsRetrieve();\n return { success: true, stats };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get tasks list\n */\n static async getTasksList(): Promise<{\n success: boolean;\n tasks?: CfgTasksTypes.APIResponse;\n error?: string;\n }> {\n try {\n const tasks = await this.api.cfg_tasks.apiTasksListRetrieve();\n return { success: true, tasks };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get workers list\n */\n static async getWorkersList(): Promise<{\n success: boolean;\n workers?: CfgTasksTypes.APIResponse;\n error?: string;\n }> {\n try {\n const workers = await this.api.cfg_tasks.apiWorkersListRetrieve();\n return { success: true, workers };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Manage worker operations\n */\n static async manageWorker(\n data: CfgTasksTypes.WorkerActionRequest\n ): Promise<{\n success: boolean;\n result?: CfgTasksTypes.WorkerAction;\n error?: string;\n }> {\n try {\n const result = await this.api.cfg_tasks.apiWorkersManageCreate(data);\n return { success: true, result };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n}\n","/**\n * Webhooks Service\n *\n * Manages payment webhooks\n */\n\nimport { BaseClient } from '../../BaseClient';\nimport { APIError, CfgWebhooksTypes } from '../../generated';\n\nexport class WebhooksService extends BaseClient {\n /**\n * Get webhook info\n */\n static async getInfo(provider: string): Promise<{\n success: boolean;\n webhook?: CfgWebhooksTypes.WebhookResponse;\n error?: string;\n }> {\n try {\n const webhook = await this.api.cfg_webhooks.paymentsWebhooksRetrieve(provider);\n return { success: true, webhook };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Process webhook\n */\n static async process(\n provider: string,\n data: CfgWebhooksTypes.WebhookResponseRequest\n ): Promise<{\n success: boolean;\n response?: CfgWebhooksTypes.WebhookResponse;\n error?: string;\n }> {\n try {\n const response = await this.api.cfg_webhooks.paymentsWebhooksCreate(provider, data);\n return { success: true, response };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get webhook health\n */\n static async getHealth(): Promise<{\n success: boolean;\n health?: CfgWebhooksTypes.WebhookHealth;\n error?: string;\n }> {\n try {\n const health = await this.api.cfg_webhooks.paymentsWebhooksHealthRetrieve();\n return { success: true, health };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get supported providers\n */\n static async getProviders(): Promise<{\n success: boolean;\n providers?: CfgWebhooksTypes.SupportedProviders;\n error?: string;\n }> {\n try {\n const providers = await this.api.cfg_webhooks.paymentsWebhooksProvidersRetrieve();\n return { success: true, providers };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get webhook stats\n */\n static async getStats(days?: number): Promise<{\n success: boolean;\n stats?: CfgWebhooksTypes.WebhookStats;\n error?: string;\n }> {\n try {\n const stats = await this.api.cfg_webhooks.paymentsWebhooksStatsRetrieve({ days });\n return { success: true, stats };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n}\n","/**\n * API Keys Service\n *\n * Manages API keys - creation, validation, rotation, and management\n */\n\nimport { BaseClient } from '../../BaseClient';\nimport { APIError, CfgPaymentsTypes } from '../../generated';\n\nexport class ApiKeysService extends BaseClient {\n /**\n * List API keys (admin)\n */\n static async list(params?: {\n is_active?: boolean;\n ordering?: string;\n page?: number;\n page_size?: number;\n search?: string;\n user?: number;\n }): Promise<{\n success: boolean;\n keys?: CfgPaymentsTypes.PaginatedAPIKeyListList;\n error?: string;\n }> {\n try {\n const response = await this.api.cfg_payments.apiKeysList(params);\n return { success: true, keys: response };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Create API key\n */\n static async create(\n data: CfgPaymentsTypes.APIKeyCreateRequest\n ): Promise<{\n success: boolean;\n key?: CfgPaymentsTypes.APIKeyCreate;\n error?: string;\n fieldErrors?: Record<string, string[]>;\n }> {\n try {\n const response = await this.api.cfg_payments.apiKeysCreate(data);\n return { success: true, key: response };\n } catch (error) {\n if (error instanceof APIError) {\n if (error.isValidationError && error.fieldErrors) {\n return { success: false, fieldErrors: error.fieldErrors };\n }\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get API key details\n */\n static async get(id: string): Promise<{\n success: boolean;\n key?: CfgPaymentsTypes.APIKeyDetail;\n error?: string;\n }> {\n try {\n const response = await this.api.cfg_payments.apiKeysRetrieve(id);\n return { success: true, key: response };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Update API key\n */\n static async update(\n id: string,\n data: CfgPaymentsTypes.PatchedAPIKeyUpdateRequest\n ): Promise<{\n success: boolean;\n key?: CfgPaymentsTypes.APIKeyUpdate;\n error?: string;\n fieldErrors?: Record<string, string[]>;\n }> {\n try {\n const response = await this.api.cfg_payments.apiKeysPartialUpdate(id, data);\n return { success: true, key: response };\n } catch (error) {\n if (error instanceof APIError) {\n if (error.isValidationError && error.fieldErrors) {\n return { success: false, fieldErrors: error.fieldErrors };\n }\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Delete API key\n */\n static async delete(id: string): Promise<{\n success: boolean;\n error?: string;\n }> {\n try {\n await this.api.cfg_payments.apiKeysDestroy(id);\n return { success: true };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Validate API key\n */\n static async validate(\n data: CfgPaymentsTypes.APIKeyValidationRequest\n ): Promise<{\n success: boolean;\n validation?: CfgPaymentsTypes.APIKeyValidationResponse;\n error?: string;\n }> {\n try {\n const validation = await this.api.cfg_payments.apiKeysValidateCreate(data);\n return { success: true, validation };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get API keys analytics\n */\n static async getAnalytics(): Promise<{\n success: boolean;\n analytics?: CfgPaymentsTypes.APIKeyDetail;\n error?: string;\n }> {\n try {\n const analytics = await this.api.cfg_payments.apiKeysAnalyticsRetrieve();\n return { success: true, analytics };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get API keys stats\n */\n static async getStats(): Promise<{\n success: boolean;\n stats?: CfgPaymentsTypes.APIKeyDetail;\n error?: string;\n }> {\n try {\n const stats = await this.api.cfg_payments.apiKeysStatsRetrieve();\n return { success: true, stats };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n}\n","/**\n * Payments Service\n *\n * Manages payment operations - create, check status, cancel\n */\n\nimport { BaseClient } from '../../BaseClient';\nimport { APIError, CfgPaymentsTypes } from '../../generated';\n\nexport class PaymentsService extends BaseClient {\n /**\n * List payments (admin)\n */\n static async list(params?: {\n currency__code?: string;\n ordering?: string;\n page?: number;\n page_size?: number;\n provider?: string;\n search?: string;\n status?: string;\n user?: number;\n }): Promise<{\n success: boolean;\n payments?: CfgPaymentsTypes.PaginatedPaymentListList;\n error?: string;\n }> {\n try {\n const response = await this.api.cfg_payments.paymentList(\n params?.currency__code,\n params?.ordering,\n params?.page,\n params?.page_size,\n params?.provider,\n params?.search,\n params?.status,\n params?.user\n );\n return { success: true, payments: response };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Create payment\n */\n static async create(\n data: CfgPaymentsTypes.PaymentCreateRequest\n ): Promise<{\n success: boolean;\n payment?: CfgPaymentsTypes.PaymentCreate;\n error?: string;\n fieldErrors?: Record<string, string[]>;\n }> {\n try {\n const response = await this.api.cfg_payments.paymentCreate(data);\n return { success: true, payment: response };\n } catch (error) {\n if (error instanceof APIError) {\n if (error.isValidationError && error.fieldErrors) {\n return { success: false, fieldErrors: error.fieldErrors };\n }\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get payment details\n */\n static async get(id: string): Promise<{\n success: boolean;\n payment?: CfgPaymentsTypes.Payment;\n error?: string;\n }> {\n try {\n const payment = await this.api.cfg_payments.paymentRetrieve(id);\n return { success: true, payment };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get payment status\n */\n static async getStatus(id: string): Promise<{\n success: boolean;\n payment?: CfgPaymentsTypes.Payment;\n error?: string;\n }> {\n try {\n const payment = await this.api.cfg_payments.paymentStatusRetrieve(id);\n return { success: true, payment };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Cancel payment\n */\n static async cancel(\n id: string,\n data: CfgPaymentsTypes.PaymentRequest\n ): Promise<{\n success: boolean;\n payment?: CfgPaymentsTypes.Payment;\n error?: string;\n }> {\n try {\n const payment = await this.api.cfg_payments.paymentCancelCreate(id, data);\n return { success: true, payment };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Check payment status with provider\n */\n static async checkStatus(\n id: string,\n data: CfgPaymentsTypes.PaymentRequest\n ): Promise<{\n success: boolean;\n payment?: CfgPaymentsTypes.Payment;\n error?: string;\n }> {\n try {\n const payment = await this.api.cfg_payments.paymentCheckStatusCreate(id, data);\n return { success: true, payment };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get payments analytics\n */\n static async getAnalytics(): Promise<{\n success: boolean;\n analytics?: CfgPaymentsTypes.Payment;\n error?: string;\n }> {\n try {\n const analytics = await this.api.cfg_payments.paymentAnalyticsRetrieve();\n return { success: true, analytics };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get payments stats\n */\n static async getStats(): Promise<{\n success: boolean;\n stats?: CfgPaymentsTypes.Payment;\n error?: string;\n }> {\n try {\n const stats = await this.api.cfg_payments.paymentStatsRetrieve();\n return { success: true, stats };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n}\n","/**\n * Subscriptions Service\n *\n * Manages user subscriptions and tariffs\n */\n\nimport { BaseClient } from '../../BaseClient';\nimport { APIError, CfgPaymentsTypes } from '../../generated';\n\nexport class SubscriptionsService extends BaseClient {\n /**\n * List subscriptions (admin)\n */\n static async list(params?: {\n ordering?: string;\n page?: number;\n page_size?: number;\n search?: string;\n status?: string;\n tier?: string;\n user?: number;\n }): Promise<{\n success: boolean;\n subscriptions?: CfgPaymentsTypes.PaginatedSubscriptionListList;\n error?: string;\n }> {\n try {\n const response = await this.api.cfg_payments.subscriptionsList(\n params?.ordering,\n params?.page,\n params?.page_size,\n params?.search,\n params?.status,\n params?.tier,\n params?.user\n );\n return { success: true, subscriptions: response };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Create subscription\n */\n static async create(\n data: CfgPaymentsTypes.SubscriptionCreateRequest\n ): Promise<{\n success: boolean;\n subscription?: CfgPaymentsTypes.SubscriptionCreate;\n error?: string;\n fieldErrors?: Record<string, string[]>;\n }> {\n try {\n const subscription = await this.api.cfg_payments.subscriptionsCreate(data);\n return { success: true, subscription };\n } catch (error) {\n if (error instanceof APIError) {\n if (error.isValidationError && error.fieldErrors) {\n return { success: false, fieldErrors: error.fieldErrors };\n }\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get subscription details\n */\n static async get(id: string): Promise<{\n success: boolean;\n subscription?: CfgPaymentsTypes.Subscription;\n error?: string;\n }> {\n try {\n const subscription = await this.api.cfg_payments.subscriptionsRetrieve(id);\n return { success: true, subscription };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Update subscription\n */\n static async update(\n id: string,\n data: CfgPaymentsTypes.PatchedSubscriptionRequest\n ): Promise<{\n success: boolean;\n subscription?: CfgPaymentsTypes.Subscription;\n error?: string;\n fieldErrors?: Record<string, string[]>;\n }> {\n try {\n const subscription = await this.api.cfg_payments.subscriptionsPartialUpdate(id, data);\n return { success: true, subscription };\n } catch (error) {\n if (error instanceof APIError) {\n if (error.isValidationError && error.fieldErrors) {\n return { success: false, fieldErrors: error.fieldErrors };\n }\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Delete subscription\n */\n static async delete(id: string): Promise<{\n success: boolean;\n error?: string;\n }> {\n try {\n await this.api.cfg_payments.subscriptionsDestroy(id);\n return { success: true };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get subscriptions analytics\n */\n static async getAnalytics(): Promise<{\n success: boolean;\n analytics?: CfgPaymentsTypes.Subscription;\n error?: string;\n }> {\n try {\n const analytics = await this.api.cfg_payments.subscriptionsAnalyticsRetrieve();\n return { success: true, analytics };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * List tariffs\n */\n static async listTariffs(params?: {\n is_active?: boolean;\n ordering?: string;\n page?: number;\n page_size?: number;\n search?: string;\n }): Promise<{\n success: boolean;\n tariffs?: CfgPaymentsTypes.PaginatedTariffList;\n error?: string;\n }> {\n try {\n const response = await this.api.cfg_payments.tariffsList(\n params?.is_active,\n params?.ordering,\n params?.page,\n params?.page_size,\n params?.search\n );\n return { success: true, tariffs: response };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get tariff details\n */\n static async getTariff(id: number): Promise<{\n success: boolean;\n tariff?: CfgPaymentsTypes.Tariff;\n error?: string;\n }> {\n try {\n const tariff = await this.api.cfg_payments.tariffsRetrieve(id);\n return { success: true, tariff };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n}\n","/**\n * Payment Dashboard Service\n *\n * Provides dashboard metrics, overview, and analytics\n */\n\nimport { BaseClient } from '../../BaseClient';\nimport { APIError, CfgPaymentsTypes } from '../../generated';\n\nexport class PaymentDashboardService extends BaseClient {\n /**\n * Get complete dashboard overview\n */\n static async getOverview(): Promise<{\n success: boolean;\n overview?: CfgPaymentsTypes.PaymentsDashboardOverview;\n error?: string;\n }> {\n try {\n const overview = await this.api.cfg_payments.overviewDashboardOverviewRetrieve();\n return { success: true, overview };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get dashboard metrics\n */\n static async getMetrics(): Promise<{\n success: boolean;\n metrics?: CfgPaymentsTypes.PaymentsMetrics;\n error?: string;\n }> {\n try {\n const metrics = await this.api.cfg_payments.overviewDashboardMetricsRetrieve();\n return { success: true, metrics };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get balance overview\n */\n static async getBalanceOverview(): Promise<{\n success: boolean;\n balance?: CfgPaymentsTypes.BalanceOverview;\n error?: string;\n }> {\n try {\n const balance = await this.api.cfg_payments.overviewDashboardBalanceOverviewRetrieve();\n return { success: true, balance };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get subscription overview\n */\n static async getSubscriptionOverview(): Promise<{\n success: boolean;\n subscription?: CfgPaymentsTypes.SubscriptionOverview;\n error?: string;\n }> {\n try {\n const subscription = await this.api.cfg_payments.overviewDashboardSubscriptionOverviewRetrieve();\n return { success: true, subscription };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get API keys overview\n */\n static async getApiKeysOverview(): Promise<{\n success: boolean;\n apiKeys?: CfgPaymentsTypes.APIKeysOverview;\n error?: string;\n }> {\n try {\n const apiKeys = await this.api.cfg_payments.overviewDashboardApiKeysOverviewRetrieve();\n return { success: true, apiKeys };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get chart data for payments\n */\n static async getChartData(period?: string): Promise<{\n success: boolean;\n chartData?: CfgPaymentsTypes.PaymentsChartResponse;\n error?: string;\n }> {\n try {\n const chartData = await this.api.cfg_payments.overviewDashboardChartDataRetrieve({ period });\n return { success: true, chartData };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get payment analytics\n */\n static async getPaymentAnalytics(limit?: number): Promise<{\n success: boolean;\n analytics?: CfgPaymentsTypes.PaymentAnalyticsResponse;\n error?: string;\n }> {\n try {\n const analytics = await this.api.cfg_payments.overviewDashboardPaymentAnalyticsRetrieve(limit);\n return { success: true, analytics };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get recent payments\n */\n static async getRecentPayments(params?: {\n limit?: number;\n page?: number;\n page_size?: number;\n }): Promise<{\n success: boolean;\n payments?: CfgPaymentsTypes.PaginatedRecentPaymentList;\n error?: string;\n }> {\n try {\n const response = await this.api.cfg_payments.overviewDashboardRecentPaymentsList(\n params?.limit,\n params?.page,\n params?.page_size\n );\n return { success: true, payments: response };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get recent transactions\n */\n static async getRecentTransactions(params?: {\n limit?: number;\n page?: number;\n page_size?: number;\n }): Promise<{\n success: boolean;\n transactions?: CfgPaymentsTypes.PaginatedRecentTransactionList;\n error?: string;\n }> {\n try {\n const response = await this.api.cfg_payments.overviewDashboardRecentTransactionsList(\n params?.limit,\n params?.page,\n params?.page_size\n );\n return { success: true, transactions: response };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n}\n","/**\n * Newsletter Campaigns Service\n *\n * Manages newsletter campaigns\n */\n\nimport { BaseClient } from '../../BaseClient';\nimport { APIError, CfgCampaignsTypes } from '../../generated';\n\nexport class CampaignsService extends BaseClient {\n /**\n * List campaigns\n */\n static async list(page?: number, pageSize?: number): Promise<{\n success: boolean;\n campaigns?: CfgCampaignsTypes.PaginatedNewsletterCampaignList;\n error?: string;\n }> {\n try {\n const response = await this.api.cfg_campaigns.newsletterCampaignsList(page, pageSize);\n return { success: true, campaigns: response };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Create campaign\n */\n static async create(\n data: CfgCampaignsTypes.NewsletterCampaignRequest\n ): Promise<{\n success: boolean;\n campaign?: CfgCampaignsTypes.NewsletterCampaign;\n error?: string;\n fieldErrors?: Record<string, string[]>;\n }> {\n try {\n const campaign = await this.api.cfg_campaigns.newsletterCampaignsCreate(data);\n return { success: true, campaign };\n } catch (error) {\n if (error instanceof APIError) {\n if (error.isValidationError && error.fieldErrors) {\n return { success: false, fieldErrors: error.fieldErrors };\n }\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get campaign details\n */\n static async get(id: number): Promise<{\n success: boolean;\n campaign?: CfgCampaignsTypes.NewsletterCampaign;\n error?: string;\n }> {\n try {\n const campaign = await this.api.cfg_campaigns.newsletterCampaignsRetrieve(id);\n return { success: true, campaign };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Update campaign\n */\n static async update(\n id: number,\n data: CfgCampaignsTypes.NewsletterCampaignRequest\n ): Promise<{\n success: boolean;\n campaign?: CfgCampaignsTypes.NewsletterCampaign;\n error?: string;\n fieldErrors?: Record<string, string[]>;\n }> {\n try {\n const campaign = await this.api.cfg_campaigns.newsletterCampaignsUpdate(id, data);\n return { success: true, campaign };\n } catch (error) {\n if (error instanceof APIError) {\n if (error.isValidationError && error.fieldErrors) {\n return { success: false, fieldErrors: error.fieldErrors };\n }\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Delete campaign\n */\n static async delete(id: number): Promise<{\n success: boolean;\n error?: string;\n }> {\n try {\n await this.api.cfg_campaigns.newsletterCampaignsDestroy(id);\n return { success: true };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Send campaign\n */\n static async send(\n data: CfgCampaignsTypes.SendCampaignRequest\n ): Promise<{\n success: boolean;\n response?: CfgCampaignsTypes.SendCampaignResponse;\n error?: string;\n }> {\n try {\n const response = await this.api.cfg_campaigns.newsletterCampaignsSendCreate(data);\n return { success: true, response };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n}\n","/**\n * Newsletters List Service\n *\n * Manages available newsletters\n */\n\nimport { BaseClient } from '../../BaseClient';\nimport { APIError, CfgNewslettersTypes } from '../../generated';\n\nexport class NewslettersListService extends BaseClient {\n /**\n * List available newsletters\n */\n static async list(page?: number, pageSize?: number): Promise<{\n success: boolean;\n newsletters?: CfgNewslettersTypes.PaginatedNewsletterList;\n error?: string;\n }> {\n try {\n const response = await this.api.cfg_newsletters.newsletterNewslettersList({ page, page_size: pageSize });\n return { success: true, newsletters: response };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Get newsletter details\n */\n static async get(id: number): Promise<{\n success: boolean;\n newsletter?: CfgNewslettersTypes.Newsletter;\n error?: string;\n }> {\n try {\n const newsletter = await this.api.cfg_newsletters.newsletterNewslettersRetrieve(id);\n return { success: true, newsletter };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n}\n","/**\n * Bulk Email Service\n *\n * Sends bulk emails\n */\n\nimport { BaseClient } from '../../BaseClient';\nimport { APIError, CfgBulkEmailTypes } from '../../generated';\n\nexport class BulkEmailService extends BaseClient {\n /**\n * Send bulk email\n */\n static async send(\n data: CfgBulkEmailTypes.BulkEmailRequest\n ): Promise<{\n success: boolean;\n response?: CfgBulkEmailTypes.BulkEmailResponse;\n error?: string;\n fieldErrors?: Record<string, string[]>;\n }> {\n try {\n const response = await this.api.cfg_bulk_email.newsletterBulkCreate(data);\n return { success: true, response };\n } catch (error) {\n if (error instanceof APIError) {\n if (error.isValidationError && error.fieldErrors) {\n return { success: false, fieldErrors: error.fieldErrors };\n }\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n}\n","/**\n * Newsletter Service\n *\n * Manages newsletter subscriptions\n */\n\nimport { BaseClient } from '../../BaseClient';\nimport { APIError, CfgSubscriptionsTypes } from '../../generated';\n\nexport class NewsletterService extends BaseClient {\n /**\n * Subscribe to newsletter\n */\n static async subscribe(\n data: CfgSubscriptionsTypes.SubscribeRequest\n ): Promise<{\n success: boolean;\n response?: CfgSubscriptionsTypes.SubscribeResponse;\n error?: string;\n fieldErrors?: Record<string, string[]>;\n }> {\n try {\n const response = await this.api.cfg_subscriptions.newsletterSubscribeCreate(data);\n return { success: true, response };\n } catch (error) {\n if (error instanceof APIError) {\n if (error.isValidationError && error.fieldErrors) {\n return { success: false, fieldErrors: error.fieldErrors };\n }\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * Unsubscribe from newsletter\n */\n static async unsubscribe(\n data: CfgSubscriptionsTypes.UnsubscribeRequest\n ): Promise<{\n success: boolean;\n response?: CfgSubscriptionsTypes.SuccessResponse;\n error?: string;\n fieldErrors?: Record<string, string[]>;\n }> {\n try {\n const response = await this.api.cfg_subscriptions.newsletterUnsubscribeCreate(data);\n return { success: true, response };\n } catch (error) {\n if (error instanceof APIError) {\n if (error.isValidationError && error.fieldErrors) {\n return { success: false, fieldErrors: error.fieldErrors };\n }\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n\n /**\n * List user subscriptions\n */\n static async list(page?: number, pageSize?: number): Promise<{\n success: boolean;\n subscriptions?: CfgSubscriptionsTypes.PaginatedNewsletterSubscriptionList;\n error?: string;\n }> {\n try {\n const response = await this.api.cfg_subscriptions.newsletterSubscriptionsList(page, pageSize);\n return { success: true, subscriptions: response };\n } catch (error) {\n if (error instanceof APIError) {\n return { success: false, error: error.errorMessage };\n }\n return { success: false, error: 'Network error' };\n }\n }\n}\n"],"mappings":"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","names":["models_exports","models_exports","models_exports","models_exports","models_exports","models_exports","models_exports","models_exports","models_exports","models_exports","models_exports","models_exports","models_exports","models_exports","models_exports","models_exports","models_exports","AdminPaymentUpdateStatus","AdminPaymentUpdateRequestStatus","CurrencyCurrencyType","CurrencyListCurrencyType","EmailLogStatus","LeadSubmissionContactType","LeadSubmissionRequestContactType","NewsletterCampaignStatus","OTPRequestRequestChannel","OTPVerifyRequestChannel","PatchedAdminPaymentUpdateRequestStatus","PatchedLeadSubmissionRequestContactType","PatchedPaymentRequestProvider","PatchedPaymentRequestStatus","PatchedSubscriptionRequestStatus","PatchedSubscriptionRequestTier","PatchedTicketRequestStatus","PaymentProvider","PaymentStatus","PaymentCreateCurrencyCode","PaymentCreateProvider","PaymentCreateRequestCurrencyCode","PaymentCreateRequestProvider","PaymentListProvider","PaymentListStatus","PaymentRequestProvider","PaymentRequestStatus","QueueActionAction","QueueActionRequestAction","SubscriptionStatus","SubscriptionTier","SubscriptionListStatus","SubscriptionRequestStatus","SubscriptionRequestTier","TicketStatus","TicketRequestStatus","TransactionTransactionType","WebhookEventStatus","WebhookEventRequestStatus","WorkerActionAction","WorkerActionRequestAction","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","z","api","api","api","api","api","api","api","api","api","api","api","api","api","api","api","api","api","api","useSWRConfig","useSWRConfig","useSWRConfig","useSWRConfig","useSWRConfig","useSWRConfig","useSWR","useSWR","useSWR","useSWR","useSWR","useSWRConfig","useSWRConfig","useSWR","useSWRConfig","useSWRConfig","useSWR","useSWRConfig","useSWR","useSWRConfig","useSWR","useSWRConfig","useSWR","useSWRConfig","useSWRConfig","useSWRConfig","useSWR","useSWR","useSWR","useSWR","useSWR","useSWRConfig","useSWR","useSWRConfig","useSWRConfig","useSWRConfig","useSWR","useSWRConfig","useSWR","useSWRConfig","useSWR","useSWRConfig","useSWR","useSWRConfig","useSWR","useSWRConfig","useSWRConfig","useSWR"]}
|