@djangocfg/api 2.1.36 → 2.1.38
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/README.md +94 -56
- package/dist/auth.cjs +3020 -4081
- package/dist/auth.cjs.map +1 -1
- package/dist/auth.d.cts +5 -7
- package/dist/auth.d.ts +5 -7
- package/dist/auth.mjs +3019 -4080
- package/dist/auth.mjs.map +1 -1
- package/dist/clients.cjs +4983 -0
- package/dist/clients.cjs.map +1 -0
- package/dist/clients.d.cts +4135 -0
- package/dist/clients.d.ts +4135 -0
- package/dist/clients.mjs +4957 -0
- package/dist/clients.mjs.map +1 -0
- package/dist/hooks.cjs +1083 -0
- package/dist/hooks.cjs.map +1 -1
- package/dist/hooks.d.cts +1122 -1
- package/dist/hooks.d.ts +1122 -1
- package/dist/hooks.mjs +1053 -0
- package/dist/hooks.mjs.map +1 -1
- package/dist/index.cjs +2888 -7848
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1867 -9643
- package/dist/index.d.ts +1867 -9643
- package/dist/index.mjs +2891 -7851
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -3
- package/src/auth/context/AuthContext.tsx +8 -71
- package/src/auth/context/types.ts +1 -9
- package/src/auth/hooks/useAuthForm.ts +11 -7
- package/src/auth/hooks/useGithubAuth.ts +3 -3
- package/src/clients.ts +57 -0
- package/src/generated/cfg_accounts/_utils/fetchers/{cfg_accounts__accounts.ts → accounts.ts} +10 -2
- package/src/generated/cfg_accounts/_utils/fetchers/{cfg_accounts__accounts__auth.ts → accounts__auth.ts} +9 -1
- package/src/generated/cfg_accounts/_utils/fetchers/{cfg_accounts__accounts__oauth.ts → accounts__oauth.ts} +13 -5
- package/src/generated/cfg_accounts/_utils/fetchers/{cfg_accounts__accounts__user_profile.ts → accounts__user_profile.ts} +14 -6
- package/src/generated/cfg_accounts/_utils/fetchers/index.ts +12 -29
- package/src/generated/cfg_accounts/_utils/hooks/{cfg_accounts__accounts.ts → accounts.ts} +9 -1
- package/src/generated/cfg_accounts/_utils/hooks/{cfg_accounts__accounts__auth.ts → accounts__auth.ts} +9 -1
- package/src/generated/cfg_accounts/_utils/hooks/{cfg_accounts__accounts__oauth.ts → accounts__oauth.ts} +9 -1
- package/src/generated/cfg_accounts/_utils/hooks/{cfg_accounts__accounts__user_profile.ts → accounts__user_profile.ts} +9 -1
- package/src/generated/cfg_accounts/_utils/hooks/index.ts +12 -29
- package/src/generated/cfg_accounts/_utils/schemas/index.ts +8 -134
- package/src/generated/cfg_accounts/{cfg_accounts__accounts → accounts}/client.ts +1 -1
- package/src/generated/cfg_accounts/accounts/index.ts +10 -0
- package/src/generated/cfg_accounts/{cfg_accounts__accounts → accounts}/models.ts +8 -0
- package/src/generated/cfg_accounts/{cfg_accounts__accounts__auth → accounts__auth}/client.ts +1 -1
- package/src/generated/cfg_accounts/accounts__auth/index.ts +10 -0
- package/src/generated/cfg_accounts/accounts__auth/models.ts +25 -0
- package/src/generated/cfg_accounts/{cfg_accounts__accounts__oauth → accounts__oauth}/client.ts +1 -1
- package/src/generated/cfg_accounts/accounts__oauth/index.ts +10 -0
- package/src/generated/cfg_accounts/{cfg_accounts__accounts__oauth → accounts__oauth}/models.ts +8 -0
- package/src/generated/cfg_accounts/{cfg_accounts__accounts__user_profile → accounts__user_profile}/client.ts +1 -1
- package/src/generated/cfg_accounts/accounts__user_profile/index.ts +10 -0
- package/src/generated/cfg_accounts/{cfg_accounts__accounts__user_profile → accounts__user_profile}/models.ts +8 -0
- package/src/generated/cfg_accounts/api-instance.ts +8 -0
- package/src/generated/cfg_accounts/client.ts +12 -87
- package/src/generated/cfg_accounts/enums.ts +8 -96
- package/src/generated/cfg_accounts/errors.ts +8 -0
- package/src/generated/cfg_accounts/http.ts +8 -0
- package/src/generated/cfg_accounts/index.ts +28 -195
- package/src/generated/cfg_accounts/logger.ts +8 -0
- package/src/generated/cfg_accounts/retry.ts +8 -0
- package/src/generated/cfg_accounts/schema.json +246 -10265
- package/src/generated/cfg_accounts/storage.ts +8 -0
- package/src/generated/cfg_accounts/validation-events.ts +8 -0
- package/src/generated/{cfg_accounts/_utils/fetchers/cfg_accounts__centrifugo__centrifugo_admin_api.ts → cfg_centrifugo/_utils/fetchers/centrifugo__centrifugo_admin_api.ts} +14 -6
- package/src/generated/{cfg_accounts/_utils/fetchers/cfg_accounts__centrifugo__centrifugo_auth.ts → cfg_centrifugo/_utils/fetchers/centrifugo__centrifugo_auth.ts} +9 -1
- package/src/generated/{cfg_accounts/_utils/fetchers/cfg_accounts__centrifugo__centrifugo_monitoring.ts → cfg_centrifugo/_utils/fetchers/centrifugo__centrifugo_monitoring.ts} +13 -5
- package/src/generated/{cfg_accounts/_utils/fetchers/cfg_accounts__centrifugo__centrifugo_testing.ts → cfg_centrifugo/_utils/fetchers/centrifugo__centrifugo_testing.ts} +11 -3
- package/src/generated/cfg_centrifugo/_utils/fetchers/index.ts +39 -0
- package/src/generated/{cfg_accounts/_utils/hooks/cfg_accounts__centrifugo__centrifugo_admin_api.ts → cfg_centrifugo/_utils/hooks/centrifugo__centrifugo_admin_api.ts} +9 -1
- package/src/generated/{cfg_accounts/_utils/hooks/cfg_accounts__centrifugo__centrifugo_auth.ts → cfg_centrifugo/_utils/hooks/centrifugo__centrifugo_auth.ts} +9 -1
- package/src/generated/{cfg_accounts/_utils/hooks/cfg_accounts__centrifugo__centrifugo_monitoring.ts → cfg_centrifugo/_utils/hooks/centrifugo__centrifugo_monitoring.ts} +9 -1
- package/src/generated/{cfg_accounts/_utils/hooks/cfg_accounts__centrifugo__centrifugo_testing.ts → cfg_centrifugo/_utils/hooks/centrifugo__centrifugo_testing.ts} +9 -1
- package/src/generated/cfg_centrifugo/_utils/hooks/index.ts +39 -0
- package/src/generated/cfg_centrifugo/_utils/schemas/index.ts +61 -0
- package/src/generated/cfg_centrifugo/api-instance.ts +139 -0
- package/src/generated/{cfg_accounts/cfg_accounts__centrifugo__centrifugo_admin_api → cfg_centrifugo/centrifugo__centrifugo_admin_api}/client.ts +1 -1
- package/src/generated/cfg_centrifugo/centrifugo__centrifugo_admin_api/index.ts +10 -0
- package/src/generated/{cfg_accounts/cfg_accounts__centrifugo__centrifugo_admin_api → cfg_centrifugo/centrifugo__centrifugo_admin_api}/models.ts +8 -0
- package/src/generated/{cfg_accounts/cfg_accounts__centrifugo__centrifugo_auth → cfg_centrifugo/centrifugo__centrifugo_auth}/client.ts +1 -1
- package/src/generated/cfg_centrifugo/centrifugo__centrifugo_auth/index.ts +10 -0
- package/src/generated/{cfg_accounts/cfg_accounts__centrifugo__centrifugo_auth → cfg_centrifugo/centrifugo__centrifugo_auth}/models.ts +8 -0
- package/src/generated/{cfg_accounts/cfg_accounts__centrifugo__centrifugo_monitoring → cfg_centrifugo/centrifugo__centrifugo_monitoring}/client.ts +1 -1
- package/src/generated/cfg_centrifugo/centrifugo__centrifugo_monitoring/index.ts +10 -0
- package/src/generated/{cfg_accounts/cfg_accounts__centrifugo__centrifugo_monitoring → cfg_centrifugo/centrifugo__centrifugo_monitoring}/models.ts +8 -0
- package/src/generated/{cfg_accounts/cfg_accounts__centrifugo__centrifugo_testing → cfg_centrifugo/centrifugo__centrifugo_testing}/client.ts +1 -1
- package/src/generated/cfg_centrifugo/centrifugo__centrifugo_testing/index.ts +10 -0
- package/src/generated/{cfg_accounts/cfg_accounts__centrifugo__centrifugo_testing → cfg_centrifugo/centrifugo__centrifugo_testing}/models.ts +8 -0
- package/src/generated/cfg_centrifugo/client.ts +310 -0
- package/src/generated/cfg_centrifugo/errors.ts +124 -0
- package/src/generated/cfg_centrifugo/http.ts +111 -0
- package/src/generated/cfg_centrifugo/index.ts +301 -0
- package/src/generated/cfg_centrifugo/logger.ts +267 -0
- package/src/generated/cfg_centrifugo/retry.ts +183 -0
- package/src/generated/cfg_centrifugo/schema.json +2123 -0
- package/src/generated/cfg_centrifugo/storage.ts +169 -0
- package/src/generated/cfg_centrifugo/validation-events.ts +141 -0
- package/src/generated/cfg_webpush/_utils/fetchers/index.ts +36 -0
- package/src/generated/{cfg_accounts/_utils/fetchers/cfg_accounts__grpc__grpc_api_keys.ts → cfg_webpush/_utils/fetchers/webpush__web_push.ts} +45 -35
- package/src/generated/cfg_webpush/_utils/hooks/index.ts +36 -0
- package/src/generated/cfg_webpush/_utils/hooks/webpush__web_push.ts +86 -0
- package/src/generated/cfg_webpush/_utils/schemas/SendPushRequestRequest.schema.ts +22 -0
- package/src/generated/cfg_webpush/_utils/schemas/SendPushResponse.schema.ts +20 -0
- package/src/generated/cfg_webpush/_utils/schemas/SubscribeRequestRequest.schema.ts +20 -0
- package/src/generated/cfg_webpush/_utils/schemas/SubscribeResponse.schema.ts +21 -0
- package/src/generated/cfg_webpush/_utils/schemas/VapidPublicKeyResponse.schema.ts +19 -0
- package/src/generated/cfg_webpush/_utils/schemas/index.ts +31 -0
- package/src/generated/cfg_webpush/api-instance.ts +139 -0
- package/src/generated/cfg_webpush/client.ts +301 -0
- package/src/generated/cfg_webpush/errors.ts +124 -0
- package/src/generated/cfg_webpush/http.ts +111 -0
- package/src/generated/cfg_webpush/index.ts +280 -0
- package/src/generated/cfg_webpush/logger.ts +267 -0
- package/src/generated/cfg_webpush/retry.ts +183 -0
- package/src/generated/cfg_webpush/schema.json +302 -0
- package/src/generated/cfg_webpush/storage.ts +169 -0
- package/src/generated/cfg_webpush/validation-events.ts +141 -0
- package/src/generated/cfg_webpush/webpush__web_push/client.ts +45 -0
- package/src/generated/cfg_webpush/webpush__web_push/index.ts +10 -0
- package/src/generated/cfg_webpush/webpush__web_push/models.ts +72 -0
- package/src/hooks/accounts.ts +8 -0
- package/src/hooks/index.ts +10 -0
- package/src/hooks/webpush.ts +12 -0
- package/src/index.ts +11 -0
- package/src/server.ts +5 -8
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__dashboard__dashboard_activity.ts +0 -62
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__dashboard__dashboard_api_zones.ts +0 -106
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__dashboard__dashboard_charts.ts +0 -177
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__dashboard__dashboard_commands.ts +0 -179
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__dashboard__dashboard_config.ts +0 -92
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__dashboard__dashboard_overview.ts +0 -92
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__dashboard__dashboard_statistics.ts +0 -120
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__dashboard__dashboard_system.ts +0 -150
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__endpoints.ts +0 -164
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__grpc__grpc_configuration.ts +0 -150
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__grpc__grpc_monitoring.ts +0 -280
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__grpc__grpc_services.ts +0 -208
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__health.ts +0 -150
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__rq__rq_jobs.ts +0 -323
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__rq__rq_monitoring.ts +0 -164
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__rq__rq_queues.ts +0 -134
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__rq__rq_registries.ts +0 -436
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__rq__rq_schedules.ts +0 -266
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__rq__rq_testing.ts +0 -293
- package/src/generated/cfg_accounts/_utils/fetchers/cfg_accounts__rq__rq_workers.ts +0 -106
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__dashboard__dashboard_activity.ts +0 -50
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__dashboard__dashboard_api_zones.ts +0 -51
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__dashboard__dashboard_charts.ts +0 -79
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__dashboard__dashboard_commands.ts +0 -86
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__dashboard__dashboard_config.ts +0 -37
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__dashboard__dashboard_overview.ts +0 -37
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__dashboard__dashboard_statistics.ts +0 -65
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__dashboard__dashboard_system.ts +0 -52
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__endpoints.ts +0 -66
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__grpc__grpc_api_keys.ts +0 -67
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__grpc__grpc_configuration.ts +0 -52
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__grpc__grpc_monitoring.ts +0 -96
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__grpc__grpc_services.ts +0 -67
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__health.ts +0 -52
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__rq__rq_jobs.ts +0 -110
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__rq__rq_monitoring.ts +0 -66
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__rq__rq_queues.ts +0 -84
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__rq__rq_registries.ts +0 -136
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__rq__rq_schedules.ts +0 -92
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__rq__rq_testing.ts +0 -126
- package/src/generated/cfg_accounts/_utils/hooks/cfg_accounts__rq__rq_workers.ts +0 -51
- package/src/generated/cfg_accounts/_utils/schemas/APIZone.schema.ts +0 -29
- package/src/generated/cfg_accounts/_utils/schemas/APIZonesSummary.schema.ts +0 -22
- package/src/generated/cfg_accounts/_utils/schemas/ActivityEntry.schema.ts +0 -25
- package/src/generated/cfg_accounts/_utils/schemas/ActivityTrackerDay.schema.ts +0 -23
- package/src/generated/cfg_accounts/_utils/schemas/ApiKey.schema.ts +0 -30
- package/src/generated/cfg_accounts/_utils/schemas/ApiKeyStats.schema.ts +0 -22
- package/src/generated/cfg_accounts/_utils/schemas/AppStatistics.schema.ts +0 -21
- package/src/generated/cfg_accounts/_utils/schemas/AppStatisticsData.schema.ts +0 -23
- package/src/generated/cfg_accounts/_utils/schemas/AxesConfig.schema.ts +0 -35
- package/src/generated/cfg_accounts/_utils/schemas/CentrifugoConfig.schema.ts +0 -35
- package/src/generated/cfg_accounts/_utils/schemas/ChartData.schema.ts +0 -21
- package/src/generated/cfg_accounts/_utils/schemas/ChartDataset.schema.ts +0 -24
- package/src/generated/cfg_accounts/_utils/schemas/Command.schema.ts +0 -38
- package/src/generated/cfg_accounts/_utils/schemas/CommandCategory.schema.ts +0 -21
- package/src/generated/cfg_accounts/_utils/schemas/CommandExecuteRequestRequest.schema.ts +0 -21
- package/src/generated/cfg_accounts/_utils/schemas/CommandHelpResponse.schema.ts +0 -25
- package/src/generated/cfg_accounts/_utils/schemas/CommandsSummary.schema.ts +0 -26
- package/src/generated/cfg_accounts/_utils/schemas/ConfigData.schema.ts +0 -27
- package/src/generated/cfg_accounts/_utils/schemas/ConfigMeta.schema.ts +0 -20
- package/src/generated/cfg_accounts/_utils/schemas/ConfigValidation.schema.ts +0 -24
- package/src/generated/cfg_accounts/_utils/schemas/ConstanceConfig.schema.ts +0 -24
- package/src/generated/cfg_accounts/_utils/schemas/DRFConfig.schema.ts +0 -20
- package/src/generated/cfg_accounts/_utils/schemas/DRFHealthCheck.schema.ts +0 -25
- package/src/generated/cfg_accounts/_utils/schemas/DashboardOverview.schema.ts +0 -35
- package/src/generated/cfg_accounts/_utils/schemas/DatabaseConfig.schema.ts +0 -31
- package/src/generated/cfg_accounts/_utils/schemas/DjangoConfig.schema.ts +0 -93
- package/src/generated/cfg_accounts/_utils/schemas/DjangoRQConfig.schema.ts +0 -27
- package/src/generated/cfg_accounts/_utils/schemas/EmailConfig.schema.ts +0 -28
- package/src/generated/cfg_accounts/_utils/schemas/Endpoint.schema.ts +0 -35
- package/src/generated/cfg_accounts/_utils/schemas/EndpointsStatus.schema.ts +0 -28
- package/src/generated/cfg_accounts/_utils/schemas/GRPCConfig.schema.ts +0 -26
- package/src/generated/cfg_accounts/_utils/schemas/GRPCConfigDashboard.schema.ts +0 -33
- package/src/generated/cfg_accounts/_utils/schemas/GRPCFeatures.schema.ts +0 -22
- package/src/generated/cfg_accounts/_utils/schemas/GRPCFrameworkConfig.schema.ts +0 -22
- package/src/generated/cfg_accounts/_utils/schemas/GRPCHealthCheck.schema.ts +0 -23
- package/src/generated/cfg_accounts/_utils/schemas/GRPCInterceptorInfo.schema.ts +0 -20
- package/src/generated/cfg_accounts/_utils/schemas/GRPCOverviewStats.schema.ts +0 -29
- package/src/generated/cfg_accounts/_utils/schemas/GRPCRegisteredService.schema.ts +0 -24
- package/src/generated/cfg_accounts/_utils/schemas/GRPCServerConfig.schema.ts +0 -23
- package/src/generated/cfg_accounts/_utils/schemas/GRPCServerInfo.schema.ts +0 -28
- package/src/generated/cfg_accounts/_utils/schemas/GRPCServerStatus.schema.ts +0 -30
- package/src/generated/cfg_accounts/_utils/schemas/GRPCServiceInfo.schema.ts +0 -22
- package/src/generated/cfg_accounts/_utils/schemas/GRPCServiceRegistryMethodStats.schema.ts +0 -26
- package/src/generated/cfg_accounts/_utils/schemas/GRPCStats.schema.ts +0 -21
- package/src/generated/cfg_accounts/_utils/schemas/GitHubOAuthConfig.schema.ts +0 -30
- package/src/generated/cfg_accounts/_utils/schemas/JWTConfig.schema.ts +0 -21
- package/src/generated/cfg_accounts/_utils/schemas/JobActionResponse.schema.ts +0 -26
- package/src/generated/cfg_accounts/_utils/schemas/JobDetail.schema.ts +0 -40
- package/src/generated/cfg_accounts/_utils/schemas/JobList.schema.ts +0 -28
- package/src/generated/cfg_accounts/_utils/schemas/JobListRequest.schema.ts +0 -28
- package/src/generated/cfg_accounts/_utils/schemas/MethodInfo.schema.ts +0 -24
- package/src/generated/cfg_accounts/_utils/schemas/MethodList.schema.ts +0 -21
- package/src/generated/cfg_accounts/_utils/schemas/MethodSummary.schema.ts +0 -25
- package/src/generated/cfg_accounts/_utils/schemas/ModelStatistics.schema.ts +0 -23
- package/src/generated/cfg_accounts/_utils/schemas/NextJSAdminConfig.schema.ts +0 -21
- package/src/generated/cfg_accounts/_utils/schemas/NgrokConfig.schema.ts +0 -22
- package/src/generated/cfg_accounts/_utils/schemas/OpenAPIClientConfig.schema.ts +0 -26
- package/src/generated/cfg_accounts/_utils/schemas/PaginatedApiKeyList.schema.ts +0 -24
- package/src/generated/cfg_accounts/_utils/schemas/PaginatedJobListList.schema.ts +0 -24
- package/src/generated/cfg_accounts/_utils/schemas/PaginatedRecentRequestList.schema.ts +0 -24
- package/src/generated/cfg_accounts/_utils/schemas/PaginatedScheduledJobList.schema.ts +0 -24
- package/src/generated/cfg_accounts/_utils/schemas/PaginatedServiceSummaryList.schema.ts +0 -24
- package/src/generated/cfg_accounts/_utils/schemas/PaymentsConfig.schema.ts +0 -21
- package/src/generated/cfg_accounts/_utils/schemas/PaymentsNowPayments.schema.ts +0 -22
- package/src/generated/cfg_accounts/_utils/schemas/QueueDetail.schema.ts +0 -34
- package/src/generated/cfg_accounts/_utils/schemas/QueueStats.schema.ts +0 -31
- package/src/generated/cfg_accounts/_utils/schemas/QuickAction.schema.ts +0 -29
- package/src/generated/cfg_accounts/_utils/schemas/QuickHealth.schema.ts +0 -21
- package/src/generated/cfg_accounts/_utils/schemas/RQConfig.schema.ts +0 -30
- package/src/generated/cfg_accounts/_utils/schemas/RQHealthCheck.schema.ts +0 -31
- package/src/generated/cfg_accounts/_utils/schemas/RQSchedule.schema.ts +0 -26
- package/src/generated/cfg_accounts/_utils/schemas/RecentError.schema.ts +0 -22
- package/src/generated/cfg_accounts/_utils/schemas/RecentRequest.schema.ts +0 -33
- package/src/generated/cfg_accounts/_utils/schemas/RecentUser.schema.ts +0 -26
- package/src/generated/cfg_accounts/_utils/schemas/RedisQueueConfig.schema.ts +0 -29
- package/src/generated/cfg_accounts/_utils/schemas/RunDemoRequestRequest.schema.ts +0 -24
- package/src/generated/cfg_accounts/_utils/schemas/ScheduleActionResponse.schema.ts +0 -22
- package/src/generated/cfg_accounts/_utils/schemas/ScheduleCreateRequest.schema.ts +0 -39
- package/src/generated/cfg_accounts/_utils/schemas/ScheduleInfo.schema.ts +0 -27
- package/src/generated/cfg_accounts/_utils/schemas/ScheduledJob.schema.ts +0 -32
- package/src/generated/cfg_accounts/_utils/schemas/ServiceDetail.schema.ts +0 -31
- package/src/generated/cfg_accounts/_utils/schemas/ServiceMethods.schema.ts +0 -22
- package/src/generated/cfg_accounts/_utils/schemas/ServiceStats.schema.ts +0 -24
- package/src/generated/cfg_accounts/_utils/schemas/ServiceSummary.schema.ts +0 -26
- package/src/generated/cfg_accounts/_utils/schemas/SpectacularConfig.schema.ts +0 -21
- package/src/generated/cfg_accounts/_utils/schemas/StatCard.schema.ts +0 -30
- package/src/generated/cfg_accounts/_utils/schemas/StressTestRequestRequest.schema.ts +0 -23
- package/src/generated/cfg_accounts/_utils/schemas/SystemHealth.schema.ts +0 -24
- package/src/generated/cfg_accounts/_utils/schemas/SystemHealthItem.schema.ts +0 -28
- package/src/generated/cfg_accounts/_utils/schemas/SystemMetrics.schema.ts +0 -25
- package/src/generated/cfg_accounts/_utils/schemas/TelegramConfig.schema.ts +0 -28
- package/src/generated/cfg_accounts/_utils/schemas/TestScenario.schema.ts +0 -25
- package/src/generated/cfg_accounts/_utils/schemas/TestingActionResponse.schema.ts +0 -23
- package/src/generated/cfg_accounts/_utils/schemas/URLPattern.schema.ts +0 -26
- package/src/generated/cfg_accounts/_utils/schemas/URLsList.schema.ts +0 -25
- package/src/generated/cfg_accounts/_utils/schemas/UserStatistics.schema.ts +0 -22
- package/src/generated/cfg_accounts/_utils/schemas/Worker.schema.ts +0 -31
- package/src/generated/cfg_accounts/_utils/schemas/WorkerStats.schema.ts +0 -31
- package/src/generated/cfg_accounts/_utils/schemas/ZonesSummaryStats.schema.ts +0 -21
- package/src/generated/cfg_accounts/cfg_accounts__accounts/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__accounts__auth/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__accounts__auth/models.ts +0 -17
- package/src/generated/cfg_accounts/cfg_accounts__accounts__oauth/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__accounts__user_profile/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__centrifugo__centrifugo_admin_api/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__centrifugo__centrifugo_auth/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__centrifugo__centrifugo_monitoring/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__centrifugo__centrifugo_testing/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_activity/client.ts +0 -45
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_activity/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_activity/models.ts +0 -0
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_api_zones/client.ts +0 -34
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_api_zones/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_api_zones/models.ts +0 -40
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_charts/client.ts +0 -98
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_charts/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_charts/models.ts +0 -24
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_commands/client.ts +0 -55
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_commands/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_commands/models.ts +0 -80
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_config/client.ts +0 -25
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_config/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_config/models.ts +0 -412
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_overview/client.ts +0 -25
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_overview/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_overview/models.ts +0 -228
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_statistics/client.ts +0 -44
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_statistics/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_statistics/models.ts +0 -16
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_system/client.ts +0 -34
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_system/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__dashboard__dashboard_system/models.ts +0 -69
- package/src/generated/cfg_accounts/cfg_accounts__endpoints/client.ts +0 -42
- package/src/generated/cfg_accounts/cfg_accounts__endpoints/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__endpoints/models.ts +0 -112
- package/src/generated/cfg_accounts/cfg_accounts__grpc__grpc_api_keys/client.ts +0 -56
- package/src/generated/cfg_accounts/cfg_accounts__grpc__grpc_api_keys/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__grpc__grpc_api_keys/models.ts +0 -73
- package/src/generated/cfg_accounts/cfg_accounts__grpc__grpc_configuration/client.ts +0 -35
- package/src/generated/cfg_accounts/cfg_accounts__grpc__grpc_configuration/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__grpc__grpc_configuration/models.ts +0 -128
- package/src/generated/cfg_accounts/cfg_accounts__grpc__grpc_monitoring/client.ts +0 -109
- package/src/generated/cfg_accounts/cfg_accounts__grpc__grpc_monitoring/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__grpc__grpc_monitoring/models.ts +0 -213
- package/src/generated/cfg_accounts/cfg_accounts__grpc__grpc_services/client.ts +0 -56
- package/src/generated/cfg_accounts/cfg_accounts__grpc__grpc_services/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__grpc__grpc_services/models.ts +0 -189
- package/src/generated/cfg_accounts/cfg_accounts__health/client.ts +0 -30
- package/src/generated/cfg_accounts/cfg_accounts__health/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__health/models.ts +0 -36
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_jobs/client.ts +0 -76
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_jobs/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_jobs/models.ts +0 -127
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_monitoring/client.ts +0 -45
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_monitoring/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_monitoring/models.ts +0 -66
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_queues/client.ts +0 -78
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_queues/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_queues/models.ts +0 -33
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_registries/client.ts +0 -164
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_registries/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_registries/models.ts +0 -82
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_schedules/client.ts +0 -91
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_schedules/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_schedules/models.ts +0 -109
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_testing/client.ts +0 -96
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_testing/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_testing/models.ts +0 -68
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_workers/client.ts +0 -46
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_workers/index.ts +0 -2
- package/src/generated/cfg_accounts/cfg_accounts__rq__rq_workers/models.ts +0 -52
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoChannelInfo.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoChannelsRequestRequest.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoChannelsResponse.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoChannelsResult.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoClientInfo.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoError.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoHealthCheck.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoHistoryRequestRequest.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoHistoryResponse.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoHistoryResult.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoInfoResponse.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoInfoResult.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoMetrics.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoNodeInfo.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoOverviewStats.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoPresenceRequestRequest.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoPresenceResponse.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoPresenceResult.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoPresenceStatsRequestRequest.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoPresenceStatsResponse.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoPresenceStatsResult.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoProcess.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoPublication.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/CentrifugoStreamPosition.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/ChannelList.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/ChannelStats.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/ConnectionTokenResponse.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/ManualAckRequestRequest.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/ManualAckResponse.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/PaginatedPublishList.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/Publish.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/PublishTestRequestRequest.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/PublishTestResponse.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/TimelineItem.schema.ts +0 -0
- /package/src/generated/{cfg_accounts → cfg_centrifugo}/_utils/schemas/TimelineResponse.schema.ts +0 -0
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by DjangoCFG.
|
|
5
|
+
* Any manual changes will be lost when the code is regenerated.
|
|
6
|
+
*
|
|
7
|
+
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
8
|
+
*/
|
|
1
9
|
/**
|
|
2
10
|
* Django CFG API - API Client with JWT Management
|
|
3
11
|
*
|
|
@@ -42,120 +50,20 @@ import {
|
|
|
42
50
|
import type { RetryConfig } from "./retry";
|
|
43
51
|
import type { LoggerConfig } from "./logger";
|
|
44
52
|
import { APILogger } from "./logger";
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
|
|
50
|
-
import { CfgAccountsDashboardApiZones } from "./cfg_accounts__dashboard__dashboard_api_zones/client";
|
|
51
|
-
import { CfgAccountsDashboardActivity } from "./cfg_accounts__dashboard__dashboard_activity/client";
|
|
52
|
-
import { CfgAccountsDashboardCharts } from "./cfg_accounts__dashboard__dashboard_charts/client";
|
|
53
|
-
import { CfgAccountsDashboardCommands } from "./cfg_accounts__dashboard__dashboard_commands/client";
|
|
54
|
-
import { CfgAccountsDashboardConfig } from "./cfg_accounts__dashboard__dashboard_config/client";
|
|
55
|
-
import { CfgAccountsDashboardOverview } from "./cfg_accounts__dashboard__dashboard_overview/client";
|
|
56
|
-
import { CfgAccountsDashboardStatistics } from "./cfg_accounts__dashboard__dashboard_statistics/client";
|
|
57
|
-
import { CfgAccountsDashboardSystem } from "./cfg_accounts__dashboard__dashboard_system/client";
|
|
58
|
-
import { CfgAccountsOauth } from "./cfg_accounts__accounts__oauth/client";
|
|
59
|
-
import { CfgAccountsRqJobs } from "./cfg_accounts__rq__rq_jobs/client";
|
|
60
|
-
import { CfgAccountsRqMonitoring } from "./cfg_accounts__rq__rq_monitoring/client";
|
|
61
|
-
import { CfgAccountsRqQueues } from "./cfg_accounts__rq__rq_queues/client";
|
|
62
|
-
import { CfgAccountsRqRegistries } from "./cfg_accounts__rq__rq_registries/client";
|
|
63
|
-
import { CfgAccountsRqSchedules } from "./cfg_accounts__rq__rq_schedules/client";
|
|
64
|
-
import { CfgAccountsRqTesting } from "./cfg_accounts__rq__rq_testing/client";
|
|
65
|
-
import { CfgAccountsRqWorkers } from "./cfg_accounts__rq__rq_workers/client";
|
|
66
|
-
import { CfgAccountsUserProfile } from "./cfg_accounts__accounts__user_profile/client";
|
|
67
|
-
import { CfgAccountsAccounts } from "./cfg_accounts__accounts/client";
|
|
68
|
-
import { CfgAccountsEndpoints } from "./cfg_accounts__endpoints/client";
|
|
69
|
-
import { CfgAccountsGrpcApiKeys } from "./cfg_accounts__grpc__grpc_api_keys/client";
|
|
70
|
-
import { CfgAccountsGrpcConfiguration } from "./cfg_accounts__grpc__grpc_configuration/client";
|
|
71
|
-
import { CfgAccountsGrpcMonitoring } from "./cfg_accounts__grpc__grpc_monitoring/client";
|
|
72
|
-
import { CfgAccountsGrpcServices } from "./cfg_accounts__grpc__grpc_services/client";
|
|
73
|
-
import { CfgAccountsHealth } from "./cfg_accounts__health/client";
|
|
74
|
-
export * as CfgAccountsAuthTypes from "./cfg_accounts__accounts__auth/models";
|
|
75
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
76
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
77
|
-
export * as CfgAccountsCentrifugoAdminApiTypes from "./cfg_accounts__centrifugo__centrifugo_admin_api/models";
|
|
78
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
79
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
80
|
-
export * as CfgAccountsCentrifugoAuthTypes from "./cfg_accounts__centrifugo__centrifugo_auth/models";
|
|
81
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
82
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
83
|
-
export * as CfgAccountsCentrifugoMonitoringTypes from "./cfg_accounts__centrifugo__centrifugo_monitoring/models";
|
|
84
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
85
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
86
|
-
export * as CfgAccountsCentrifugoTestingTypes from "./cfg_accounts__centrifugo__centrifugo_testing/models";
|
|
87
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
88
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
89
|
-
export * as CfgAccountsDashboardApiZonesTypes from "./cfg_accounts__dashboard__dashboard_api_zones/models";
|
|
90
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
91
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
92
|
-
export * as CfgAccountsDashboardActivityTypes from "./cfg_accounts__dashboard__dashboard_activity/models";
|
|
93
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
94
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
95
|
-
export * as CfgAccountsDashboardChartsTypes from "./cfg_accounts__dashboard__dashboard_charts/models";
|
|
96
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
97
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
98
|
-
export * as CfgAccountsDashboardCommandsTypes from "./cfg_accounts__dashboard__dashboard_commands/models";
|
|
99
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
100
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
101
|
-
export * as CfgAccountsDashboardConfigTypes from "./cfg_accounts__dashboard__dashboard_config/models";
|
|
102
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
103
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
104
|
-
export * as CfgAccountsDashboardOverviewTypes from "./cfg_accounts__dashboard__dashboard_overview/models";
|
|
105
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
106
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
107
|
-
export * as CfgAccountsDashboardStatisticsTypes from "./cfg_accounts__dashboard__dashboard_statistics/models";
|
|
108
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
109
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
110
|
-
export * as CfgAccountsDashboardSystemTypes from "./cfg_accounts__dashboard__dashboard_system/models";
|
|
111
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
112
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
113
|
-
export * as CfgAccountsOauthTypes from "./cfg_accounts__accounts__oauth/models";
|
|
114
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
115
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
116
|
-
export * as CfgAccountsRqJobsTypes from "./cfg_accounts__rq__rq_jobs/models";
|
|
117
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
118
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
119
|
-
export * as CfgAccountsRqMonitoringTypes from "./cfg_accounts__rq__rq_monitoring/models";
|
|
120
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
121
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
122
|
-
export * as CfgAccountsRqQueuesTypes from "./cfg_accounts__rq__rq_queues/models";
|
|
123
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
124
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
125
|
-
export * as CfgAccountsRqRegistriesTypes from "./cfg_accounts__rq__rq_registries/models";
|
|
126
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
127
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
128
|
-
export * as CfgAccountsRqSchedulesTypes from "./cfg_accounts__rq__rq_schedules/models";
|
|
129
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
130
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
131
|
-
export * as CfgAccountsRqTestingTypes from "./cfg_accounts__rq__rq_testing/models";
|
|
132
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
133
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
134
|
-
export * as CfgAccountsRqWorkersTypes from "./cfg_accounts__rq__rq_workers/models";
|
|
135
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
136
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
137
|
-
export * as CfgAccountsUserProfileTypes from "./cfg_accounts__accounts__user_profile/models";
|
|
138
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
139
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
140
|
-
export * as CfgAccountsAccountsTypes from "./cfg_accounts__accounts/models";
|
|
141
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
142
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
143
|
-
export * as CfgAccountsEndpointsTypes from "./cfg_accounts__endpoints/models";
|
|
144
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
145
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
146
|
-
export * as CfgAccountsGrpcApiKeysTypes from "./cfg_accounts__grpc__grpc_api_keys/models";
|
|
147
|
-
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
148
|
-
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
149
|
-
export * as CfgAccountsGrpcConfigurationTypes from "./cfg_accounts__grpc__grpc_configuration/models";
|
|
53
|
+
import { Auth } from "./accounts__auth/client";
|
|
54
|
+
import { Oauth } from "./accounts__oauth/client";
|
|
55
|
+
import { UserProfile } from "./accounts__user_profile/client";
|
|
56
|
+
import { Accounts } from "./accounts/client";
|
|
57
|
+
export * as AuthTypes from "./accounts__auth/models";
|
|
150
58
|
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
151
59
|
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
152
|
-
export * as
|
|
60
|
+
export * as OauthTypes from "./accounts__oauth/models";
|
|
153
61
|
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
154
62
|
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
155
|
-
export * as
|
|
63
|
+
export * as UserProfileTypes from "./accounts__user_profile/models";
|
|
156
64
|
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
157
65
|
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
158
|
-
export * as
|
|
66
|
+
export * as AccountsTypes from "./accounts/models";
|
|
159
67
|
// Note: Direct exports (export * from) are removed to avoid duplicate type conflicts
|
|
160
68
|
// Use namespace exports like CfgAccountsTypes.User or import from specific modules
|
|
161
69
|
export * as Enums from "./enums";
|
|
@@ -230,35 +138,10 @@ export class API {
|
|
|
230
138
|
private options?: APIOptions;
|
|
231
139
|
|
|
232
140
|
// Sub-clients
|
|
233
|
-
public
|
|
234
|
-
public
|
|
235
|
-
public
|
|
236
|
-
public
|
|
237
|
-
public cfg_accounts_centrifugo_testing!: CfgAccountsCentrifugoTesting;
|
|
238
|
-
public cfg_accounts_dashboard_api_zones!: CfgAccountsDashboardApiZones;
|
|
239
|
-
public cfg_accounts_dashboard_activity!: CfgAccountsDashboardActivity;
|
|
240
|
-
public cfg_accounts_dashboard_charts!: CfgAccountsDashboardCharts;
|
|
241
|
-
public cfg_accounts_dashboard_commands!: CfgAccountsDashboardCommands;
|
|
242
|
-
public cfg_accounts_dashboard_config!: CfgAccountsDashboardConfig;
|
|
243
|
-
public cfg_accounts_dashboard_overview!: CfgAccountsDashboardOverview;
|
|
244
|
-
public cfg_accounts_dashboard_statistics!: CfgAccountsDashboardStatistics;
|
|
245
|
-
public cfg_accounts_dashboard_system!: CfgAccountsDashboardSystem;
|
|
246
|
-
public cfg_accounts_oauth!: CfgAccountsOauth;
|
|
247
|
-
public cfg_accounts_rq_jobs!: CfgAccountsRqJobs;
|
|
248
|
-
public cfg_accounts_rq_monitoring!: CfgAccountsRqMonitoring;
|
|
249
|
-
public cfg_accounts_rq_queues!: CfgAccountsRqQueues;
|
|
250
|
-
public cfg_accounts_rq_registries!: CfgAccountsRqRegistries;
|
|
251
|
-
public cfg_accounts_rq_schedules!: CfgAccountsRqSchedules;
|
|
252
|
-
public cfg_accounts_rq_testing!: CfgAccountsRqTesting;
|
|
253
|
-
public cfg_accounts_rq_workers!: CfgAccountsRqWorkers;
|
|
254
|
-
public cfg_accounts_user_profile!: CfgAccountsUserProfile;
|
|
255
|
-
public cfg_accounts_accounts!: CfgAccountsAccounts;
|
|
256
|
-
public cfg_accounts_endpoints!: CfgAccountsEndpoints;
|
|
257
|
-
public cfg_accounts_grpc_api_keys!: CfgAccountsGrpcApiKeys;
|
|
258
|
-
public cfg_accounts_grpc_configuration!: CfgAccountsGrpcConfiguration;
|
|
259
|
-
public cfg_accounts_grpc_monitoring!: CfgAccountsGrpcMonitoring;
|
|
260
|
-
public cfg_accounts_grpc_services!: CfgAccountsGrpcServices;
|
|
261
|
-
public cfg_accounts_health!: CfgAccountsHealth;
|
|
141
|
+
public auth!: Auth;
|
|
142
|
+
public oauth!: Oauth;
|
|
143
|
+
public user_profile!: UserProfile;
|
|
144
|
+
public accounts!: Accounts;
|
|
262
145
|
|
|
263
146
|
constructor(baseUrl: string, options?: APIOptions) {
|
|
264
147
|
this.baseUrl = baseUrl;
|
|
@@ -282,35 +165,10 @@ export class API {
|
|
|
282
165
|
this._injectAuthHeader();
|
|
283
166
|
|
|
284
167
|
// Initialize sub-clients from APIClient
|
|
285
|
-
this.
|
|
286
|
-
this.
|
|
287
|
-
this.
|
|
288
|
-
this.
|
|
289
|
-
this.cfg_accounts_centrifugo_testing = this._client.cfg_accounts_centrifugo_testing;
|
|
290
|
-
this.cfg_accounts_dashboard_api_zones = this._client.cfg_accounts_dashboard_api_zones;
|
|
291
|
-
this.cfg_accounts_dashboard_activity = this._client.cfg_accounts_dashboard_activity;
|
|
292
|
-
this.cfg_accounts_dashboard_charts = this._client.cfg_accounts_dashboard_charts;
|
|
293
|
-
this.cfg_accounts_dashboard_commands = this._client.cfg_accounts_dashboard_commands;
|
|
294
|
-
this.cfg_accounts_dashboard_config = this._client.cfg_accounts_dashboard_config;
|
|
295
|
-
this.cfg_accounts_dashboard_overview = this._client.cfg_accounts_dashboard_overview;
|
|
296
|
-
this.cfg_accounts_dashboard_statistics = this._client.cfg_accounts_dashboard_statistics;
|
|
297
|
-
this.cfg_accounts_dashboard_system = this._client.cfg_accounts_dashboard_system;
|
|
298
|
-
this.cfg_accounts_oauth = this._client.cfg_accounts_oauth;
|
|
299
|
-
this.cfg_accounts_rq_jobs = this._client.cfg_accounts_rq_jobs;
|
|
300
|
-
this.cfg_accounts_rq_monitoring = this._client.cfg_accounts_rq_monitoring;
|
|
301
|
-
this.cfg_accounts_rq_queues = this._client.cfg_accounts_rq_queues;
|
|
302
|
-
this.cfg_accounts_rq_registries = this._client.cfg_accounts_rq_registries;
|
|
303
|
-
this.cfg_accounts_rq_schedules = this._client.cfg_accounts_rq_schedules;
|
|
304
|
-
this.cfg_accounts_rq_testing = this._client.cfg_accounts_rq_testing;
|
|
305
|
-
this.cfg_accounts_rq_workers = this._client.cfg_accounts_rq_workers;
|
|
306
|
-
this.cfg_accounts_user_profile = this._client.cfg_accounts_user_profile;
|
|
307
|
-
this.cfg_accounts_accounts = this._client.cfg_accounts_accounts;
|
|
308
|
-
this.cfg_accounts_endpoints = this._client.cfg_accounts_endpoints;
|
|
309
|
-
this.cfg_accounts_grpc_api_keys = this._client.cfg_accounts_grpc_api_keys;
|
|
310
|
-
this.cfg_accounts_grpc_configuration = this._client.cfg_accounts_grpc_configuration;
|
|
311
|
-
this.cfg_accounts_grpc_monitoring = this._client.cfg_accounts_grpc_monitoring;
|
|
312
|
-
this.cfg_accounts_grpc_services = this._client.cfg_accounts_grpc_services;
|
|
313
|
-
this.cfg_accounts_health = this._client.cfg_accounts_health;
|
|
168
|
+
this.auth = this._client.auth;
|
|
169
|
+
this.oauth = this._client.oauth;
|
|
170
|
+
this.user_profile = this._client.user_profile;
|
|
171
|
+
this.accounts = this._client.accounts;
|
|
314
172
|
}
|
|
315
173
|
|
|
316
174
|
private _loadTokensFromStorage(): void {
|
|
@@ -328,35 +186,10 @@ export class API {
|
|
|
328
186
|
this._injectAuthHeader();
|
|
329
187
|
|
|
330
188
|
// Reinitialize sub-clients
|
|
331
|
-
this.
|
|
332
|
-
this.
|
|
333
|
-
this.
|
|
334
|
-
this.
|
|
335
|
-
this.cfg_accounts_centrifugo_testing = this._client.cfg_accounts_centrifugo_testing;
|
|
336
|
-
this.cfg_accounts_dashboard_api_zones = this._client.cfg_accounts_dashboard_api_zones;
|
|
337
|
-
this.cfg_accounts_dashboard_activity = this._client.cfg_accounts_dashboard_activity;
|
|
338
|
-
this.cfg_accounts_dashboard_charts = this._client.cfg_accounts_dashboard_charts;
|
|
339
|
-
this.cfg_accounts_dashboard_commands = this._client.cfg_accounts_dashboard_commands;
|
|
340
|
-
this.cfg_accounts_dashboard_config = this._client.cfg_accounts_dashboard_config;
|
|
341
|
-
this.cfg_accounts_dashboard_overview = this._client.cfg_accounts_dashboard_overview;
|
|
342
|
-
this.cfg_accounts_dashboard_statistics = this._client.cfg_accounts_dashboard_statistics;
|
|
343
|
-
this.cfg_accounts_dashboard_system = this._client.cfg_accounts_dashboard_system;
|
|
344
|
-
this.cfg_accounts_oauth = this._client.cfg_accounts_oauth;
|
|
345
|
-
this.cfg_accounts_rq_jobs = this._client.cfg_accounts_rq_jobs;
|
|
346
|
-
this.cfg_accounts_rq_monitoring = this._client.cfg_accounts_rq_monitoring;
|
|
347
|
-
this.cfg_accounts_rq_queues = this._client.cfg_accounts_rq_queues;
|
|
348
|
-
this.cfg_accounts_rq_registries = this._client.cfg_accounts_rq_registries;
|
|
349
|
-
this.cfg_accounts_rq_schedules = this._client.cfg_accounts_rq_schedules;
|
|
350
|
-
this.cfg_accounts_rq_testing = this._client.cfg_accounts_rq_testing;
|
|
351
|
-
this.cfg_accounts_rq_workers = this._client.cfg_accounts_rq_workers;
|
|
352
|
-
this.cfg_accounts_user_profile = this._client.cfg_accounts_user_profile;
|
|
353
|
-
this.cfg_accounts_accounts = this._client.cfg_accounts_accounts;
|
|
354
|
-
this.cfg_accounts_endpoints = this._client.cfg_accounts_endpoints;
|
|
355
|
-
this.cfg_accounts_grpc_api_keys = this._client.cfg_accounts_grpc_api_keys;
|
|
356
|
-
this.cfg_accounts_grpc_configuration = this._client.cfg_accounts_grpc_configuration;
|
|
357
|
-
this.cfg_accounts_grpc_monitoring = this._client.cfg_accounts_grpc_monitoring;
|
|
358
|
-
this.cfg_accounts_grpc_services = this._client.cfg_accounts_grpc_services;
|
|
359
|
-
this.cfg_accounts_health = this._client.cfg_accounts_health;
|
|
189
|
+
this.auth = this._client.auth;
|
|
190
|
+
this.oauth = this._client.oauth;
|
|
191
|
+
this.user_profile = this._client.user_profile;
|
|
192
|
+
this.accounts = this._client.accounts;
|
|
360
193
|
}
|
|
361
194
|
|
|
362
195
|
private _injectAuthHeader(): void {
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by DjangoCFG.
|
|
5
|
+
* Any manual changes will be lost when the code is regenerated.
|
|
6
|
+
*
|
|
7
|
+
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
8
|
+
*/
|
|
1
9
|
/**
|
|
2
10
|
* API Logger with Consola
|
|
3
11
|
* Beautiful console logging for API requests and responses
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AUTO-GENERATED FILE - DO NOT EDIT
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically generated by DjangoCFG.
|
|
5
|
+
* Any manual changes will be lost when the code is regenerated.
|
|
6
|
+
*
|
|
7
|
+
* @see https://djangocfg.com/docs/features/modules/django-client/overview/
|
|
8
|
+
*/
|
|
1
9
|
/**
|
|
2
10
|
* Retry Configuration and Utilities
|
|
3
11
|
*
|