mudbase 1.2.8 → 1.2.10
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.
- checksums.yaml +4 -4
- data/docs/AuthApi.md +130 -0
- data/docs/AuthResendVerificationRequest.md +20 -0
- data/docs/{UsersVerifyEmailRequest.md → AuthVerifyEmailRequest.md} +2 -2
- data/docs/ChatApi.md +149 -5
- data/docs/ChatEditMessage200ResponseData.md +4 -0
- data/docs/ChatEditMessageRequest.md +4 -2
- data/docs/ChatEditMessageRequestE2ee.md +28 -0
- data/docs/ChatGetChatE2eeParticipantKeys200Response.md +20 -0
- data/docs/ChatGetChatE2eeParticipantKeys200ResponseDataInner.md +24 -0
- data/docs/ChatPutChatE2eeKey200Response.md +20 -0
- data/docs/ChatPutChatE2eeKey200ResponseData.md +22 -0
- data/docs/ChatPutChatE2eeKeyRequest.md +20 -0
- data/docs/ChatSendMessageRequest.md +3 -1
- data/docs/ChatSendMessageRequestE2ee.md +28 -0
- data/docs/IntegrationsApi.md +4 -4
- data/docs/MultiRoleAddRoleRequest.md +11 -1
- data/docs/MultiRoleApi.md +220 -5
- data/docs/MultiRoleApplyRoleFeaturePresetRequest.md +18 -0
- data/docs/{WalletTestWebhook200Response.md → MultiRoleGetPermissionsMatrix200Response.md} +2 -2
- data/docs/MultiRoleSimulateAppPermissionsRequest.md +26 -0
- data/docs/MultiRoleUpdateCollectionPermissionsRequest.md +5 -1
- data/docs/MultiRoleUpdateRoleRequest.md +3 -1
- data/docs/MultiRoleUpdateSettingsRequestSettings.md +3 -1
- data/docs/OrganizationsAddDomainRequest.md +20 -0
- data/docs/OrganizationsApi.md +516 -0
- data/docs/OrganizationsPatchDomainRequest.md +20 -0
- data/docs/OrganizationsReportDomainPlatformReadyRequest.md +18 -0
- data/docs/OrganizationsSetPrimaryDomainRequest.md +18 -0
- data/docs/UsersApi.md +6 -6
- data/docs/WalletApi.md +4 -4
- data/lib/mudbase/api/auth_api.rb +138 -2
- data/lib/mudbase/api/billing_api.rb +2 -2
- data/lib/mudbase/api/chat_api.rb +151 -8
- data/lib/mudbase/api/collections_api.rb +2 -2
- data/lib/mudbase/api/compliance_api.rb +2 -2
- data/lib/mudbase/api/data_api.rb +2 -2
- data/lib/mudbase/api/functions_api.rb +2 -2
- data/lib/mudbase/api/health_api.rb +2 -2
- data/lib/mudbase/api/integrations_api.rb +5 -5
- data/lib/mudbase/api/messaging_api.rb +2 -2
- data/lib/mudbase/api/multi_role_api.rb +223 -10
- data/lib/mudbase/api/organizations_api.rb +547 -0
- data/lib/mudbase/api/realtime_analytics_api.rb +2 -2
- data/lib/mudbase/api/role_elevation_api.rb +2 -2
- data/lib/mudbase/api/search_api.rb +2 -2
- data/lib/mudbase/api/storage_api.rb +2 -2
- data/lib/mudbase/api/usage_api.rb +2 -2
- data/lib/mudbase/api/users_api.rb +11 -11
- data/lib/mudbase/api/wallet_api.rb +5 -5
- data/lib/mudbase/api/webhooks_api.rb +2 -2
- data/lib/mudbase/api_client.rb +2 -2
- data/lib/mudbase/api_error.rb +2 -2
- data/lib/mudbase/api_model_base.rb +2 -2
- data/lib/mudbase/configuration.rb +9 -2
- data/lib/mudbase/models/api_key.rb +2 -2
- data/lib/mudbase/models/api_key_permission.rb +2 -2
- data/lib/mudbase/models/api_key_usage.rb +2 -2
- data/lib/mudbase/models/api_key_usage_response.rb +2 -2
- data/lib/mudbase/models/api_key_with_secret.rb +2 -2
- data/lib/mudbase/models/auth_config.rb +2 -2
- data/lib/mudbase/models/auth_confirm_password_reset_request.rb +2 -2
- data/lib/mudbase/models/auth_convert_anonymous200_response.rb +2 -2
- data/lib/mudbase/models/auth_convert_anonymous_request.rb +2 -2
- data/lib/mudbase/models/auth_create_anonymous200_response.rb +2 -2
- data/lib/mudbase/models/auth_create_anonymous200_response_user.rb +2 -2
- data/lib/mudbase/models/auth_create_anonymous_request.rb +2 -2
- data/lib/mudbase/models/auth_get_o_auth_providers200_response.rb +2 -2
- data/lib/mudbase/models/auth_get_o_auth_providers200_response_providers_inner.rb +2 -2
- data/lib/mudbase/models/auth_get_session200_response.rb +2 -2
- data/lib/mudbase/models/auth_login200_response.rb +2 -2
- data/lib/mudbase/models/auth_login200_response_user.rb +2 -2
- data/lib/mudbase/models/auth_login403_response.rb +2 -2
- data/lib/mudbase/models/auth_login_request.rb +2 -2
- data/lib/mudbase/models/auth_oauth_callback200_response.rb +2 -2
- data/lib/mudbase/models/auth_oauth_initiate200_response.rb +2 -2
- data/lib/mudbase/models/auth_oauth_initiate400_response.rb +2 -2
- data/lib/mudbase/models/auth_oauth_signup_with_role400_response.rb +2 -2
- data/lib/mudbase/models/auth_provider.rb +2 -2
- data/lib/mudbase/models/auth_refresh200_response.rb +2 -2
- data/lib/mudbase/models/auth_refresh400_response.rb +2 -2
- data/lib/mudbase/models/auth_refresh_request.rb +2 -2
- data/lib/mudbase/models/auth_register201_response.rb +2 -2
- data/lib/mudbase/models/auth_register201_response_user.rb +2 -2
- data/lib/mudbase/models/auth_register429_response.rb +2 -2
- data/lib/mudbase/models/auth_register_request.rb +2 -2
- data/lib/mudbase/models/auth_register_with_role_request.rb +2 -2
- data/lib/mudbase/models/auth_request_password_reset_request.rb +2 -2
- data/lib/mudbase/models/auth_resend_verification_request.rb +174 -0
- data/lib/mudbase/models/auth_reset_password_request.rb +2 -2
- data/lib/mudbase/models/auth_response.rb +2 -2
- data/lib/mudbase/models/{users_verify_email_request.rb → auth_verify_email_request.rb} +5 -5
- data/lib/mudbase/models/auth_verify_magic_link_request.rb +2 -2
- data/lib/mudbase/models/billing.rb +2 -2
- data/lib/mudbase/models/billing_check_feature_access200_response.rb +2 -2
- data/lib/mudbase/models/billing_check_subscription200_response.rb +2 -2
- data/lib/mudbase/models/billing_check_subscription200_response_subscription.rb +2 -2
- data/lib/mudbase/models/billing_create_checkout_session200_response.rb +2 -2
- data/lib/mudbase/models/billing_create_checkout_session200_response_data.rb +2 -2
- data/lib/mudbase/models/billing_create_checkout_session200_response_data_payment_options_inner.rb +2 -2
- data/lib/mudbase/models/billing_create_checkout_session_request.rb +2 -2
- data/lib/mudbase/models/billing_create_checkout_session_request_customer_info.rb +2 -2
- data/lib/mudbase/models/billing_get_checkout_payment200_response.rb +2 -2
- data/lib/mudbase/models/billing_get_checkout_payment200_response_data.rb +2 -2
- data/lib/mudbase/models/billing_get_public_plans200_response.rb +2 -2
- data/lib/mudbase/models/billing_handle_crypto_webhook200_response.rb +2 -2
- data/lib/mudbase/models/billing_handle_crypto_webhook_request.rb +2 -2
- data/lib/mudbase/models/billing_handle_crypto_webhook_request_data.rb +2 -2
- data/lib/mudbase/models/billing_handle_flutterwave_webhook_request.rb +2 -2
- data/lib/mudbase/models/billing_handle_flutterwave_webhook_request_data.rb +2 -2
- data/lib/mudbase/models/billing_handle_flutterwave_webhook_request_data_customer.rb +2 -2
- data/lib/mudbase/models/billing_initialize_payment_request.rb +2 -2
- data/lib/mudbase/models/billing_initialize_payment_request_customer.rb +2 -2
- data/lib/mudbase/models/billing_last_payment.rb +2 -2
- data/lib/mudbase/models/billing_record_usage_request.rb +2 -2
- data/lib/mudbase/models/billing_verify_payment200_response.rb +2 -2
- data/lib/mudbase/models/billing_verify_payment200_response_data.rb +2 -2
- data/lib/mudbase/models/billing_verify_payment200_response_data_subscription.rb +2 -2
- data/lib/mudbase/models/bucket.rb +2 -2
- data/lib/mudbase/models/bucket_list_response.rb +2 -2
- data/lib/mudbase/models/bucket_response.rb +2 -2
- data/lib/mudbase/models/change_password_request.rb +2 -2
- data/lib/mudbase/models/chat_add_participant200_response.rb +2 -2
- data/lib/mudbase/models/chat_add_participant200_response_data.rb +2 -2
- data/lib/mudbase/models/chat_add_participant200_response_data_participants_inner.rb +2 -2
- data/lib/mudbase/models/chat_add_participant_request.rb +2 -2
- data/lib/mudbase/models/chat_add_reaction200_response.rb +2 -2
- data/lib/mudbase/models/chat_add_reaction200_response_data_inner.rb +2 -2
- data/lib/mudbase/models/chat_add_reaction_request.rb +2 -2
- data/lib/mudbase/models/chat_create201_response.rb +2 -2
- data/lib/mudbase/models/chat_create201_response_data.rb +2 -2
- data/lib/mudbase/models/chat_create_request.rb +2 -2
- data/lib/mudbase/models/chat_edit_message200_response.rb +2 -2
- data/lib/mudbase/models/chat_edit_message200_response_data.rb +21 -3
- data/lib/mudbase/models/chat_edit_message_request.rb +16 -23
- data/lib/mudbase/models/chat_edit_message_request_e2ee.rb +193 -0
- data/lib/mudbase/models/chat_get200_response.rb +2 -2
- data/lib/mudbase/models/chat_get200_response_data.rb +2 -2
- data/lib/mudbase/models/chat_get200_response_data_participants_inner.rb +2 -2
- data/lib/mudbase/models/chat_get_chat_e2ee_participant_keys200_response.rb +158 -0
- data/lib/mudbase/models/chat_get_chat_e2ee_participant_keys200_response_data_inner.rb +174 -0
- data/lib/mudbase/models/chat_get_messages200_response.rb +2 -2
- data/lib/mudbase/models/chat_get_messages200_response_data.rb +2 -2
- data/lib/mudbase/models/chat_get_messages200_response_data_messages_inner.rb +2 -2
- data/lib/mudbase/models/chat_get_messages200_response_data_messages_inner_sender.rb +2 -2
- data/lib/mudbase/models/chat_list200_response.rb +2 -2
- data/lib/mudbase/models/chat_list200_response_data.rb +2 -2
- data/lib/mudbase/models/chat_list200_response_data_chats_inner.rb +2 -2
- data/lib/mudbase/models/chat_list200_response_data_chats_inner_last_message.rb +2 -2
- data/lib/mudbase/models/chat_mark_as_read200_response.rb +2 -2
- data/lib/mudbase/models/chat_mark_as_read200_response_data.rb +2 -2
- data/lib/mudbase/models/chat_mark_as_read_request.rb +2 -2
- data/lib/mudbase/models/chat_put_chat_e2ee_key200_response.rb +156 -0
- data/lib/mudbase/models/chat_put_chat_e2ee_key200_response_data.rb +165 -0
- data/lib/mudbase/models/chat_put_chat_e2ee_key_request.rb +175 -0
- data/lib/mudbase/models/chat_remove_participant_request.rb +2 -2
- data/lib/mudbase/models/chat_remove_reaction200_response.rb +2 -2
- data/lib/mudbase/models/chat_remove_reaction200_response_data_inner.rb +2 -2
- data/lib/mudbase/models/chat_send_message201_response.rb +2 -2
- data/lib/mudbase/models/chat_send_message201_response_data.rb +2 -2
- data/lib/mudbase/models/chat_send_message_request.rb +13 -20
- data/lib/mudbase/models/chat_send_message_request_e2ee.rb +196 -0
- data/lib/mudbase/models/collection.rb +2 -2
- data/lib/mudbase/models/collections_create201_response.rb +2 -2
- data/lib/mudbase/models/collections_list200_response.rb +2 -2
- data/lib/mudbase/models/compliance_log_security_event200_response.rb +2 -2
- data/lib/mudbase/models/compliance_log_security_event200_response_event.rb +2 -2
- data/lib/mudbase/models/compliance_log_security_event_request.rb +2 -2
- data/lib/mudbase/models/compliance_log_security_event_request_details.rb +2 -2
- data/lib/mudbase/models/confirm_upload_response.rb +2 -2
- data/lib/mudbase/models/confirm_upload_response_scan.rb +2 -2
- data/lib/mudbase/models/create_api_key_request.rb +2 -2
- data/lib/mudbase/models/create_bucket_request.rb +2 -2
- data/lib/mudbase/models/create_collection_request.rb +2 -2
- data/lib/mudbase/models/create_function_request.rb +2 -2
- data/lib/mudbase/models/create_project_request.rb +2 -2
- data/lib/mudbase/models/data_list_response.rb +2 -2
- data/lib/mudbase/models/data_list_response_data_inner.rb +2 -2
- data/lib/mudbase/models/data_response.rb +2 -2
- data/lib/mudbase/models/database_config.rb +2 -2
- data/lib/mudbase/models/email_request.rb +2 -2
- data/lib/mudbase/models/email_request_to.rb +2 -2
- data/lib/mudbase/models/error.rb +2 -2
- data/lib/mudbase/models/error_details.rb +2 -2
- data/lib/mudbase/models/field.rb +2 -2
- data/lib/mudbase/models/field_default.rb +2 -2
- data/lib/mudbase/models/file_list_response.rb +2 -2
- data/lib/mudbase/models/file_metadata.rb +2 -2
- data/lib/mudbase/models/file_response.rb +2 -2
- data/lib/mudbase/models/file_upload_response.rb +2 -2
- data/lib/mudbase/models/function.rb +2 -2
- data/lib/mudbase/models/function_execution.rb +2 -2
- data/lib/mudbase/models/function_execution_response.rb +2 -2
- data/lib/mudbase/models/function_execution_response_data.rb +2 -2
- data/lib/mudbase/models/function_list_response.rb +2 -2
- data/lib/mudbase/models/function_list_response_data.rb +2 -2
- data/lib/mudbase/models/function_logs_response.rb +2 -2
- data/lib/mudbase/models/function_logs_response_data.rb +2 -2
- data/lib/mudbase/models/function_response.rb +2 -2
- data/lib/mudbase/models/function_stats.rb +2 -2
- data/lib/mudbase/models/function_trigger.rb +2 -2
- data/lib/mudbase/models/functions_delete200_response.rb +2 -2
- data/lib/mudbase/models/functions_execute_request.rb +2 -2
- data/lib/mudbase/models/functions_get_versions200_response.rb +2 -2
- data/lib/mudbase/models/functions_get_versions200_response_data.rb +2 -2
- data/lib/mudbase/models/functions_get_versions200_response_data_versions_inner.rb +2 -2
- data/lib/mudbase/models/functions_rollback_request.rb +2 -2
- data/lib/mudbase/models/functions_simulate_request.rb +2 -2
- data/lib/mudbase/models/functions_trigger_webhook200_response.rb +2 -2
- data/lib/mudbase/models/functions_trigger_webhook400_response.rb +2 -2
- data/lib/mudbase/models/functions_trigger_webhook401_response.rb +2 -2
- data/lib/mudbase/models/health_response.rb +2 -2
- data/lib/mudbase/models/health_response_services.rb +2 -2
- data/lib/mudbase/models/integrations_execute_request.rb +2 -2
- data/lib/mudbase/models/integrations_list200_response.rb +2 -2
- data/lib/mudbase/models/integrations_list200_response_integrations_inner.rb +2 -2
- data/lib/mudbase/models/invite_member_request.rb +2 -2
- data/lib/mudbase/models/limits.rb +2 -2
- data/lib/mudbase/models/login_request.rb +2 -2
- data/lib/mudbase/models/magic_link_request.rb +2 -2
- data/lib/mudbase/models/message.rb +2 -2
- data/lib/mudbase/models/message_history_response.rb +2 -2
- data/lib/mudbase/models/message_history_response_data.rb +2 -2
- data/lib/mudbase/models/message_response.rb +2 -2
- data/lib/mudbase/models/message_sent_response.rb +2 -2
- data/lib/mudbase/models/message_sent_response_data.rb +2 -2
- data/lib/mudbase/models/message_stats_response.rb +2 -2
- data/lib/mudbase/models/message_stats_response_data.rb +2 -2
- data/lib/mudbase/models/message_stats_response_data_by_status.rb +2 -2
- data/lib/mudbase/models/message_stats_response_data_by_type.rb +2 -2
- data/lib/mudbase/models/message_stats_response_data_period.rb +2 -2
- data/lib/mudbase/models/multi_role_add_role_request.rb +54 -6
- data/lib/mudbase/models/multi_role_add_role_request_default_permissions_inner.rb +2 -2
- data/lib/mudbase/models/multi_role_apply_role_feature_preset_request.rb +188 -0
- data/lib/mudbase/models/multi_role_get_available_roles200_response.rb +2 -2
- data/lib/mudbase/models/multi_role_get_available_roles200_response_data_inner.rb +2 -2
- data/lib/mudbase/models/multi_role_get_config200_response.rb +2 -2
- data/lib/mudbase/models/multi_role_get_config200_response_data.rb +2 -2
- data/lib/mudbase/models/{wallet_test_webhook200_response.rb → multi_role_get_permissions_matrix200_response.rb} +5 -5
- data/lib/mudbase/models/multi_role_simulate_app_permissions_request.rb +203 -0
- data/lib/mudbase/models/multi_role_toggle_role200_response.rb +2 -2
- data/lib/mudbase/models/multi_role_toggle_role_request.rb +2 -2
- data/lib/mudbase/models/multi_role_update_collection_permissions_request.rb +38 -6
- data/lib/mudbase/models/multi_role_update_role_request.rb +18 -6
- data/lib/mudbase/models/multi_role_update_role_request_collection_permissions_value.rb +2 -2
- data/lib/mudbase/models/multi_role_update_role_request_collection_permissions_value_one_of.rb +2 -2
- data/lib/mudbase/models/multi_role_update_settings200_response.rb +2 -2
- data/lib/mudbase/models/multi_role_update_settings_request.rb +2 -2
- data/lib/mudbase/models/multi_role_update_settings_request_settings.rb +18 -6
- data/lib/mudbase/models/non_custodial_address.rb +2 -2
- data/lib/mudbase/models/non_custodial_address_response.rb +2 -2
- data/lib/mudbase/models/organization.rb +2 -2
- data/lib/mudbase/models/organization_summary.rb +2 -2
- data/lib/mudbase/models/organizations_add_domain_request.rb +173 -0
- data/lib/mudbase/models/organizations_patch_domain_request.rb +191 -0
- data/lib/mudbase/models/organizations_report_domain_platform_ready_request.rb +166 -0
- data/lib/mudbase/models/organizations_set_primary_domain_request.rb +164 -0
- data/lib/mudbase/models/otp_send_request.rb +2 -2
- data/lib/mudbase/models/otp_verify_request.rb +2 -2
- data/lib/mudbase/models/pagination.rb +2 -2
- data/lib/mudbase/models/payment_intent.rb +2 -2
- data/lib/mudbase/models/payment_refund.rb +2 -2
- data/lib/mudbase/models/payment_subscription.rb +2 -2
- data/lib/mudbase/models/permission.rb +2 -2
- data/lib/mudbase/models/plan.rb +2 -2
- data/lib/mudbase/models/presigned_post_response.rb +2 -2
- data/lib/mudbase/models/project.rb +2 -2
- data/lib/mudbase/models/project_settings.rb +2 -2
- data/lib/mudbase/models/project_summary.rb +2 -2
- data/lib/mudbase/models/project_usage.rb +2 -2
- data/lib/mudbase/models/project_usage_response.rb +2 -2
- data/lib/mudbase/models/project_usage_stats_response.rb +2 -2
- data/lib/mudbase/models/project_usage_stats_response_project.rb +2 -2
- data/lib/mudbase/models/push_notification_request.rb +2 -2
- data/lib/mudbase/models/rate_limit.rb +2 -2
- data/lib/mudbase/models/realtime_analytics_check_user_presence200_response.rb +2 -2
- data/lib/mudbase/models/realtime_analytics_check_user_presence200_response_presence_value.rb +2 -2
- data/lib/mudbase/models/realtime_analytics_check_user_presence_request.rb +2 -2
- data/lib/mudbase/models/realtime_analytics_get_active_users200_response.rb +2 -2
- data/lib/mudbase/models/realtime_analytics_get_active_users200_response_users_inner.rb +2 -2
- data/lib/mudbase/models/realtime_analytics_get_event_throughput200_response.rb +2 -2
- data/lib/mudbase/models/realtime_analytics_get_historical_analytics200_response.rb +2 -2
- data/lib/mudbase/models/realtime_analytics_get_historical_analytics200_response_data_inner.rb +2 -2
- data/lib/mudbase/models/realtime_analytics_get_project200_response.rb +2 -2
- data/lib/mudbase/models/register_request.rb +2 -2
- data/lib/mudbase/models/role_elevation_get_status200_response.rb +2 -2
- data/lib/mudbase/models/role_elevation_request200_response.rb +2 -2
- data/lib/mudbase/models/role_elevation_request_request.rb +2 -2
- data/lib/mudbase/models/role_elevation_upload_documents_request.rb +2 -2
- data/lib/mudbase/models/role_elevation_upload_documents_request_documents_inner.rb +2 -2
- data/lib/mudbase/models/search_get_analytics200_response.rb +2 -2
- data/lib/mudbase/models/search_get_analytics200_response_top_queries_inner.rb +2 -2
- data/lib/mudbase/models/search_get_suggestions200_response.rb +2 -2
- data/lib/mudbase/models/search_response.rb +2 -2
- data/lib/mudbase/models/search_response_data.rb +2 -2
- data/lib/mudbase/models/search_result.rb +2 -2
- data/lib/mudbase/models/search_result_item.rb +2 -2
- data/lib/mudbase/models/session_response.rb +2 -2
- data/lib/mudbase/models/signed_url_response.rb +2 -2
- data/lib/mudbase/models/sms_request.rb +2 -2
- data/lib/mudbase/models/storage_config.rb +2 -2
- data/lib/mudbase/models/storage_confirm_upload400_response.rb +2 -2
- data/lib/mudbase/models/storage_confirm_upload_request.rb +2 -2
- data/lib/mudbase/models/storage_download_bucket_file403_response.rb +2 -2
- data/lib/mudbase/models/storage_download_bucket_file404_response.rb +2 -2
- data/lib/mudbase/models/storage_get_presigned_upload_request.rb +2 -2
- data/lib/mudbase/models/storage_get_signed_url_request.rb +2 -2
- data/lib/mudbase/models/system_status_response.rb +2 -2
- data/lib/mudbase/models/system_status_response_data.rb +2 -2
- data/lib/mudbase/models/system_status_response_data_cpu.rb +2 -2
- data/lib/mudbase/models/system_status_response_data_database.rb +2 -2
- data/lib/mudbase/models/system_status_response_data_memory.rb +2 -2
- data/lib/mudbase/models/system_status_response_data_requests.rb +2 -2
- data/lib/mudbase/models/system_status_response_data_storage.rb +2 -2
- data/lib/mudbase/models/trigger_webhook_request.rb +2 -2
- data/lib/mudbase/models/two_fa_setup_response.rb +2 -2
- data/lib/mudbase/models/update_api_key_request.rb +2 -2
- data/lib/mudbase/models/update_bucket_request.rb +2 -2
- data/lib/mudbase/models/update_collection_request.rb +2 -2
- data/lib/mudbase/models/update_function_request.rb +2 -2
- data/lib/mudbase/models/update_function_request_limits.rb +2 -2
- data/lib/mudbase/models/update_function_request_retry_policy.rb +2 -2
- data/lib/mudbase/models/update_organization_request.rb +2 -2
- data/lib/mudbase/models/update_project_request.rb +2 -2
- data/lib/mudbase/models/update_user_request.rb +2 -2
- data/lib/mudbase/models/upload_files_to_bucket_metadata_request.rb +2 -2
- data/lib/mudbase/models/upload_files_to_bucket_request.rb +2 -2
- data/lib/mudbase/models/usage.rb +2 -2
- data/lib/mudbase/models/usage_response.rb +2 -2
- data/lib/mudbase/models/usage_stats_response.rb +2 -2
- data/lib/mudbase/models/usage_stats_response_percentages.rb +2 -2
- data/lib/mudbase/models/usage_trends_response.rb +2 -2
- data/lib/mudbase/models/usage_trends_response_trends_inner.rb +2 -2
- data/lib/mudbase/models/usage_trends_response_trends_inner_id.rb +2 -2
- data/lib/mudbase/models/user.rb +2 -2
- data/lib/mudbase/models/user_summary.rb +2 -2
- data/lib/mudbase/models/users_disable2fa_request.rb +2 -2
- data/lib/mudbase/models/users_erase_data200_response.rb +2 -2
- data/lib/mudbase/models/users_erase_data200_response_details.rb +2 -2
- data/lib/mudbase/models/users_erase_data_request.rb +2 -2
- data/lib/mudbase/models/users_export_data200_response.rb +2 -2
- data/lib/mudbase/models/users_get200_response.rb +2 -2
- data/lib/mudbase/models/users_link_o_auth_provider200_response.rb +2 -2
- data/lib/mudbase/models/users_list_o_auth_providers200_response.rb +2 -2
- data/lib/mudbase/models/users_list_o_auth_providers200_response_providers_inner.rb +2 -2
- data/lib/mudbase/models/users_unlink_o_auth_provider200_response.rb +2 -2
- data/lib/mudbase/models/users_update200_response.rb +2 -2
- data/lib/mudbase/models/users_verify2fa_request.rb +2 -2
- data/lib/mudbase/models/wallet_balance.rb +2 -2
- data/lib/mudbase/models/wallet_broadcast_transaction200_response.rb +2 -2
- data/lib/mudbase/models/wallet_broadcast_transaction200_response_data.rb +2 -2
- data/lib/mudbase/models/wallet_broadcast_transaction_request.rb +2 -2
- data/lib/mudbase/models/wallet_create_webhook201_response.rb +2 -2
- data/lib/mudbase/models/wallet_create_webhook_request.rb +2 -2
- data/lib/mudbase/models/wallet_create_webhook_request_filters.rb +2 -2
- data/lib/mudbase/models/wallet_estimate_gas200_response.rb +2 -2
- data/lib/mudbase/models/wallet_estimate_gas200_response_data.rb +2 -2
- data/lib/mudbase/models/wallet_estimate_gas_request.rb +2 -2
- data/lib/mudbase/models/wallet_estimate_gas_request_transaction.rb +2 -2
- data/lib/mudbase/models/wallet_get_balance200_response.rb +2 -2
- data/lib/mudbase/models/wallet_get_cancel_params200_response.rb +2 -2
- data/lib/mudbase/models/wallet_get_cancel_params200_response_data.rb +2 -2
- data/lib/mudbase/models/wallet_get_cancel_params_request.rb +2 -2
- data/lib/mudbase/models/wallet_get_speed_up_params200_response.rb +2 -2
- data/lib/mudbase/models/wallet_get_speed_up_params200_response_data.rb +2 -2
- data/lib/mudbase/models/wallet_get_speed_up_params_request.rb +2 -2
- data/lib/mudbase/models/wallet_get_transaction_by_hash200_response.rb +2 -2
- data/lib/mudbase/models/wallet_get_transaction_by_hash400_response.rb +2 -2
- data/lib/mudbase/models/wallet_get_transactions200_response.rb +2 -2
- data/lib/mudbase/models/wallet_get_transactions200_response_pagination.rb +2 -2
- data/lib/mudbase/models/wallet_get_webhook_logs200_response.rb +2 -2
- data/lib/mudbase/models/wallet_list_addresses200_response.rb +2 -2
- data/lib/mudbase/models/wallet_list_webhooks200_response.rb +2 -2
- data/lib/mudbase/models/wallet_register_address_request.rb +2 -2
- data/lib/mudbase/models/wallet_test_webhook_request.rb +2 -2
- data/lib/mudbase/models/wallet_transaction.rb +2 -2
- data/lib/mudbase/models/wallet_transaction_webhook_payload.rb +2 -2
- data/lib/mudbase/models/wallet_update_webhook200_response.rb +2 -2
- data/lib/mudbase/models/wallet_update_webhook_request.rb +2 -2
- data/lib/mudbase/models/wallet_webhook.rb +2 -2
- data/lib/mudbase/models/wallet_webhook_filters.rb +2 -2
- data/lib/mudbase/models/wallet_webhook_stats.rb +2 -2
- data/lib/mudbase/models/webhook_list_response.rb +2 -2
- data/lib/mudbase/models/webhook_log.rb +2 -2
- data/lib/mudbase/models/webhook_stats_response.rb +2 -2
- data/lib/mudbase/models/webhook_stats_response_event_stats_inner.rb +2 -2
- data/lib/mudbase/models/webhook_stats_response_status_stats_inner.rb +2 -2
- data/lib/mudbase/version.rb +3 -3
- data/lib/mudbase.rb +19 -4
- data/mudbase.gemspec +8 -3
- data/spec/api/auth_api_spec.rb +26 -2
- data/spec/api/billing_api_spec.rb +2 -2
- data/spec/api/chat_api_spec.rb +31 -5
- data/spec/api/collections_api_spec.rb +2 -2
- data/spec/api/compliance_api_spec.rb +2 -2
- data/spec/api/data_api_spec.rb +2 -2
- data/spec/api/functions_api_spec.rb +2 -2
- data/spec/api/health_api_spec.rb +2 -2
- data/spec/api/integrations_api_spec.rb +3 -3
- data/spec/api/messaging_api_spec.rb +2 -2
- data/spec/api/multi_role_api_spec.rb +45 -6
- data/spec/api/organizations_api_spec.rb +130 -0
- data/spec/api/realtime_analytics_api_spec.rb +2 -2
- data/spec/api/role_elevation_api_spec.rb +2 -2
- data/spec/api/search_api_spec.rb +2 -2
- data/spec/api/storage_api_spec.rb +2 -2
- data/spec/api/usage_api_spec.rb +2 -2
- data/spec/api/users_api_spec.rb +3 -3
- data/spec/api/wallet_api_spec.rb +3 -3
- data/spec/api/webhooks_api_spec.rb +2 -2
- data/spec/models/api_key_permission_spec.rb +2 -2
- data/spec/models/api_key_spec.rb +2 -2
- data/spec/models/api_key_usage_response_spec.rb +2 -2
- data/spec/models/api_key_usage_spec.rb +2 -2
- data/spec/models/api_key_with_secret_spec.rb +2 -2
- data/spec/models/auth_config_spec.rb +2 -2
- data/spec/models/auth_confirm_password_reset_request_spec.rb +2 -2
- data/spec/models/auth_convert_anonymous200_response_spec.rb +2 -2
- data/spec/models/auth_convert_anonymous_request_spec.rb +2 -2
- data/spec/models/auth_create_anonymous200_response_spec.rb +2 -2
- data/spec/models/auth_create_anonymous200_response_user_spec.rb +2 -2
- data/spec/models/auth_create_anonymous_request_spec.rb +2 -2
- data/spec/models/auth_get_o_auth_providers200_response_providers_inner_spec.rb +2 -2
- data/spec/models/auth_get_o_auth_providers200_response_spec.rb +2 -2
- data/spec/models/auth_get_session200_response_spec.rb +2 -2
- data/spec/models/auth_login200_response_spec.rb +2 -2
- data/spec/models/auth_login200_response_user_spec.rb +2 -2
- data/spec/models/auth_login403_response_spec.rb +2 -2
- data/spec/models/auth_login_request_spec.rb +2 -2
- data/spec/models/auth_oauth_callback200_response_spec.rb +2 -2
- data/spec/models/auth_oauth_initiate200_response_spec.rb +2 -2
- data/spec/models/auth_oauth_initiate400_response_spec.rb +2 -2
- data/spec/models/auth_oauth_signup_with_role400_response_spec.rb +2 -2
- data/spec/models/auth_provider_spec.rb +2 -2
- data/spec/models/auth_refresh200_response_spec.rb +2 -2
- data/spec/models/auth_refresh400_response_spec.rb +2 -2
- data/spec/models/auth_refresh_request_spec.rb +2 -2
- data/spec/models/auth_register201_response_spec.rb +2 -2
- data/spec/models/auth_register201_response_user_spec.rb +2 -2
- data/spec/models/auth_register429_response_spec.rb +2 -2
- data/spec/models/auth_register_request_spec.rb +2 -2
- data/spec/models/auth_register_with_role_request_spec.rb +2 -2
- data/spec/models/auth_request_password_reset_request_spec.rb +2 -2
- data/spec/models/auth_resend_verification_request_spec.rb +42 -0
- data/spec/models/auth_reset_password_request_spec.rb +2 -2
- data/spec/models/auth_response_spec.rb +2 -2
- data/spec/models/{users_verify_email_request_spec.rb → auth_verify_email_request_spec.rb} +8 -8
- data/spec/models/auth_verify_magic_link_request_spec.rb +2 -2
- data/spec/models/billing_check_feature_access200_response_spec.rb +2 -2
- data/spec/models/billing_check_subscription200_response_spec.rb +2 -2
- data/spec/models/billing_check_subscription200_response_subscription_spec.rb +2 -2
- data/spec/models/billing_create_checkout_session200_response_data_payment_options_inner_spec.rb +2 -2
- data/spec/models/billing_create_checkout_session200_response_data_spec.rb +2 -2
- data/spec/models/billing_create_checkout_session200_response_spec.rb +2 -2
- data/spec/models/billing_create_checkout_session_request_customer_info_spec.rb +2 -2
- data/spec/models/billing_create_checkout_session_request_spec.rb +2 -2
- data/spec/models/billing_get_checkout_payment200_response_data_spec.rb +2 -2
- data/spec/models/billing_get_checkout_payment200_response_spec.rb +2 -2
- data/spec/models/billing_get_public_plans200_response_spec.rb +2 -2
- data/spec/models/billing_handle_crypto_webhook200_response_spec.rb +2 -2
- data/spec/models/billing_handle_crypto_webhook_request_data_spec.rb +2 -2
- data/spec/models/billing_handle_crypto_webhook_request_spec.rb +2 -2
- data/spec/models/billing_handle_flutterwave_webhook_request_data_customer_spec.rb +2 -2
- data/spec/models/billing_handle_flutterwave_webhook_request_data_spec.rb +2 -2
- data/spec/models/billing_handle_flutterwave_webhook_request_spec.rb +2 -2
- data/spec/models/billing_initialize_payment_request_customer_spec.rb +2 -2
- data/spec/models/billing_initialize_payment_request_spec.rb +2 -2
- data/spec/models/billing_last_payment_spec.rb +2 -2
- data/spec/models/billing_record_usage_request_spec.rb +2 -2
- data/spec/models/billing_spec.rb +2 -2
- data/spec/models/billing_verify_payment200_response_data_spec.rb +2 -2
- data/spec/models/billing_verify_payment200_response_data_subscription_spec.rb +2 -2
- data/spec/models/billing_verify_payment200_response_spec.rb +2 -2
- data/spec/models/bucket_list_response_spec.rb +2 -2
- data/spec/models/bucket_response_spec.rb +2 -2
- data/spec/models/bucket_spec.rb +2 -2
- data/spec/models/change_password_request_spec.rb +2 -2
- data/spec/models/chat_add_participant200_response_data_participants_inner_spec.rb +2 -2
- data/spec/models/chat_add_participant200_response_data_spec.rb +2 -2
- data/spec/models/chat_add_participant200_response_spec.rb +2 -2
- data/spec/models/chat_add_participant_request_spec.rb +2 -2
- data/spec/models/chat_add_reaction200_response_data_inner_spec.rb +2 -2
- data/spec/models/chat_add_reaction200_response_spec.rb +2 -2
- data/spec/models/chat_add_reaction_request_spec.rb +2 -2
- data/spec/models/chat_create201_response_data_spec.rb +2 -2
- data/spec/models/chat_create201_response_spec.rb +2 -2
- data/spec/models/chat_create_request_spec.rb +2 -2
- data/spec/models/chat_edit_message200_response_data_spec.rb +14 -2
- data/spec/models/chat_edit_message200_response_spec.rb +2 -2
- data/spec/models/chat_edit_message_request_e2ee_spec.rb +66 -0
- data/spec/models/chat_edit_message_request_spec.rb +8 -2
- data/spec/models/chat_get200_response_data_participants_inner_spec.rb +2 -2
- data/spec/models/chat_get200_response_data_spec.rb +2 -2
- data/spec/models/chat_get200_response_spec.rb +2 -2
- data/spec/models/chat_get_chat_e2ee_participant_keys200_response_data_inner_spec.rb +54 -0
- data/spec/models/chat_get_chat_e2ee_participant_keys200_response_spec.rb +42 -0
- data/spec/models/chat_get_messages200_response_data_messages_inner_sender_spec.rb +2 -2
- data/spec/models/chat_get_messages200_response_data_messages_inner_spec.rb +2 -2
- data/spec/models/chat_get_messages200_response_data_spec.rb +2 -2
- data/spec/models/chat_get_messages200_response_spec.rb +2 -2
- data/spec/models/chat_list200_response_data_chats_inner_last_message_spec.rb +2 -2
- data/spec/models/chat_list200_response_data_chats_inner_spec.rb +2 -2
- data/spec/models/chat_list200_response_data_spec.rb +2 -2
- data/spec/models/chat_list200_response_spec.rb +2 -2
- data/spec/models/chat_mark_as_read200_response_data_spec.rb +2 -2
- data/spec/models/chat_mark_as_read200_response_spec.rb +2 -2
- data/spec/models/chat_mark_as_read_request_spec.rb +2 -2
- data/spec/models/chat_put_chat_e2ee_key200_response_data_spec.rb +48 -0
- data/spec/models/{wallet_test_webhook200_response_spec.rb → chat_put_chat_e2ee_key200_response_spec.rb} +8 -8
- data/spec/models/chat_put_chat_e2ee_key_request_spec.rb +42 -0
- data/spec/models/chat_remove_participant_request_spec.rb +2 -2
- data/spec/models/chat_remove_reaction200_response_data_inner_spec.rb +2 -2
- data/spec/models/chat_remove_reaction200_response_spec.rb +2 -2
- data/spec/models/chat_send_message201_response_data_spec.rb +2 -2
- data/spec/models/chat_send_message201_response_spec.rb +2 -2
- data/spec/models/chat_send_message_request_e2ee_spec.rb +66 -0
- data/spec/models/chat_send_message_request_spec.rb +8 -2
- data/spec/models/collection_spec.rb +2 -2
- data/spec/models/collections_create201_response_spec.rb +2 -2
- data/spec/models/collections_list200_response_spec.rb +2 -2
- data/spec/models/compliance_log_security_event200_response_event_spec.rb +2 -2
- data/spec/models/compliance_log_security_event200_response_spec.rb +2 -2
- data/spec/models/compliance_log_security_event_request_details_spec.rb +2 -2
- data/spec/models/compliance_log_security_event_request_spec.rb +2 -2
- data/spec/models/confirm_upload_response_scan_spec.rb +2 -2
- data/spec/models/confirm_upload_response_spec.rb +2 -2
- data/spec/models/create_api_key_request_spec.rb +2 -2
- data/spec/models/create_bucket_request_spec.rb +2 -2
- data/spec/models/create_collection_request_spec.rb +2 -2
- data/spec/models/create_function_request_spec.rb +2 -2
- data/spec/models/create_project_request_spec.rb +2 -2
- data/spec/models/data_list_response_data_inner_spec.rb +2 -2
- data/spec/models/data_list_response_spec.rb +2 -2
- data/spec/models/data_response_spec.rb +2 -2
- data/spec/models/database_config_spec.rb +2 -2
- data/spec/models/email_request_spec.rb +2 -2
- data/spec/models/email_request_to_spec.rb +2 -2
- data/spec/models/error_details_spec.rb +2 -2
- data/spec/models/error_spec.rb +2 -2
- data/spec/models/field_default_spec.rb +2 -2
- data/spec/models/field_spec.rb +2 -2
- data/spec/models/file_list_response_spec.rb +2 -2
- data/spec/models/file_metadata_spec.rb +2 -2
- data/spec/models/file_response_spec.rb +2 -2
- data/spec/models/file_upload_response_spec.rb +2 -2
- data/spec/models/function_execution_response_data_spec.rb +2 -2
- data/spec/models/function_execution_response_spec.rb +2 -2
- data/spec/models/function_execution_spec.rb +2 -2
- data/spec/models/function_list_response_data_spec.rb +2 -2
- data/spec/models/function_list_response_spec.rb +2 -2
- data/spec/models/function_logs_response_data_spec.rb +2 -2
- data/spec/models/function_logs_response_spec.rb +2 -2
- data/spec/models/function_response_spec.rb +2 -2
- data/spec/models/function_spec.rb +2 -2
- data/spec/models/function_stats_spec.rb +2 -2
- data/spec/models/function_trigger_spec.rb +2 -2
- data/spec/models/functions_delete200_response_spec.rb +2 -2
- data/spec/models/functions_execute_request_spec.rb +2 -2
- data/spec/models/functions_get_versions200_response_data_spec.rb +2 -2
- data/spec/models/functions_get_versions200_response_data_versions_inner_spec.rb +2 -2
- data/spec/models/functions_get_versions200_response_spec.rb +2 -2
- data/spec/models/functions_rollback_request_spec.rb +2 -2
- data/spec/models/functions_simulate_request_spec.rb +2 -2
- data/spec/models/functions_trigger_webhook200_response_spec.rb +2 -2
- data/spec/models/functions_trigger_webhook400_response_spec.rb +2 -2
- data/spec/models/functions_trigger_webhook401_response_spec.rb +2 -2
- data/spec/models/health_response_services_spec.rb +2 -2
- data/spec/models/health_response_spec.rb +2 -2
- data/spec/models/integrations_execute_request_spec.rb +2 -2
- data/spec/models/integrations_list200_response_integrations_inner_spec.rb +2 -2
- data/spec/models/integrations_list200_response_spec.rb +2 -2
- data/spec/models/invite_member_request_spec.rb +2 -2
- data/spec/models/limits_spec.rb +2 -2
- data/spec/models/login_request_spec.rb +2 -2
- data/spec/models/magic_link_request_spec.rb +2 -2
- data/spec/models/message_history_response_data_spec.rb +2 -2
- data/spec/models/message_history_response_spec.rb +2 -2
- data/spec/models/message_response_spec.rb +2 -2
- data/spec/models/message_sent_response_data_spec.rb +2 -2
- data/spec/models/message_sent_response_spec.rb +2 -2
- data/spec/models/message_spec.rb +2 -2
- data/spec/models/message_stats_response_data_by_status_spec.rb +2 -2
- data/spec/models/message_stats_response_data_by_type_spec.rb +2 -2
- data/spec/models/message_stats_response_data_period_spec.rb +2 -2
- data/spec/models/message_stats_response_data_spec.rb +2 -2
- data/spec/models/message_stats_response_spec.rb +2 -2
- data/spec/models/multi_role_add_role_request_default_permissions_inner_spec.rb +2 -2
- data/spec/models/multi_role_add_role_request_spec.rb +32 -2
- data/spec/models/multi_role_apply_role_feature_preset_request_spec.rb +40 -0
- data/spec/models/multi_role_get_available_roles200_response_data_inner_spec.rb +2 -2
- data/spec/models/multi_role_get_available_roles200_response_spec.rb +2 -2
- data/spec/models/multi_role_get_config200_response_data_spec.rb +2 -2
- data/spec/models/multi_role_get_config200_response_spec.rb +2 -2
- data/spec/models/multi_role_get_permissions_matrix200_response_spec.rb +42 -0
- data/spec/models/multi_role_simulate_app_permissions_request_spec.rb +60 -0
- data/spec/models/multi_role_toggle_role200_response_spec.rb +2 -2
- data/spec/models/multi_role_toggle_role_request_spec.rb +2 -2
- data/spec/models/multi_role_update_collection_permissions_request_spec.rb +18 -2
- data/spec/models/multi_role_update_role_request_collection_permissions_value_one_of_spec.rb +2 -2
- data/spec/models/multi_role_update_role_request_collection_permissions_value_spec.rb +2 -2
- data/spec/models/multi_role_update_role_request_spec.rb +8 -2
- data/spec/models/multi_role_update_settings200_response_spec.rb +2 -2
- data/spec/models/multi_role_update_settings_request_settings_spec.rb +8 -2
- data/spec/models/multi_role_update_settings_request_spec.rb +2 -2
- data/spec/models/non_custodial_address_response_spec.rb +2 -2
- data/spec/models/non_custodial_address_spec.rb +2 -2
- data/spec/models/organization_spec.rb +2 -2
- data/spec/models/organization_summary_spec.rb +2 -2
- data/spec/models/organizations_add_domain_request_spec.rb +42 -0
- data/spec/models/organizations_patch_domain_request_spec.rb +46 -0
- data/spec/models/organizations_report_domain_platform_ready_request_spec.rb +36 -0
- data/spec/models/organizations_set_primary_domain_request_spec.rb +36 -0
- data/spec/models/otp_send_request_spec.rb +2 -2
- data/spec/models/otp_verify_request_spec.rb +2 -2
- data/spec/models/pagination_spec.rb +2 -2
- data/spec/models/payment_intent_spec.rb +2 -2
- data/spec/models/payment_refund_spec.rb +2 -2
- data/spec/models/payment_subscription_spec.rb +2 -2
- data/spec/models/permission_spec.rb +2 -2
- data/spec/models/plan_spec.rb +2 -2
- data/spec/models/presigned_post_response_spec.rb +2 -2
- data/spec/models/project_settings_spec.rb +2 -2
- data/spec/models/project_spec.rb +2 -2
- data/spec/models/project_summary_spec.rb +2 -2
- data/spec/models/project_usage_response_spec.rb +2 -2
- data/spec/models/project_usage_spec.rb +2 -2
- data/spec/models/project_usage_stats_response_project_spec.rb +2 -2
- data/spec/models/project_usage_stats_response_spec.rb +2 -2
- data/spec/models/push_notification_request_spec.rb +2 -2
- data/spec/models/rate_limit_spec.rb +2 -2
- data/spec/models/realtime_analytics_check_user_presence200_response_presence_value_spec.rb +2 -2
- data/spec/models/realtime_analytics_check_user_presence200_response_spec.rb +2 -2
- data/spec/models/realtime_analytics_check_user_presence_request_spec.rb +2 -2
- data/spec/models/realtime_analytics_get_active_users200_response_spec.rb +2 -2
- data/spec/models/realtime_analytics_get_active_users200_response_users_inner_spec.rb +2 -2
- data/spec/models/realtime_analytics_get_event_throughput200_response_spec.rb +2 -2
- data/spec/models/realtime_analytics_get_historical_analytics200_response_data_inner_spec.rb +2 -2
- data/spec/models/realtime_analytics_get_historical_analytics200_response_spec.rb +2 -2
- data/spec/models/realtime_analytics_get_project200_response_spec.rb +2 -2
- data/spec/models/register_request_spec.rb +2 -2
- data/spec/models/role_elevation_get_status200_response_spec.rb +2 -2
- data/spec/models/role_elevation_request200_response_spec.rb +2 -2
- data/spec/models/role_elevation_request_request_spec.rb +2 -2
- data/spec/models/role_elevation_upload_documents_request_documents_inner_spec.rb +2 -2
- data/spec/models/role_elevation_upload_documents_request_spec.rb +2 -2
- data/spec/models/search_get_analytics200_response_spec.rb +2 -2
- data/spec/models/search_get_analytics200_response_top_queries_inner_spec.rb +2 -2
- data/spec/models/search_get_suggestions200_response_spec.rb +2 -2
- data/spec/models/search_response_data_spec.rb +2 -2
- data/spec/models/search_response_spec.rb +2 -2
- data/spec/models/search_result_item_spec.rb +2 -2
- data/spec/models/search_result_spec.rb +2 -2
- data/spec/models/session_response_spec.rb +2 -2
- data/spec/models/signed_url_response_spec.rb +2 -2
- data/spec/models/sms_request_spec.rb +2 -2
- data/spec/models/storage_config_spec.rb +2 -2
- data/spec/models/storage_confirm_upload400_response_spec.rb +2 -2
- data/spec/models/storage_confirm_upload_request_spec.rb +2 -2
- data/spec/models/storage_download_bucket_file403_response_spec.rb +2 -2
- data/spec/models/storage_download_bucket_file404_response_spec.rb +2 -2
- data/spec/models/storage_get_presigned_upload_request_spec.rb +2 -2
- data/spec/models/storage_get_signed_url_request_spec.rb +2 -2
- data/spec/models/system_status_response_data_cpu_spec.rb +2 -2
- data/spec/models/system_status_response_data_database_spec.rb +2 -2
- data/spec/models/system_status_response_data_memory_spec.rb +2 -2
- data/spec/models/system_status_response_data_requests_spec.rb +2 -2
- data/spec/models/system_status_response_data_spec.rb +2 -2
- data/spec/models/system_status_response_data_storage_spec.rb +2 -2
- data/spec/models/system_status_response_spec.rb +2 -2
- data/spec/models/trigger_webhook_request_spec.rb +2 -2
- data/spec/models/two_fa_setup_response_spec.rb +2 -2
- data/spec/models/update_api_key_request_spec.rb +2 -2
- data/spec/models/update_bucket_request_spec.rb +2 -2
- data/spec/models/update_collection_request_spec.rb +2 -2
- data/spec/models/update_function_request_limits_spec.rb +2 -2
- data/spec/models/update_function_request_retry_policy_spec.rb +2 -2
- data/spec/models/update_function_request_spec.rb +2 -2
- data/spec/models/update_organization_request_spec.rb +2 -2
- data/spec/models/update_project_request_spec.rb +2 -2
- data/spec/models/update_user_request_spec.rb +2 -2
- data/spec/models/upload_files_to_bucket_metadata_request_spec.rb +2 -2
- data/spec/models/upload_files_to_bucket_request_spec.rb +2 -2
- data/spec/models/usage_response_spec.rb +2 -2
- data/spec/models/usage_spec.rb +2 -2
- data/spec/models/usage_stats_response_percentages_spec.rb +2 -2
- data/spec/models/usage_stats_response_spec.rb +2 -2
- data/spec/models/usage_trends_response_spec.rb +2 -2
- data/spec/models/usage_trends_response_trends_inner_id_spec.rb +2 -2
- data/spec/models/usage_trends_response_trends_inner_spec.rb +2 -2
- data/spec/models/user_spec.rb +2 -2
- data/spec/models/user_summary_spec.rb +2 -2
- data/spec/models/users_disable2fa_request_spec.rb +2 -2
- data/spec/models/users_erase_data200_response_details_spec.rb +2 -2
- data/spec/models/users_erase_data200_response_spec.rb +2 -2
- data/spec/models/users_erase_data_request_spec.rb +2 -2
- data/spec/models/users_export_data200_response_spec.rb +2 -2
- data/spec/models/users_get200_response_spec.rb +2 -2
- data/spec/models/users_link_o_auth_provider200_response_spec.rb +2 -2
- data/spec/models/users_list_o_auth_providers200_response_providers_inner_spec.rb +2 -2
- data/spec/models/users_list_o_auth_providers200_response_spec.rb +2 -2
- data/spec/models/users_unlink_o_auth_provider200_response_spec.rb +2 -2
- data/spec/models/users_update200_response_spec.rb +2 -2
- data/spec/models/users_verify2fa_request_spec.rb +2 -2
- data/spec/models/wallet_balance_spec.rb +2 -2
- data/spec/models/wallet_broadcast_transaction200_response_data_spec.rb +2 -2
- data/spec/models/wallet_broadcast_transaction200_response_spec.rb +2 -2
- data/spec/models/wallet_broadcast_transaction_request_spec.rb +2 -2
- data/spec/models/wallet_create_webhook201_response_spec.rb +2 -2
- data/spec/models/wallet_create_webhook_request_filters_spec.rb +2 -2
- data/spec/models/wallet_create_webhook_request_spec.rb +2 -2
- data/spec/models/wallet_estimate_gas200_response_data_spec.rb +2 -2
- data/spec/models/wallet_estimate_gas200_response_spec.rb +2 -2
- data/spec/models/wallet_estimate_gas_request_spec.rb +2 -2
- data/spec/models/wallet_estimate_gas_request_transaction_spec.rb +2 -2
- data/spec/models/wallet_get_balance200_response_spec.rb +2 -2
- data/spec/models/wallet_get_cancel_params200_response_data_spec.rb +2 -2
- data/spec/models/wallet_get_cancel_params200_response_spec.rb +2 -2
- data/spec/models/wallet_get_cancel_params_request_spec.rb +2 -2
- data/spec/models/wallet_get_speed_up_params200_response_data_spec.rb +2 -2
- data/spec/models/wallet_get_speed_up_params200_response_spec.rb +2 -2
- data/spec/models/wallet_get_speed_up_params_request_spec.rb +2 -2
- data/spec/models/wallet_get_transaction_by_hash200_response_spec.rb +2 -2
- data/spec/models/wallet_get_transaction_by_hash400_response_spec.rb +2 -2
- data/spec/models/wallet_get_transactions200_response_pagination_spec.rb +2 -2
- data/spec/models/wallet_get_transactions200_response_spec.rb +2 -2
- data/spec/models/wallet_get_webhook_logs200_response_spec.rb +2 -2
- data/spec/models/wallet_list_addresses200_response_spec.rb +2 -2
- data/spec/models/wallet_list_webhooks200_response_spec.rb +2 -2
- data/spec/models/wallet_register_address_request_spec.rb +2 -2
- data/spec/models/wallet_test_webhook_request_spec.rb +2 -2
- data/spec/models/wallet_transaction_spec.rb +2 -2
- data/spec/models/wallet_transaction_webhook_payload_spec.rb +2 -2
- data/spec/models/wallet_update_webhook200_response_spec.rb +2 -2
- data/spec/models/wallet_update_webhook_request_spec.rb +2 -2
- data/spec/models/wallet_webhook_filters_spec.rb +2 -2
- data/spec/models/wallet_webhook_spec.rb +2 -2
- data/spec/models/wallet_webhook_stats_spec.rb +2 -2
- data/spec/models/webhook_list_response_spec.rb +2 -2
- data/spec/models/webhook_log_spec.rb +2 -2
- data/spec/models/webhook_stats_response_event_stats_inner_spec.rb +2 -2
- data/spec/models/webhook_stats_response_spec.rb +2 -2
- data/spec/models/webhook_stats_response_status_stats_inner_spec.rb +2 -2
- data/spec/spec_helper.rb +2 -2
- metadata +375 -311
data/spec/api/chat_api_spec.rb
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
|
@@ -94,7 +94,7 @@ describe 'ChatApi' do
|
|
|
94
94
|
# @param project_id Project ID.
|
|
95
95
|
# @param chat_id Chat ID.
|
|
96
96
|
# @param message_id Message ID.
|
|
97
|
-
# @param chat_edit_message_request New
|
|
97
|
+
# @param chat_edit_message_request New plaintext content (non-E2EE messages) or new e2ee ciphertext (E2EE messages). One of content or e2ee.ciphertext is required.
|
|
98
98
|
# @param [Hash] opts the optional parameters
|
|
99
99
|
# @return [ChatEditMessage200Response]
|
|
100
100
|
describe 'chat_edit_message test' do
|
|
@@ -116,6 +116,19 @@ describe 'ChatApi' do
|
|
|
116
116
|
end
|
|
117
117
|
end
|
|
118
118
|
|
|
119
|
+
# unit tests for chat_get_chat_e2ee_participant_keys
|
|
120
|
+
# List participant E2EE public keys
|
|
121
|
+
# Returns registered identity public keys for users in this chat (for client-side key distribution and encryption).
|
|
122
|
+
# @param project_id Project ID.
|
|
123
|
+
# @param chat_id Chat ID.
|
|
124
|
+
# @param [Hash] opts the optional parameters
|
|
125
|
+
# @return [ChatGetChatE2eeParticipantKeys200Response]
|
|
126
|
+
describe 'chat_get_chat_e2ee_participant_keys test' do
|
|
127
|
+
it 'should work' do
|
|
128
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
129
|
+
end
|
|
130
|
+
end
|
|
131
|
+
|
|
119
132
|
# unit tests for chat_get_messages
|
|
120
133
|
# Get chat messages
|
|
121
134
|
# Returns paginated messages for a chat with optional before/after cursor for time-based pagination.
|
|
@@ -161,6 +174,19 @@ describe 'ChatApi' do
|
|
|
161
174
|
end
|
|
162
175
|
end
|
|
163
176
|
|
|
177
|
+
# unit tests for chat_put_chat_e2ee_key
|
|
178
|
+
# Register chat E2EE identity public key
|
|
179
|
+
# Stores your long-term public key for end-to-end encrypted chat (key agreement). Private keys never leave the client. Other participants use this to encrypt messages to you.
|
|
180
|
+
# @param project_id Project ID.
|
|
181
|
+
# @param chat_put_chat_e2ee_key_request
|
|
182
|
+
# @param [Hash] opts the optional parameters
|
|
183
|
+
# @return [ChatPutChatE2eeKey200Response]
|
|
184
|
+
describe 'chat_put_chat_e2ee_key test' do
|
|
185
|
+
it 'should work' do
|
|
186
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
187
|
+
end
|
|
188
|
+
end
|
|
189
|
+
|
|
164
190
|
# unit tests for chat_remove_participant
|
|
165
191
|
# Remove participant from chat
|
|
166
192
|
# Remove a user from the chat by userId.
|
|
@@ -192,10 +218,10 @@ describe 'ChatApi' do
|
|
|
192
218
|
|
|
193
219
|
# unit tests for chat_send_message
|
|
194
220
|
# Send message
|
|
195
|
-
# Send a message (text, image, video, audio, file, location, contact) to a chat with optional replyTo and mentions.
|
|
221
|
+
# Send a message (text, image, video, audio, file, location, contact) to a chat with optional replyTo and mentions. For end-to-end encryption, use type=text with e2ee.ciphertext (base64) instead of plaintext content; server stores ciphertext only.
|
|
196
222
|
# @param project_id Project ID.
|
|
197
223
|
# @param chat_id Chat ID.
|
|
198
|
-
# @param chat_send_message_request Message type
|
|
224
|
+
# @param chat_send_message_request Message type and content, or E2EE ciphertext for text messages. Plaintext requires content; E2EE requires type=text and e2ee.ciphertext (omit plaintext content).
|
|
199
225
|
# @param [Hash] opts the optional parameters
|
|
200
226
|
# @return [ChatSendMessage201Response]
|
|
201
227
|
describe 'chat_send_message test' do
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
data/spec/api/data_api_spec.rb
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
data/spec/api/health_api_spec.rb
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
|
@@ -39,7 +39,7 @@ describe 'IntegrationsApi' do
|
|
|
39
39
|
# @param integration_id Integration ID to execute.
|
|
40
40
|
# @param integrations_execute_request Endpoint path, HTTP method, optional params and body for the integration call.
|
|
41
41
|
# @param [Hash] opts the optional parameters
|
|
42
|
-
# @return [
|
|
42
|
+
# @return [MultiRoleGetPermissionsMatrix200Response]
|
|
43
43
|
describe 'integrations_execute test' do
|
|
44
44
|
it 'should work' do
|
|
45
45
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
|
@@ -62,7 +62,7 @@ describe 'MultiRoleApi' do
|
|
|
62
62
|
|
|
63
63
|
# unit tests for multi_role_add_role
|
|
64
64
|
# Add custom role
|
|
65
|
-
# Add a custom role to a project with specific permissions and signup endpoint. Accepts BearerToken (JWT) or ApiKeyAuth (X-API-Key).
|
|
65
|
+
# Add a custom role to a project with specific permissions and signup endpoint. Optional **featurePermissions** must align with app JWT gates — see `components/schemas/AppRoleFeaturePermissions` and `services/appRoleFeatureMap.js`. Accepts BearerToken (JWT) or ApiKeyAuth (X-API-Key).
|
|
66
66
|
# @param project_id Project ID.
|
|
67
67
|
# @param multi_role_add_role_request Custom role definition. Use `collectionPermissions` to apply CRUD per collection slug (e.g. users/products/orders). `defaultPermissions` is optional for global/base permissions.
|
|
68
68
|
# @param [Hash] opts the optional parameters
|
|
@@ -73,6 +73,20 @@ describe 'MultiRoleApi' do
|
|
|
73
73
|
end
|
|
74
74
|
end
|
|
75
75
|
|
|
76
|
+
# unit tests for multi_role_apply_role_feature_preset
|
|
77
|
+
# Apply Admin / User / Viewer feature permission preset
|
|
78
|
+
# Sets `featurePermissions` from preset `admin`, `user`, or `viewer`.
|
|
79
|
+
# @param project_id
|
|
80
|
+
# @param role_slug
|
|
81
|
+
# @param multi_role_apply_role_feature_preset_request
|
|
82
|
+
# @param [Hash] opts the optional parameters
|
|
83
|
+
# @return [nil]
|
|
84
|
+
describe 'multi_role_apply_role_feature_preset test' do
|
|
85
|
+
it 'should work' do
|
|
86
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
87
|
+
end
|
|
88
|
+
end
|
|
89
|
+
|
|
76
90
|
# unit tests for multi_role_get_available_roles
|
|
77
91
|
# Get available roles for signup
|
|
78
92
|
# Get all available roles for user signup in a project. Accepts BearerToken (JWT) or ApiKeyAuth (X-API-Key).
|
|
@@ -97,6 +111,31 @@ describe 'MultiRoleApi' do
|
|
|
97
111
|
end
|
|
98
112
|
end
|
|
99
113
|
|
|
114
|
+
# unit tests for multi_role_get_permissions_matrix
|
|
115
|
+
# Get permissions matrix (collections + featurePermissions)
|
|
116
|
+
# Per-collection role actions and per-role `featurePermissions` for app-role gates.
|
|
117
|
+
# @param project_id
|
|
118
|
+
# @param [Hash] opts the optional parameters
|
|
119
|
+
# @return [MultiRoleGetPermissionsMatrix200Response]
|
|
120
|
+
describe 'multi_role_get_permissions_matrix test' do
|
|
121
|
+
it 'should work' do
|
|
122
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
123
|
+
end
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
# unit tests for multi_role_simulate_app_permissions
|
|
127
|
+
# Simulate app-role feature permission for a path
|
|
128
|
+
# Given role slug and either `operationId` or HTTP method + pathname, returns whether `featurePermissions` would allow gated routes. Unmapped paths or unknown operation IDs return allowed with `no_feature_gate_for_path` or `no_feature_gate_for_operation_id`.
|
|
129
|
+
# @param project_id
|
|
130
|
+
# @param multi_role_simulate_app_permissions_request
|
|
131
|
+
# @param [Hash] opts the optional parameters
|
|
132
|
+
# @return [Object]
|
|
133
|
+
describe 'multi_role_simulate_app_permissions test' do
|
|
134
|
+
it 'should work' do
|
|
135
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
136
|
+
end
|
|
137
|
+
end
|
|
138
|
+
|
|
100
139
|
# unit tests for multi_role_toggle_role
|
|
101
140
|
# Toggle role on/off
|
|
102
141
|
# Enable or disable a role for the project. When disabled, the role is no longer available for signup or assignment.
|
|
@@ -128,7 +167,7 @@ describe 'MultiRoleApi' do
|
|
|
128
167
|
|
|
129
168
|
# unit tests for multi_role_update_role
|
|
130
169
|
# Update role configuration
|
|
131
|
-
# Update an app role — same fields as **Add custom role** (partial). `defaultPermissions` / `collectionPermissions` use the same normalization as on create.
|
|
170
|
+
# Update an app role — same fields as **Add custom role** (partial). `defaultPermissions` / `collectionPermissions` use the same normalization as on create. **featurePermissions:** `components/schemas/AppRoleFeaturePermissions` (see `services/appRoleFeatureMap.js`).
|
|
132
171
|
# @param project_id Project ID.
|
|
133
172
|
# @param role_slug Role slug to update (e.g. starter `customer` or a role you added).
|
|
134
173
|
# @param multi_role_update_role_request Same fields as **Add custom role** — send only fields you want to change. `defaultPermissions` / `collectionPermissions` are normalized the same way as on create.
|
|
@@ -142,9 +181,9 @@ describe 'MultiRoleApi' do
|
|
|
142
181
|
|
|
143
182
|
# unit tests for multi_role_update_settings
|
|
144
183
|
# Update multi-role feature settings
|
|
145
|
-
# Update multi-role feature settings: enable/disable the feature, `defaultRole`, and `settings` (`allowMultipleRoles`, `requireRoleSelection`, `autoAssignDefault`). Does not edit role definitions — use `POST/PATCH .../multi-role/roles` (same body shape as add role). Accepts BearerToken (JWT) or ApiKeyAuth (X-API-Key).
|
|
184
|
+
# Update multi-role feature settings: enable/disable the feature, `defaultRole`, and `settings` (`allowMultipleRoles`, `requireRoleSelection`, `autoAssignDefault`, `dataOwnerField`). Does not edit role definitions — use `POST/PATCH .../multi-role/roles` (same body shape as add role). Accepts BearerToken (JWT) or ApiKeyAuth (X-API-Key).
|
|
146
185
|
# @param project_id Project ID.
|
|
147
|
-
# @param multi_role_update_settings_request Feature flags only — not per-role approval. Use `settings.allowMultipleRoles`, `requireRoleSelection`, `autoAssignDefault`.
|
|
186
|
+
# @param multi_role_update_settings_request Feature flags only — not per-role approval. Use `settings.allowMultipleRoles`, `requireRoleSelection`, `autoAssignDefault`, `dataOwnerField`.
|
|
148
187
|
# @param [Hash] opts the optional parameters
|
|
149
188
|
# @return [MultiRoleUpdateSettings200Response]
|
|
150
189
|
describe 'multi_role_update_settings test' do
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#MUDBASESDK
|
|
3
|
+
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
|
+
Contact: support@mudbase.dev
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.20.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
|
|
16
|
+
# Unit tests for Mudbase::OrganizationsApi
|
|
17
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
18
|
+
# Please update as you see appropriate
|
|
19
|
+
describe 'OrganizationsApi' do
|
|
20
|
+
before do
|
|
21
|
+
# run before each test
|
|
22
|
+
@api_instance = Mudbase::OrganizationsApi.new
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
after do
|
|
26
|
+
# run after each test
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
describe 'test an instance of OrganizationsApi' do
|
|
30
|
+
it 'should create an instance of OrganizationsApi' do
|
|
31
|
+
expect(@api_instance).to be_instance_of(Mudbase::OrganizationsApi)
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
# unit tests for organizations_add_domain
|
|
36
|
+
# Add custom domain
|
|
37
|
+
# @param org_id
|
|
38
|
+
# @param project_id
|
|
39
|
+
# @param organizations_add_domain_request
|
|
40
|
+
# @param [Hash] opts the optional parameters
|
|
41
|
+
# @return [nil]
|
|
42
|
+
describe 'organizations_add_domain test' do
|
|
43
|
+
it 'should work' do
|
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
# unit tests for organizations_list_domains
|
|
49
|
+
# List custom domains and DNS TXT hints
|
|
50
|
+
# Owner/admin. Domains are per project. Returns dnsTxtHost, dnsTxtValue, platformActivationPending (dns_verified waiting for ops), and customDomainLiveForApiTraffic (active or legacy verified).
|
|
51
|
+
# @param org_id
|
|
52
|
+
# @param project_id
|
|
53
|
+
# @param [Hash] opts the optional parameters
|
|
54
|
+
# @return [nil]
|
|
55
|
+
describe 'organizations_list_domains test' do
|
|
56
|
+
it 'should work' do
|
|
57
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# unit tests for organizations_patch_domain
|
|
62
|
+
# Patch domain status or regenerate token
|
|
63
|
+
# @param org_id
|
|
64
|
+
# @param project_id
|
|
65
|
+
# @param hostname
|
|
66
|
+
# @param [Hash] opts the optional parameters
|
|
67
|
+
# @option opts [OrganizationsPatchDomainRequest] :organizations_patch_domain_request
|
|
68
|
+
# @return [nil]
|
|
69
|
+
describe 'organizations_patch_domain test' do
|
|
70
|
+
it 'should work' do
|
|
71
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
72
|
+
end
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
# unit tests for organizations_remove_domain
|
|
76
|
+
# Remove custom domain
|
|
77
|
+
# @param org_id
|
|
78
|
+
# @param project_id
|
|
79
|
+
# @param hostname
|
|
80
|
+
# @param [Hash] opts the optional parameters
|
|
81
|
+
# @return [nil]
|
|
82
|
+
describe 'organizations_remove_domain test' do
|
|
83
|
+
it 'should work' do
|
|
84
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
# unit tests for organizations_report_domain_platform_ready
|
|
89
|
+
# Notify platform ops hosting / edge ready
|
|
90
|
+
# Legacy optional ops email. First Mudbase TXT success already emails ops. Allowed during platform setup after Mudbase TXT. Recipients default to admin@mudhaxkservices.com and admin@mudbase.dev when CUSTOM_DOMAIN_OPS_NOTIFY_EMAILS is unset. Returns 503 email_provider_not_configured if no email provider is configured. Does not change domain status.
|
|
91
|
+
# @param org_id
|
|
92
|
+
# @param project_id
|
|
93
|
+
# @param hostname
|
|
94
|
+
# @param [Hash] opts the optional parameters
|
|
95
|
+
# @option opts [OrganizationsReportDomainPlatformReadyRequest] :organizations_report_domain_platform_ready_request
|
|
96
|
+
# @return [nil]
|
|
97
|
+
describe 'organizations_report_domain_platform_ready test' do
|
|
98
|
+
it 'should work' do
|
|
99
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
100
|
+
end
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
# unit tests for organizations_set_primary_domain
|
|
104
|
+
# Set primary custom domain
|
|
105
|
+
# @param org_id
|
|
106
|
+
# @param project_id
|
|
107
|
+
# @param organizations_set_primary_domain_request
|
|
108
|
+
# @param [Hash] opts the optional parameters
|
|
109
|
+
# @return [nil]
|
|
110
|
+
describe 'organizations_set_primary_domain test' do
|
|
111
|
+
it 'should work' do
|
|
112
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
113
|
+
end
|
|
114
|
+
end
|
|
115
|
+
|
|
116
|
+
# unit tests for organizations_verify_domain_dns
|
|
117
|
+
# Verify domain via DNS TXT
|
|
118
|
+
# On first success from pending/failed, status becomes cname_pending_staff; ops email once; audit org.domain.txt_verified and org.domain.cname_staff_queued.
|
|
119
|
+
# @param org_id
|
|
120
|
+
# @param project_id
|
|
121
|
+
# @param hostname
|
|
122
|
+
# @param [Hash] opts the optional parameters
|
|
123
|
+
# @return [nil]
|
|
124
|
+
describe 'organizations_verify_domain_dns test' do
|
|
125
|
+
it 'should work' do
|
|
126
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
127
|
+
end
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
end
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
data/spec/api/search_api_spec.rb
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
data/spec/api/usage_api_spec.rb
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
data/spec/api/users_api_spec.rb
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
|
@@ -175,7 +175,7 @@ describe 'UsersApi' do
|
|
|
175
175
|
# unit tests for users_verify_email
|
|
176
176
|
# Verify email address (organization and project)
|
|
177
177
|
# Verifies the user's email using the token from the link sent at signup. Works for both organization (platform) and app signups; the token is from the verification link (e.g. verify-email?token=... for org, or verify-email?token=...&project=... for project).
|
|
178
|
-
# @param
|
|
178
|
+
# @param auth_verify_email_request Verification token from the email link; optional projectId for project context.
|
|
179
179
|
# @param [Hash] opts the optional parameters
|
|
180
180
|
# @return [MessageResponse]
|
|
181
181
|
describe 'users_verify_email test' do
|
data/spec/api/wallet_api_spec.rb
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
|
@@ -222,7 +222,7 @@ describe 'WalletApi' do
|
|
|
222
222
|
# Sends a test payload to the given URL to verify webhook connectivity and signature. Uses the same signing as real deliveries.
|
|
223
223
|
# @param wallet_test_webhook_request URL to send the test POST to; optional secret and projectId for scoping; optional event type to simulate.
|
|
224
224
|
# @param [Hash] opts the optional parameters
|
|
225
|
-
# @return [
|
|
225
|
+
# @return [MultiRoleGetPermissionsMatrix200Response]
|
|
226
226
|
describe 'wallet_test_webhook test' do
|
|
227
227
|
it 'should work' do
|
|
228
228
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|
data/spec/models/api_key_spec.rb
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
=begin
|
|
2
2
|
#MUDBASESDK
|
|
3
3
|
|
|
4
|
-
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API)
|
|
4
|
+
#MUDBASE is a scalable, real-time, and secure Backend-as-a-Service (BaaS) platform designed for modern applications. Built with custom logic, it offers fine-grained control, extensibility, and enterprise-grade security. ## Features - 🔐 Multi-provider authentication (30+ OAuth providers) - 📊 Real-time database with collections - 📁 File storage and management - 🔑 API key management with permissions - 🔗 Webhook system with retry logic - ⚡ Serverless functions - 💬 Multi-channel messaging (Push, Email, SMS) - 📈 Usage analytics and monitoring - 🌐 Real-time WebSocket events - 🔍 Full-text search capabilities - 💳 Billing: Flutterwave only for fiat (platform subscriptions + org payment processing with 7% + $0.50 split); crypto payment processor for multi-chain checkout - 📡 Block-based multi-chain wallet monitoring (ETH/UTXO scanners, GetBlock, scanner metrics API) - 🏢 Enterprise: custom domains under `GET/POST/PATCH/DELETE /api/orgs/{orgId}/projects/{projectId}/domains` (plan `features.customDomainAllowed`); stable error codes `hostname_in_use`, `domain_limit_reached`, `domain_rate_limited`, `custom_domain_not_allowed`, `provision_conflict`, `not_enterprise_plan`; internal `POST /internal/provision-enterprise` with header `X-Internal-Api-Key`; responses on platform host may include `X-Mudbase-Warning: use_dedicated_api` for dedicated orgs.
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.2.
|
|
6
|
+
The version of the OpenAPI document: 1.2.10
|
|
7
7
|
Contact: support@mudbase.dev
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
Generator version: 7.20.0
|