mudbase 1.2.9 → 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.
Files changed (755) hide show
  1. checksums.yaml +4 -4
  2. data/docs/AuthApi.md +130 -0
  3. data/docs/AuthResendVerificationRequest.md +20 -0
  4. data/docs/{UsersVerifyEmailRequest.md → AuthVerifyEmailRequest.md} +2 -2
  5. data/docs/ChatApi.md +149 -5
  6. data/docs/ChatEditMessage200ResponseData.md +4 -0
  7. data/docs/ChatEditMessageRequest.md +4 -2
  8. data/docs/ChatEditMessageRequestE2ee.md +28 -0
  9. data/docs/ChatGetChatE2eeParticipantKeys200Response.md +20 -0
  10. data/docs/ChatGetChatE2eeParticipantKeys200ResponseDataInner.md +24 -0
  11. data/docs/ChatPutChatE2eeKey200Response.md +20 -0
  12. data/docs/ChatPutChatE2eeKey200ResponseData.md +22 -0
  13. data/docs/ChatPutChatE2eeKeyRequest.md +20 -0
  14. data/docs/ChatSendMessageRequest.md +3 -1
  15. data/docs/ChatSendMessageRequestE2ee.md +28 -0
  16. data/docs/IntegrationsApi.md +4 -4
  17. data/docs/MultiRoleAddRoleRequest.md +38 -0
  18. data/docs/MultiRoleAddRoleRequestDefaultPermissionsInner.md +20 -0
  19. data/docs/MultiRoleApi.md +723 -0
  20. data/docs/MultiRoleApplyRoleFeaturePresetRequest.md +18 -0
  21. data/docs/MultiRoleGetAvailableRoles200Response.md +20 -0
  22. data/docs/MultiRoleGetAvailableRoles200ResponseDataInner.md +30 -0
  23. data/docs/MultiRoleGetConfig200Response.md +20 -0
  24. data/docs/MultiRoleGetConfig200ResponseData.md +24 -0
  25. data/docs/{WalletTestWebhook200Response.md → MultiRoleGetPermissionsMatrix200Response.md} +2 -2
  26. data/docs/MultiRoleSimulateAppPermissionsRequest.md +26 -0
  27. data/docs/MultiRoleToggleRole200Response.md +22 -0
  28. data/docs/MultiRoleToggleRoleRequest.md +18 -0
  29. data/docs/MultiRoleUpdateCollectionPermissionsRequest.md +24 -0
  30. data/docs/MultiRoleUpdateRoleRequest.md +36 -0
  31. data/docs/MultiRoleUpdateRoleRequestCollectionPermissionsValue.md +49 -0
  32. data/docs/MultiRoleUpdateRoleRequestCollectionPermissionsValueOneOf.md +20 -0
  33. data/docs/MultiRoleUpdateSettings200Response.md +22 -0
  34. data/docs/MultiRoleUpdateSettingsRequest.md +22 -0
  35. data/docs/MultiRoleUpdateSettingsRequestSettings.md +24 -0
  36. data/docs/OrganizationsAddDomainRequest.md +20 -0
  37. data/docs/OrganizationsApi.md +516 -0
  38. data/docs/OrganizationsPatchDomainRequest.md +20 -0
  39. data/docs/OrganizationsReportDomainPlatformReadyRequest.md +18 -0
  40. data/docs/OrganizationsSetPrimaryDomainRequest.md +18 -0
  41. data/docs/UsersApi.md +6 -6
  42. data/docs/WalletApi.md +4 -4
  43. data/lib/mudbase/api/auth_api.rb +138 -2
  44. data/lib/mudbase/api/billing_api.rb +2 -2
  45. data/lib/mudbase/api/chat_api.rb +151 -8
  46. data/lib/mudbase/api/collections_api.rb +2 -2
  47. data/lib/mudbase/api/compliance_api.rb +2 -2
  48. data/lib/mudbase/api/data_api.rb +2 -2
  49. data/lib/mudbase/api/functions_api.rb +2 -2
  50. data/lib/mudbase/api/health_api.rb +2 -2
  51. data/lib/mudbase/api/integrations_api.rb +5 -5
  52. data/lib/mudbase/api/messaging_api.rb +2 -2
  53. data/lib/mudbase/api/multi_role_api.rb +735 -2
  54. data/lib/mudbase/api/organizations_api.rb +547 -0
  55. data/lib/mudbase/api/realtime_analytics_api.rb +2 -2
  56. data/lib/mudbase/api/role_elevation_api.rb +2 -2
  57. data/lib/mudbase/api/search_api.rb +2 -2
  58. data/lib/mudbase/api/storage_api.rb +2 -2
  59. data/lib/mudbase/api/usage_api.rb +2 -2
  60. data/lib/mudbase/api/users_api.rb +11 -11
  61. data/lib/mudbase/api/wallet_api.rb +5 -5
  62. data/lib/mudbase/api/webhooks_api.rb +2 -2
  63. data/lib/mudbase/api_client.rb +2 -2
  64. data/lib/mudbase/api_error.rb +2 -2
  65. data/lib/mudbase/api_model_base.rb +2 -2
  66. data/lib/mudbase/configuration.rb +9 -2
  67. data/lib/mudbase/models/api_key.rb +2 -2
  68. data/lib/mudbase/models/api_key_permission.rb +2 -2
  69. data/lib/mudbase/models/api_key_usage.rb +2 -2
  70. data/lib/mudbase/models/api_key_usage_response.rb +2 -2
  71. data/lib/mudbase/models/api_key_with_secret.rb +2 -2
  72. data/lib/mudbase/models/auth_config.rb +2 -2
  73. data/lib/mudbase/models/auth_confirm_password_reset_request.rb +2 -2
  74. data/lib/mudbase/models/auth_convert_anonymous200_response.rb +2 -2
  75. data/lib/mudbase/models/auth_convert_anonymous_request.rb +2 -2
  76. data/lib/mudbase/models/auth_create_anonymous200_response.rb +2 -2
  77. data/lib/mudbase/models/auth_create_anonymous200_response_user.rb +2 -2
  78. data/lib/mudbase/models/auth_create_anonymous_request.rb +2 -2
  79. data/lib/mudbase/models/auth_get_o_auth_providers200_response.rb +2 -2
  80. data/lib/mudbase/models/auth_get_o_auth_providers200_response_providers_inner.rb +2 -2
  81. data/lib/mudbase/models/auth_get_session200_response.rb +2 -2
  82. data/lib/mudbase/models/auth_login200_response.rb +2 -2
  83. data/lib/mudbase/models/auth_login200_response_user.rb +2 -2
  84. data/lib/mudbase/models/auth_login403_response.rb +2 -2
  85. data/lib/mudbase/models/auth_login_request.rb +2 -2
  86. data/lib/mudbase/models/auth_oauth_callback200_response.rb +2 -2
  87. data/lib/mudbase/models/auth_oauth_initiate200_response.rb +2 -2
  88. data/lib/mudbase/models/auth_oauth_initiate400_response.rb +2 -2
  89. data/lib/mudbase/models/auth_oauth_signup_with_role400_response.rb +2 -2
  90. data/lib/mudbase/models/auth_provider.rb +2 -2
  91. data/lib/mudbase/models/auth_refresh200_response.rb +2 -2
  92. data/lib/mudbase/models/auth_refresh400_response.rb +2 -2
  93. data/lib/mudbase/models/auth_refresh_request.rb +2 -2
  94. data/lib/mudbase/models/auth_register201_response.rb +2 -2
  95. data/lib/mudbase/models/auth_register201_response_user.rb +2 -2
  96. data/lib/mudbase/models/auth_register429_response.rb +2 -2
  97. data/lib/mudbase/models/auth_register_request.rb +2 -2
  98. data/lib/mudbase/models/auth_register_with_role_request.rb +2 -2
  99. data/lib/mudbase/models/auth_request_password_reset_request.rb +2 -2
  100. data/lib/mudbase/models/auth_resend_verification_request.rb +174 -0
  101. data/lib/mudbase/models/auth_reset_password_request.rb +2 -2
  102. data/lib/mudbase/models/auth_response.rb +2 -2
  103. data/lib/mudbase/models/{users_verify_email_request.rb → auth_verify_email_request.rb} +5 -5
  104. data/lib/mudbase/models/auth_verify_magic_link_request.rb +2 -2
  105. data/lib/mudbase/models/billing.rb +2 -2
  106. data/lib/mudbase/models/billing_check_feature_access200_response.rb +2 -2
  107. data/lib/mudbase/models/billing_check_subscription200_response.rb +2 -2
  108. data/lib/mudbase/models/billing_check_subscription200_response_subscription.rb +2 -2
  109. data/lib/mudbase/models/billing_create_checkout_session200_response.rb +2 -2
  110. data/lib/mudbase/models/billing_create_checkout_session200_response_data.rb +2 -2
  111. data/lib/mudbase/models/billing_create_checkout_session200_response_data_payment_options_inner.rb +2 -2
  112. data/lib/mudbase/models/billing_create_checkout_session_request.rb +2 -2
  113. data/lib/mudbase/models/billing_create_checkout_session_request_customer_info.rb +2 -2
  114. data/lib/mudbase/models/billing_get_checkout_payment200_response.rb +2 -2
  115. data/lib/mudbase/models/billing_get_checkout_payment200_response_data.rb +2 -2
  116. data/lib/mudbase/models/billing_get_public_plans200_response.rb +2 -2
  117. data/lib/mudbase/models/billing_handle_crypto_webhook200_response.rb +2 -2
  118. data/lib/mudbase/models/billing_handle_crypto_webhook_request.rb +2 -2
  119. data/lib/mudbase/models/billing_handle_crypto_webhook_request_data.rb +2 -2
  120. data/lib/mudbase/models/billing_handle_flutterwave_webhook_request.rb +2 -2
  121. data/lib/mudbase/models/billing_handle_flutterwave_webhook_request_data.rb +2 -2
  122. data/lib/mudbase/models/billing_handle_flutterwave_webhook_request_data_customer.rb +2 -2
  123. data/lib/mudbase/models/billing_initialize_payment_request.rb +2 -2
  124. data/lib/mudbase/models/billing_initialize_payment_request_customer.rb +2 -2
  125. data/lib/mudbase/models/billing_last_payment.rb +2 -2
  126. data/lib/mudbase/models/billing_record_usage_request.rb +2 -2
  127. data/lib/mudbase/models/billing_verify_payment200_response.rb +2 -2
  128. data/lib/mudbase/models/billing_verify_payment200_response_data.rb +2 -2
  129. data/lib/mudbase/models/billing_verify_payment200_response_data_subscription.rb +2 -2
  130. data/lib/mudbase/models/bucket.rb +2 -2
  131. data/lib/mudbase/models/bucket_list_response.rb +2 -2
  132. data/lib/mudbase/models/bucket_response.rb +2 -2
  133. data/lib/mudbase/models/change_password_request.rb +2 -2
  134. data/lib/mudbase/models/chat_add_participant200_response.rb +2 -2
  135. data/lib/mudbase/models/chat_add_participant200_response_data.rb +2 -2
  136. data/lib/mudbase/models/chat_add_participant200_response_data_participants_inner.rb +2 -2
  137. data/lib/mudbase/models/chat_add_participant_request.rb +2 -2
  138. data/lib/mudbase/models/chat_add_reaction200_response.rb +2 -2
  139. data/lib/mudbase/models/chat_add_reaction200_response_data_inner.rb +2 -2
  140. data/lib/mudbase/models/chat_add_reaction_request.rb +2 -2
  141. data/lib/mudbase/models/chat_create201_response.rb +2 -2
  142. data/lib/mudbase/models/chat_create201_response_data.rb +2 -2
  143. data/lib/mudbase/models/chat_create_request.rb +2 -2
  144. data/lib/mudbase/models/chat_edit_message200_response.rb +2 -2
  145. data/lib/mudbase/models/chat_edit_message200_response_data.rb +21 -3
  146. data/lib/mudbase/models/chat_edit_message_request.rb +16 -23
  147. data/lib/mudbase/models/chat_edit_message_request_e2ee.rb +193 -0
  148. data/lib/mudbase/models/chat_get200_response.rb +2 -2
  149. data/lib/mudbase/models/chat_get200_response_data.rb +2 -2
  150. data/lib/mudbase/models/chat_get200_response_data_participants_inner.rb +2 -2
  151. data/lib/mudbase/models/chat_get_chat_e2ee_participant_keys200_response.rb +158 -0
  152. data/lib/mudbase/models/chat_get_chat_e2ee_participant_keys200_response_data_inner.rb +174 -0
  153. data/lib/mudbase/models/chat_get_messages200_response.rb +2 -2
  154. data/lib/mudbase/models/chat_get_messages200_response_data.rb +2 -2
  155. data/lib/mudbase/models/chat_get_messages200_response_data_messages_inner.rb +2 -2
  156. data/lib/mudbase/models/chat_get_messages200_response_data_messages_inner_sender.rb +2 -2
  157. data/lib/mudbase/models/chat_list200_response.rb +2 -2
  158. data/lib/mudbase/models/chat_list200_response_data.rb +2 -2
  159. data/lib/mudbase/models/chat_list200_response_data_chats_inner.rb +2 -2
  160. data/lib/mudbase/models/chat_list200_response_data_chats_inner_last_message.rb +2 -2
  161. data/lib/mudbase/models/chat_mark_as_read200_response.rb +2 -2
  162. data/lib/mudbase/models/chat_mark_as_read200_response_data.rb +2 -2
  163. data/lib/mudbase/models/chat_mark_as_read_request.rb +2 -2
  164. data/lib/mudbase/models/chat_put_chat_e2ee_key200_response.rb +156 -0
  165. data/lib/mudbase/models/chat_put_chat_e2ee_key200_response_data.rb +165 -0
  166. data/lib/mudbase/models/chat_put_chat_e2ee_key_request.rb +175 -0
  167. data/lib/mudbase/models/chat_remove_participant_request.rb +2 -2
  168. data/lib/mudbase/models/chat_remove_reaction200_response.rb +2 -2
  169. data/lib/mudbase/models/chat_remove_reaction200_response_data_inner.rb +2 -2
  170. data/lib/mudbase/models/chat_send_message201_response.rb +2 -2
  171. data/lib/mudbase/models/chat_send_message201_response_data.rb +2 -2
  172. data/lib/mudbase/models/chat_send_message_request.rb +13 -20
  173. data/lib/mudbase/models/chat_send_message_request_e2ee.rb +196 -0
  174. data/lib/mudbase/models/collection.rb +2 -2
  175. data/lib/mudbase/models/collections_create201_response.rb +2 -2
  176. data/lib/mudbase/models/collections_list200_response.rb +2 -2
  177. data/lib/mudbase/models/compliance_log_security_event200_response.rb +2 -2
  178. data/lib/mudbase/models/compliance_log_security_event200_response_event.rb +2 -2
  179. data/lib/mudbase/models/compliance_log_security_event_request.rb +2 -2
  180. data/lib/mudbase/models/compliance_log_security_event_request_details.rb +2 -2
  181. data/lib/mudbase/models/confirm_upload_response.rb +2 -2
  182. data/lib/mudbase/models/confirm_upload_response_scan.rb +2 -2
  183. data/lib/mudbase/models/create_api_key_request.rb +2 -2
  184. data/lib/mudbase/models/create_bucket_request.rb +2 -2
  185. data/lib/mudbase/models/create_collection_request.rb +2 -2
  186. data/lib/mudbase/models/create_function_request.rb +2 -2
  187. data/lib/mudbase/models/create_project_request.rb +2 -2
  188. data/lib/mudbase/models/data_list_response.rb +2 -2
  189. data/lib/mudbase/models/data_list_response_data_inner.rb +2 -2
  190. data/lib/mudbase/models/data_response.rb +2 -2
  191. data/lib/mudbase/models/database_config.rb +2 -2
  192. data/lib/mudbase/models/email_request.rb +2 -2
  193. data/lib/mudbase/models/email_request_to.rb +2 -2
  194. data/lib/mudbase/models/error.rb +2 -2
  195. data/lib/mudbase/models/error_details.rb +2 -2
  196. data/lib/mudbase/models/field.rb +2 -2
  197. data/lib/mudbase/models/field_default.rb +2 -2
  198. data/lib/mudbase/models/file_list_response.rb +2 -2
  199. data/lib/mudbase/models/file_metadata.rb +2 -2
  200. data/lib/mudbase/models/file_response.rb +2 -2
  201. data/lib/mudbase/models/file_upload_response.rb +2 -2
  202. data/lib/mudbase/models/function.rb +2 -2
  203. data/lib/mudbase/models/function_execution.rb +2 -2
  204. data/lib/mudbase/models/function_execution_response.rb +2 -2
  205. data/lib/mudbase/models/function_execution_response_data.rb +2 -2
  206. data/lib/mudbase/models/function_list_response.rb +2 -2
  207. data/lib/mudbase/models/function_list_response_data.rb +2 -2
  208. data/lib/mudbase/models/function_logs_response.rb +2 -2
  209. data/lib/mudbase/models/function_logs_response_data.rb +2 -2
  210. data/lib/mudbase/models/function_response.rb +2 -2
  211. data/lib/mudbase/models/function_stats.rb +2 -2
  212. data/lib/mudbase/models/function_trigger.rb +2 -2
  213. data/lib/mudbase/models/functions_delete200_response.rb +2 -2
  214. data/lib/mudbase/models/functions_execute_request.rb +2 -2
  215. data/lib/mudbase/models/functions_get_versions200_response.rb +2 -2
  216. data/lib/mudbase/models/functions_get_versions200_response_data.rb +2 -2
  217. data/lib/mudbase/models/functions_get_versions200_response_data_versions_inner.rb +2 -2
  218. data/lib/mudbase/models/functions_rollback_request.rb +2 -2
  219. data/lib/mudbase/models/functions_simulate_request.rb +2 -2
  220. data/lib/mudbase/models/functions_trigger_webhook200_response.rb +2 -2
  221. data/lib/mudbase/models/functions_trigger_webhook400_response.rb +2 -2
  222. data/lib/mudbase/models/functions_trigger_webhook401_response.rb +2 -2
  223. data/lib/mudbase/models/health_response.rb +2 -2
  224. data/lib/mudbase/models/health_response_services.rb +2 -2
  225. data/lib/mudbase/models/integrations_execute_request.rb +2 -2
  226. data/lib/mudbase/models/integrations_list200_response.rb +2 -2
  227. data/lib/mudbase/models/integrations_list200_response_integrations_inner.rb +2 -2
  228. data/lib/mudbase/models/invite_member_request.rb +2 -2
  229. data/lib/mudbase/models/limits.rb +2 -2
  230. data/lib/mudbase/models/login_request.rb +2 -2
  231. data/lib/mudbase/models/magic_link_request.rb +2 -2
  232. data/lib/mudbase/models/message.rb +2 -2
  233. data/lib/mudbase/models/message_history_response.rb +2 -2
  234. data/lib/mudbase/models/message_history_response_data.rb +2 -2
  235. data/lib/mudbase/models/message_response.rb +2 -2
  236. data/lib/mudbase/models/message_sent_response.rb +2 -2
  237. data/lib/mudbase/models/message_sent_response_data.rb +2 -2
  238. data/lib/mudbase/models/message_stats_response.rb +2 -2
  239. data/lib/mudbase/models/message_stats_response_data.rb +2 -2
  240. data/lib/mudbase/models/message_stats_response_data_by_status.rb +2 -2
  241. data/lib/mudbase/models/message_stats_response_data_by_type.rb +2 -2
  242. data/lib/mudbase/models/message_stats_response_data_period.rb +2 -2
  243. data/lib/mudbase/models/multi_role_add_role_request.rb +297 -0
  244. data/lib/mudbase/models/multi_role_add_role_request_default_permissions_inner.rb +158 -0
  245. data/lib/mudbase/models/multi_role_apply_role_feature_preset_request.rb +188 -0
  246. data/lib/mudbase/models/multi_role_get_available_roles200_response.rb +158 -0
  247. data/lib/mudbase/models/multi_role_get_available_roles200_response_data_inner.rb +201 -0
  248. data/lib/mudbase/models/multi_role_get_config200_response.rb +156 -0
  249. data/lib/mudbase/models/multi_role_get_config200_response_data.rb +176 -0
  250. data/lib/mudbase/models/{wallet_test_webhook200_response.rb → multi_role_get_permissions_matrix200_response.rb} +5 -5
  251. data/lib/mudbase/models/multi_role_simulate_app_permissions_request.rb +203 -0
  252. data/lib/mudbase/models/multi_role_toggle_role200_response.rb +165 -0
  253. data/lib/mudbase/models/multi_role_toggle_role_request.rb +164 -0
  254. data/lib/mudbase/models/multi_role_update_collection_permissions_request.rb +212 -0
  255. data/lib/mudbase/models/multi_role_update_role_request.rb +236 -0
  256. data/lib/mudbase/models/multi_role_update_role_request_collection_permissions_value.rb +104 -0
  257. data/lib/mudbase/models/multi_role_update_role_request_collection_permissions_value_one_of.rb +180 -0
  258. data/lib/mudbase/models/multi_role_update_settings200_response.rb +166 -0
  259. data/lib/mudbase/models/multi_role_update_settings_request.rb +165 -0
  260. data/lib/mudbase/models/multi_role_update_settings_request_settings.rb +181 -0
  261. data/lib/mudbase/models/non_custodial_address.rb +2 -2
  262. data/lib/mudbase/models/non_custodial_address_response.rb +2 -2
  263. data/lib/mudbase/models/organization.rb +2 -2
  264. data/lib/mudbase/models/organization_summary.rb +2 -2
  265. data/lib/mudbase/models/organizations_add_domain_request.rb +173 -0
  266. data/lib/mudbase/models/organizations_patch_domain_request.rb +191 -0
  267. data/lib/mudbase/models/organizations_report_domain_platform_ready_request.rb +166 -0
  268. data/lib/mudbase/models/organizations_set_primary_domain_request.rb +164 -0
  269. data/lib/mudbase/models/otp_send_request.rb +2 -2
  270. data/lib/mudbase/models/otp_verify_request.rb +2 -2
  271. data/lib/mudbase/models/pagination.rb +2 -2
  272. data/lib/mudbase/models/payment_intent.rb +2 -2
  273. data/lib/mudbase/models/payment_refund.rb +2 -2
  274. data/lib/mudbase/models/payment_subscription.rb +2 -2
  275. data/lib/mudbase/models/permission.rb +2 -2
  276. data/lib/mudbase/models/plan.rb +2 -2
  277. data/lib/mudbase/models/presigned_post_response.rb +2 -2
  278. data/lib/mudbase/models/project.rb +2 -2
  279. data/lib/mudbase/models/project_settings.rb +2 -2
  280. data/lib/mudbase/models/project_summary.rb +2 -2
  281. data/lib/mudbase/models/project_usage.rb +2 -2
  282. data/lib/mudbase/models/project_usage_response.rb +2 -2
  283. data/lib/mudbase/models/project_usage_stats_response.rb +2 -2
  284. data/lib/mudbase/models/project_usage_stats_response_project.rb +2 -2
  285. data/lib/mudbase/models/push_notification_request.rb +2 -2
  286. data/lib/mudbase/models/rate_limit.rb +2 -2
  287. data/lib/mudbase/models/realtime_analytics_check_user_presence200_response.rb +2 -2
  288. data/lib/mudbase/models/realtime_analytics_check_user_presence200_response_presence_value.rb +2 -2
  289. data/lib/mudbase/models/realtime_analytics_check_user_presence_request.rb +2 -2
  290. data/lib/mudbase/models/realtime_analytics_get_active_users200_response.rb +2 -2
  291. data/lib/mudbase/models/realtime_analytics_get_active_users200_response_users_inner.rb +2 -2
  292. data/lib/mudbase/models/realtime_analytics_get_event_throughput200_response.rb +2 -2
  293. data/lib/mudbase/models/realtime_analytics_get_historical_analytics200_response.rb +2 -2
  294. data/lib/mudbase/models/realtime_analytics_get_historical_analytics200_response_data_inner.rb +2 -2
  295. data/lib/mudbase/models/realtime_analytics_get_project200_response.rb +2 -2
  296. data/lib/mudbase/models/register_request.rb +2 -2
  297. data/lib/mudbase/models/role_elevation_get_status200_response.rb +2 -2
  298. data/lib/mudbase/models/role_elevation_request200_response.rb +2 -2
  299. data/lib/mudbase/models/role_elevation_request_request.rb +2 -2
  300. data/lib/mudbase/models/role_elevation_upload_documents_request.rb +2 -2
  301. data/lib/mudbase/models/role_elevation_upload_documents_request_documents_inner.rb +2 -2
  302. data/lib/mudbase/models/search_get_analytics200_response.rb +2 -2
  303. data/lib/mudbase/models/search_get_analytics200_response_top_queries_inner.rb +2 -2
  304. data/lib/mudbase/models/search_get_suggestions200_response.rb +2 -2
  305. data/lib/mudbase/models/search_response.rb +2 -2
  306. data/lib/mudbase/models/search_response_data.rb +2 -2
  307. data/lib/mudbase/models/search_result.rb +2 -2
  308. data/lib/mudbase/models/search_result_item.rb +2 -2
  309. data/lib/mudbase/models/session_response.rb +2 -2
  310. data/lib/mudbase/models/signed_url_response.rb +2 -2
  311. data/lib/mudbase/models/sms_request.rb +2 -2
  312. data/lib/mudbase/models/storage_config.rb +2 -2
  313. data/lib/mudbase/models/storage_confirm_upload400_response.rb +2 -2
  314. data/lib/mudbase/models/storage_confirm_upload_request.rb +2 -2
  315. data/lib/mudbase/models/storage_download_bucket_file403_response.rb +2 -2
  316. data/lib/mudbase/models/storage_download_bucket_file404_response.rb +2 -2
  317. data/lib/mudbase/models/storage_get_presigned_upload_request.rb +2 -2
  318. data/lib/mudbase/models/storage_get_signed_url_request.rb +2 -2
  319. data/lib/mudbase/models/system_status_response.rb +2 -2
  320. data/lib/mudbase/models/system_status_response_data.rb +2 -2
  321. data/lib/mudbase/models/system_status_response_data_cpu.rb +2 -2
  322. data/lib/mudbase/models/system_status_response_data_database.rb +2 -2
  323. data/lib/mudbase/models/system_status_response_data_memory.rb +2 -2
  324. data/lib/mudbase/models/system_status_response_data_requests.rb +2 -2
  325. data/lib/mudbase/models/system_status_response_data_storage.rb +2 -2
  326. data/lib/mudbase/models/trigger_webhook_request.rb +2 -2
  327. data/lib/mudbase/models/two_fa_setup_response.rb +2 -2
  328. data/lib/mudbase/models/update_api_key_request.rb +2 -2
  329. data/lib/mudbase/models/update_bucket_request.rb +2 -2
  330. data/lib/mudbase/models/update_collection_request.rb +2 -2
  331. data/lib/mudbase/models/update_function_request.rb +2 -2
  332. data/lib/mudbase/models/update_function_request_limits.rb +2 -2
  333. data/lib/mudbase/models/update_function_request_retry_policy.rb +2 -2
  334. data/lib/mudbase/models/update_organization_request.rb +2 -2
  335. data/lib/mudbase/models/update_project_request.rb +2 -2
  336. data/lib/mudbase/models/update_user_request.rb +2 -2
  337. data/lib/mudbase/models/upload_files_to_bucket_metadata_request.rb +2 -2
  338. data/lib/mudbase/models/upload_files_to_bucket_request.rb +2 -2
  339. data/lib/mudbase/models/usage.rb +2 -2
  340. data/lib/mudbase/models/usage_response.rb +2 -2
  341. data/lib/mudbase/models/usage_stats_response.rb +2 -2
  342. data/lib/mudbase/models/usage_stats_response_percentages.rb +2 -2
  343. data/lib/mudbase/models/usage_trends_response.rb +2 -2
  344. data/lib/mudbase/models/usage_trends_response_trends_inner.rb +2 -2
  345. data/lib/mudbase/models/usage_trends_response_trends_inner_id.rb +2 -2
  346. data/lib/mudbase/models/user.rb +2 -2
  347. data/lib/mudbase/models/user_summary.rb +2 -2
  348. data/lib/mudbase/models/users_disable2fa_request.rb +2 -2
  349. data/lib/mudbase/models/users_erase_data200_response.rb +2 -2
  350. data/lib/mudbase/models/users_erase_data200_response_details.rb +2 -2
  351. data/lib/mudbase/models/users_erase_data_request.rb +2 -2
  352. data/lib/mudbase/models/users_export_data200_response.rb +2 -2
  353. data/lib/mudbase/models/users_get200_response.rb +2 -2
  354. data/lib/mudbase/models/users_link_o_auth_provider200_response.rb +2 -2
  355. data/lib/mudbase/models/users_list_o_auth_providers200_response.rb +2 -2
  356. data/lib/mudbase/models/users_list_o_auth_providers200_response_providers_inner.rb +2 -2
  357. data/lib/mudbase/models/users_unlink_o_auth_provider200_response.rb +2 -2
  358. data/lib/mudbase/models/users_update200_response.rb +2 -2
  359. data/lib/mudbase/models/users_verify2fa_request.rb +2 -2
  360. data/lib/mudbase/models/wallet_balance.rb +2 -2
  361. data/lib/mudbase/models/wallet_broadcast_transaction200_response.rb +2 -2
  362. data/lib/mudbase/models/wallet_broadcast_transaction200_response_data.rb +2 -2
  363. data/lib/mudbase/models/wallet_broadcast_transaction_request.rb +2 -2
  364. data/lib/mudbase/models/wallet_create_webhook201_response.rb +2 -2
  365. data/lib/mudbase/models/wallet_create_webhook_request.rb +2 -2
  366. data/lib/mudbase/models/wallet_create_webhook_request_filters.rb +2 -2
  367. data/lib/mudbase/models/wallet_estimate_gas200_response.rb +2 -2
  368. data/lib/mudbase/models/wallet_estimate_gas200_response_data.rb +2 -2
  369. data/lib/mudbase/models/wallet_estimate_gas_request.rb +2 -2
  370. data/lib/mudbase/models/wallet_estimate_gas_request_transaction.rb +2 -2
  371. data/lib/mudbase/models/wallet_get_balance200_response.rb +2 -2
  372. data/lib/mudbase/models/wallet_get_cancel_params200_response.rb +2 -2
  373. data/lib/mudbase/models/wallet_get_cancel_params200_response_data.rb +2 -2
  374. data/lib/mudbase/models/wallet_get_cancel_params_request.rb +2 -2
  375. data/lib/mudbase/models/wallet_get_speed_up_params200_response.rb +2 -2
  376. data/lib/mudbase/models/wallet_get_speed_up_params200_response_data.rb +2 -2
  377. data/lib/mudbase/models/wallet_get_speed_up_params_request.rb +2 -2
  378. data/lib/mudbase/models/wallet_get_transaction_by_hash200_response.rb +2 -2
  379. data/lib/mudbase/models/wallet_get_transaction_by_hash400_response.rb +2 -2
  380. data/lib/mudbase/models/wallet_get_transactions200_response.rb +2 -2
  381. data/lib/mudbase/models/wallet_get_transactions200_response_pagination.rb +2 -2
  382. data/lib/mudbase/models/wallet_get_webhook_logs200_response.rb +2 -2
  383. data/lib/mudbase/models/wallet_list_addresses200_response.rb +2 -2
  384. data/lib/mudbase/models/wallet_list_webhooks200_response.rb +2 -2
  385. data/lib/mudbase/models/wallet_register_address_request.rb +2 -2
  386. data/lib/mudbase/models/wallet_test_webhook_request.rb +2 -2
  387. data/lib/mudbase/models/wallet_transaction.rb +2 -2
  388. data/lib/mudbase/models/wallet_transaction_webhook_payload.rb +2 -2
  389. data/lib/mudbase/models/wallet_update_webhook200_response.rb +2 -2
  390. data/lib/mudbase/models/wallet_update_webhook_request.rb +2 -2
  391. data/lib/mudbase/models/wallet_webhook.rb +2 -2
  392. data/lib/mudbase/models/wallet_webhook_filters.rb +2 -2
  393. data/lib/mudbase/models/wallet_webhook_stats.rb +2 -2
  394. data/lib/mudbase/models/webhook_list_response.rb +2 -2
  395. data/lib/mudbase/models/webhook_log.rb +2 -2
  396. data/lib/mudbase/models/webhook_stats_response.rb +2 -2
  397. data/lib/mudbase/models/webhook_stats_response_event_stats_inner.rb +2 -2
  398. data/lib/mudbase/models/webhook_stats_response_status_stats_inner.rb +2 -2
  399. data/lib/mudbase/version.rb +3 -3
  400. data/lib/mudbase.rb +34 -4
  401. data/mudbase.gemspec +8 -3
  402. data/spec/api/auth_api_spec.rb +26 -2
  403. data/spec/api/billing_api_spec.rb +2 -2
  404. data/spec/api/chat_api_spec.rb +31 -5
  405. data/spec/api/collections_api_spec.rb +2 -2
  406. data/spec/api/compliance_api_spec.rb +2 -2
  407. data/spec/api/data_api_spec.rb +2 -2
  408. data/spec/api/functions_api_spec.rb +2 -2
  409. data/spec/api/health_api_spec.rb +2 -2
  410. data/spec/api/integrations_api_spec.rb +3 -3
  411. data/spec/api/messaging_api_spec.rb +2 -2
  412. data/spec/api/multi_role_api_spec.rb +134 -2
  413. data/spec/api/organizations_api_spec.rb +130 -0
  414. data/spec/api/realtime_analytics_api_spec.rb +2 -2
  415. data/spec/api/role_elevation_api_spec.rb +2 -2
  416. data/spec/api/search_api_spec.rb +2 -2
  417. data/spec/api/storage_api_spec.rb +2 -2
  418. data/spec/api/usage_api_spec.rb +2 -2
  419. data/spec/api/users_api_spec.rb +3 -3
  420. data/spec/api/wallet_api_spec.rb +3 -3
  421. data/spec/api/webhooks_api_spec.rb +2 -2
  422. data/spec/models/api_key_permission_spec.rb +2 -2
  423. data/spec/models/api_key_spec.rb +2 -2
  424. data/spec/models/api_key_usage_response_spec.rb +2 -2
  425. data/spec/models/api_key_usage_spec.rb +2 -2
  426. data/spec/models/api_key_with_secret_spec.rb +2 -2
  427. data/spec/models/auth_config_spec.rb +2 -2
  428. data/spec/models/auth_confirm_password_reset_request_spec.rb +2 -2
  429. data/spec/models/auth_convert_anonymous200_response_spec.rb +2 -2
  430. data/spec/models/auth_convert_anonymous_request_spec.rb +2 -2
  431. data/spec/models/auth_create_anonymous200_response_spec.rb +2 -2
  432. data/spec/models/auth_create_anonymous200_response_user_spec.rb +2 -2
  433. data/spec/models/auth_create_anonymous_request_spec.rb +2 -2
  434. data/spec/models/auth_get_o_auth_providers200_response_providers_inner_spec.rb +2 -2
  435. data/spec/models/auth_get_o_auth_providers200_response_spec.rb +2 -2
  436. data/spec/models/auth_get_session200_response_spec.rb +2 -2
  437. data/spec/models/auth_login200_response_spec.rb +2 -2
  438. data/spec/models/auth_login200_response_user_spec.rb +2 -2
  439. data/spec/models/auth_login403_response_spec.rb +2 -2
  440. data/spec/models/auth_login_request_spec.rb +2 -2
  441. data/spec/models/auth_oauth_callback200_response_spec.rb +2 -2
  442. data/spec/models/auth_oauth_initiate200_response_spec.rb +2 -2
  443. data/spec/models/auth_oauth_initiate400_response_spec.rb +2 -2
  444. data/spec/models/auth_oauth_signup_with_role400_response_spec.rb +2 -2
  445. data/spec/models/auth_provider_spec.rb +2 -2
  446. data/spec/models/auth_refresh200_response_spec.rb +2 -2
  447. data/spec/models/auth_refresh400_response_spec.rb +2 -2
  448. data/spec/models/auth_refresh_request_spec.rb +2 -2
  449. data/spec/models/auth_register201_response_spec.rb +2 -2
  450. data/spec/models/auth_register201_response_user_spec.rb +2 -2
  451. data/spec/models/auth_register429_response_spec.rb +2 -2
  452. data/spec/models/auth_register_request_spec.rb +2 -2
  453. data/spec/models/auth_register_with_role_request_spec.rb +2 -2
  454. data/spec/models/auth_request_password_reset_request_spec.rb +2 -2
  455. data/spec/models/auth_resend_verification_request_spec.rb +42 -0
  456. data/spec/models/auth_reset_password_request_spec.rb +2 -2
  457. data/spec/models/auth_response_spec.rb +2 -2
  458. data/spec/models/{users_verify_email_request_spec.rb → auth_verify_email_request_spec.rb} +8 -8
  459. data/spec/models/auth_verify_magic_link_request_spec.rb +2 -2
  460. data/spec/models/billing_check_feature_access200_response_spec.rb +2 -2
  461. data/spec/models/billing_check_subscription200_response_spec.rb +2 -2
  462. data/spec/models/billing_check_subscription200_response_subscription_spec.rb +2 -2
  463. data/spec/models/billing_create_checkout_session200_response_data_payment_options_inner_spec.rb +2 -2
  464. data/spec/models/billing_create_checkout_session200_response_data_spec.rb +2 -2
  465. data/spec/models/billing_create_checkout_session200_response_spec.rb +2 -2
  466. data/spec/models/billing_create_checkout_session_request_customer_info_spec.rb +2 -2
  467. data/spec/models/billing_create_checkout_session_request_spec.rb +2 -2
  468. data/spec/models/billing_get_checkout_payment200_response_data_spec.rb +2 -2
  469. data/spec/models/billing_get_checkout_payment200_response_spec.rb +2 -2
  470. data/spec/models/billing_get_public_plans200_response_spec.rb +2 -2
  471. data/spec/models/billing_handle_crypto_webhook200_response_spec.rb +2 -2
  472. data/spec/models/billing_handle_crypto_webhook_request_data_spec.rb +2 -2
  473. data/spec/models/billing_handle_crypto_webhook_request_spec.rb +2 -2
  474. data/spec/models/billing_handle_flutterwave_webhook_request_data_customer_spec.rb +2 -2
  475. data/spec/models/billing_handle_flutterwave_webhook_request_data_spec.rb +2 -2
  476. data/spec/models/billing_handle_flutterwave_webhook_request_spec.rb +2 -2
  477. data/spec/models/billing_initialize_payment_request_customer_spec.rb +2 -2
  478. data/spec/models/billing_initialize_payment_request_spec.rb +2 -2
  479. data/spec/models/billing_last_payment_spec.rb +2 -2
  480. data/spec/models/billing_record_usage_request_spec.rb +2 -2
  481. data/spec/models/billing_spec.rb +2 -2
  482. data/spec/models/billing_verify_payment200_response_data_spec.rb +2 -2
  483. data/spec/models/billing_verify_payment200_response_data_subscription_spec.rb +2 -2
  484. data/spec/models/billing_verify_payment200_response_spec.rb +2 -2
  485. data/spec/models/bucket_list_response_spec.rb +2 -2
  486. data/spec/models/bucket_response_spec.rb +2 -2
  487. data/spec/models/bucket_spec.rb +2 -2
  488. data/spec/models/change_password_request_spec.rb +2 -2
  489. data/spec/models/chat_add_participant200_response_data_participants_inner_spec.rb +2 -2
  490. data/spec/models/chat_add_participant200_response_data_spec.rb +2 -2
  491. data/spec/models/chat_add_participant200_response_spec.rb +2 -2
  492. data/spec/models/chat_add_participant_request_spec.rb +2 -2
  493. data/spec/models/chat_add_reaction200_response_data_inner_spec.rb +2 -2
  494. data/spec/models/chat_add_reaction200_response_spec.rb +2 -2
  495. data/spec/models/chat_add_reaction_request_spec.rb +2 -2
  496. data/spec/models/chat_create201_response_data_spec.rb +2 -2
  497. data/spec/models/chat_create201_response_spec.rb +2 -2
  498. data/spec/models/chat_create_request_spec.rb +2 -2
  499. data/spec/models/chat_edit_message200_response_data_spec.rb +14 -2
  500. data/spec/models/chat_edit_message200_response_spec.rb +2 -2
  501. data/spec/models/chat_edit_message_request_e2ee_spec.rb +66 -0
  502. data/spec/models/chat_edit_message_request_spec.rb +8 -2
  503. data/spec/models/chat_get200_response_data_participants_inner_spec.rb +2 -2
  504. data/spec/models/chat_get200_response_data_spec.rb +2 -2
  505. data/spec/models/chat_get200_response_spec.rb +2 -2
  506. data/spec/models/chat_get_chat_e2ee_participant_keys200_response_data_inner_spec.rb +54 -0
  507. data/spec/models/chat_get_chat_e2ee_participant_keys200_response_spec.rb +42 -0
  508. data/spec/models/chat_get_messages200_response_data_messages_inner_sender_spec.rb +2 -2
  509. data/spec/models/chat_get_messages200_response_data_messages_inner_spec.rb +2 -2
  510. data/spec/models/chat_get_messages200_response_data_spec.rb +2 -2
  511. data/spec/models/chat_get_messages200_response_spec.rb +2 -2
  512. data/spec/models/chat_list200_response_data_chats_inner_last_message_spec.rb +2 -2
  513. data/spec/models/chat_list200_response_data_chats_inner_spec.rb +2 -2
  514. data/spec/models/chat_list200_response_data_spec.rb +2 -2
  515. data/spec/models/chat_list200_response_spec.rb +2 -2
  516. data/spec/models/chat_mark_as_read200_response_data_spec.rb +2 -2
  517. data/spec/models/chat_mark_as_read200_response_spec.rb +2 -2
  518. data/spec/models/chat_mark_as_read_request_spec.rb +2 -2
  519. data/spec/models/chat_put_chat_e2ee_key200_response_data_spec.rb +48 -0
  520. data/spec/models/{wallet_test_webhook200_response_spec.rb → chat_put_chat_e2ee_key200_response_spec.rb} +8 -8
  521. data/spec/models/chat_put_chat_e2ee_key_request_spec.rb +42 -0
  522. data/spec/models/chat_remove_participant_request_spec.rb +2 -2
  523. data/spec/models/chat_remove_reaction200_response_data_inner_spec.rb +2 -2
  524. data/spec/models/chat_remove_reaction200_response_spec.rb +2 -2
  525. data/spec/models/chat_send_message201_response_data_spec.rb +2 -2
  526. data/spec/models/chat_send_message201_response_spec.rb +2 -2
  527. data/spec/models/chat_send_message_request_e2ee_spec.rb +66 -0
  528. data/spec/models/chat_send_message_request_spec.rb +8 -2
  529. data/spec/models/collection_spec.rb +2 -2
  530. data/spec/models/collections_create201_response_spec.rb +2 -2
  531. data/spec/models/collections_list200_response_spec.rb +2 -2
  532. data/spec/models/compliance_log_security_event200_response_event_spec.rb +2 -2
  533. data/spec/models/compliance_log_security_event200_response_spec.rb +2 -2
  534. data/spec/models/compliance_log_security_event_request_details_spec.rb +2 -2
  535. data/spec/models/compliance_log_security_event_request_spec.rb +2 -2
  536. data/spec/models/confirm_upload_response_scan_spec.rb +2 -2
  537. data/spec/models/confirm_upload_response_spec.rb +2 -2
  538. data/spec/models/create_api_key_request_spec.rb +2 -2
  539. data/spec/models/create_bucket_request_spec.rb +2 -2
  540. data/spec/models/create_collection_request_spec.rb +2 -2
  541. data/spec/models/create_function_request_spec.rb +2 -2
  542. data/spec/models/create_project_request_spec.rb +2 -2
  543. data/spec/models/data_list_response_data_inner_spec.rb +2 -2
  544. data/spec/models/data_list_response_spec.rb +2 -2
  545. data/spec/models/data_response_spec.rb +2 -2
  546. data/spec/models/database_config_spec.rb +2 -2
  547. data/spec/models/email_request_spec.rb +2 -2
  548. data/spec/models/email_request_to_spec.rb +2 -2
  549. data/spec/models/error_details_spec.rb +2 -2
  550. data/spec/models/error_spec.rb +2 -2
  551. data/spec/models/field_default_spec.rb +2 -2
  552. data/spec/models/field_spec.rb +2 -2
  553. data/spec/models/file_list_response_spec.rb +2 -2
  554. data/spec/models/file_metadata_spec.rb +2 -2
  555. data/spec/models/file_response_spec.rb +2 -2
  556. data/spec/models/file_upload_response_spec.rb +2 -2
  557. data/spec/models/function_execution_response_data_spec.rb +2 -2
  558. data/spec/models/function_execution_response_spec.rb +2 -2
  559. data/spec/models/function_execution_spec.rb +2 -2
  560. data/spec/models/function_list_response_data_spec.rb +2 -2
  561. data/spec/models/function_list_response_spec.rb +2 -2
  562. data/spec/models/function_logs_response_data_spec.rb +2 -2
  563. data/spec/models/function_logs_response_spec.rb +2 -2
  564. data/spec/models/function_response_spec.rb +2 -2
  565. data/spec/models/function_spec.rb +2 -2
  566. data/spec/models/function_stats_spec.rb +2 -2
  567. data/spec/models/function_trigger_spec.rb +2 -2
  568. data/spec/models/functions_delete200_response_spec.rb +2 -2
  569. data/spec/models/functions_execute_request_spec.rb +2 -2
  570. data/spec/models/functions_get_versions200_response_data_spec.rb +2 -2
  571. data/spec/models/functions_get_versions200_response_data_versions_inner_spec.rb +2 -2
  572. data/spec/models/functions_get_versions200_response_spec.rb +2 -2
  573. data/spec/models/functions_rollback_request_spec.rb +2 -2
  574. data/spec/models/functions_simulate_request_spec.rb +2 -2
  575. data/spec/models/functions_trigger_webhook200_response_spec.rb +2 -2
  576. data/spec/models/functions_trigger_webhook400_response_spec.rb +2 -2
  577. data/spec/models/functions_trigger_webhook401_response_spec.rb +2 -2
  578. data/spec/models/health_response_services_spec.rb +2 -2
  579. data/spec/models/health_response_spec.rb +2 -2
  580. data/spec/models/integrations_execute_request_spec.rb +2 -2
  581. data/spec/models/integrations_list200_response_integrations_inner_spec.rb +2 -2
  582. data/spec/models/integrations_list200_response_spec.rb +2 -2
  583. data/spec/models/invite_member_request_spec.rb +2 -2
  584. data/spec/models/limits_spec.rb +2 -2
  585. data/spec/models/login_request_spec.rb +2 -2
  586. data/spec/models/magic_link_request_spec.rb +2 -2
  587. data/spec/models/message_history_response_data_spec.rb +2 -2
  588. data/spec/models/message_history_response_spec.rb +2 -2
  589. data/spec/models/message_response_spec.rb +2 -2
  590. data/spec/models/message_sent_response_data_spec.rb +2 -2
  591. data/spec/models/message_sent_response_spec.rb +2 -2
  592. data/spec/models/message_spec.rb +2 -2
  593. data/spec/models/message_stats_response_data_by_status_spec.rb +2 -2
  594. data/spec/models/message_stats_response_data_by_type_spec.rb +2 -2
  595. data/spec/models/message_stats_response_data_period_spec.rb +2 -2
  596. data/spec/models/message_stats_response_data_spec.rb +2 -2
  597. data/spec/models/message_stats_response_spec.rb +2 -2
  598. data/spec/models/multi_role_add_role_request_default_permissions_inner_spec.rb +42 -0
  599. data/spec/models/multi_role_add_role_request_spec.rb +96 -0
  600. data/spec/models/multi_role_apply_role_feature_preset_request_spec.rb +40 -0
  601. data/spec/models/multi_role_get_available_roles200_response_data_inner_spec.rb +72 -0
  602. data/spec/models/multi_role_get_available_roles200_response_spec.rb +42 -0
  603. data/spec/models/multi_role_get_config200_response_data_spec.rb +54 -0
  604. data/spec/models/multi_role_get_config200_response_spec.rb +42 -0
  605. data/spec/models/multi_role_get_permissions_matrix200_response_spec.rb +42 -0
  606. data/spec/models/multi_role_simulate_app_permissions_request_spec.rb +60 -0
  607. data/spec/models/multi_role_toggle_role200_response_spec.rb +48 -0
  608. data/spec/models/multi_role_toggle_role_request_spec.rb +36 -0
  609. data/spec/models/multi_role_update_collection_permissions_request_spec.rb +62 -0
  610. data/spec/models/multi_role_update_role_request_collection_permissions_value_one_of_spec.rb +46 -0
  611. data/spec/models/multi_role_update_role_request_collection_permissions_value_spec.rb +32 -0
  612. data/spec/models/multi_role_update_role_request_spec.rb +90 -0
  613. data/spec/models/multi_role_update_settings200_response_spec.rb +48 -0
  614. data/spec/models/multi_role_update_settings_request_settings_spec.rb +54 -0
  615. data/spec/models/multi_role_update_settings_request_spec.rb +48 -0
  616. data/spec/models/non_custodial_address_response_spec.rb +2 -2
  617. data/spec/models/non_custodial_address_spec.rb +2 -2
  618. data/spec/models/organization_spec.rb +2 -2
  619. data/spec/models/organization_summary_spec.rb +2 -2
  620. data/spec/models/organizations_add_domain_request_spec.rb +42 -0
  621. data/spec/models/organizations_patch_domain_request_spec.rb +46 -0
  622. data/spec/models/organizations_report_domain_platform_ready_request_spec.rb +36 -0
  623. data/spec/models/organizations_set_primary_domain_request_spec.rb +36 -0
  624. data/spec/models/otp_send_request_spec.rb +2 -2
  625. data/spec/models/otp_verify_request_spec.rb +2 -2
  626. data/spec/models/pagination_spec.rb +2 -2
  627. data/spec/models/payment_intent_spec.rb +2 -2
  628. data/spec/models/payment_refund_spec.rb +2 -2
  629. data/spec/models/payment_subscription_spec.rb +2 -2
  630. data/spec/models/permission_spec.rb +2 -2
  631. data/spec/models/plan_spec.rb +2 -2
  632. data/spec/models/presigned_post_response_spec.rb +2 -2
  633. data/spec/models/project_settings_spec.rb +2 -2
  634. data/spec/models/project_spec.rb +2 -2
  635. data/spec/models/project_summary_spec.rb +2 -2
  636. data/spec/models/project_usage_response_spec.rb +2 -2
  637. data/spec/models/project_usage_spec.rb +2 -2
  638. data/spec/models/project_usage_stats_response_project_spec.rb +2 -2
  639. data/spec/models/project_usage_stats_response_spec.rb +2 -2
  640. data/spec/models/push_notification_request_spec.rb +2 -2
  641. data/spec/models/rate_limit_spec.rb +2 -2
  642. data/spec/models/realtime_analytics_check_user_presence200_response_presence_value_spec.rb +2 -2
  643. data/spec/models/realtime_analytics_check_user_presence200_response_spec.rb +2 -2
  644. data/spec/models/realtime_analytics_check_user_presence_request_spec.rb +2 -2
  645. data/spec/models/realtime_analytics_get_active_users200_response_spec.rb +2 -2
  646. data/spec/models/realtime_analytics_get_active_users200_response_users_inner_spec.rb +2 -2
  647. data/spec/models/realtime_analytics_get_event_throughput200_response_spec.rb +2 -2
  648. data/spec/models/realtime_analytics_get_historical_analytics200_response_data_inner_spec.rb +2 -2
  649. data/spec/models/realtime_analytics_get_historical_analytics200_response_spec.rb +2 -2
  650. data/spec/models/realtime_analytics_get_project200_response_spec.rb +2 -2
  651. data/spec/models/register_request_spec.rb +2 -2
  652. data/spec/models/role_elevation_get_status200_response_spec.rb +2 -2
  653. data/spec/models/role_elevation_request200_response_spec.rb +2 -2
  654. data/spec/models/role_elevation_request_request_spec.rb +2 -2
  655. data/spec/models/role_elevation_upload_documents_request_documents_inner_spec.rb +2 -2
  656. data/spec/models/role_elevation_upload_documents_request_spec.rb +2 -2
  657. data/spec/models/search_get_analytics200_response_spec.rb +2 -2
  658. data/spec/models/search_get_analytics200_response_top_queries_inner_spec.rb +2 -2
  659. data/spec/models/search_get_suggestions200_response_spec.rb +2 -2
  660. data/spec/models/search_response_data_spec.rb +2 -2
  661. data/spec/models/search_response_spec.rb +2 -2
  662. data/spec/models/search_result_item_spec.rb +2 -2
  663. data/spec/models/search_result_spec.rb +2 -2
  664. data/spec/models/session_response_spec.rb +2 -2
  665. data/spec/models/signed_url_response_spec.rb +2 -2
  666. data/spec/models/sms_request_spec.rb +2 -2
  667. data/spec/models/storage_config_spec.rb +2 -2
  668. data/spec/models/storage_confirm_upload400_response_spec.rb +2 -2
  669. data/spec/models/storage_confirm_upload_request_spec.rb +2 -2
  670. data/spec/models/storage_download_bucket_file403_response_spec.rb +2 -2
  671. data/spec/models/storage_download_bucket_file404_response_spec.rb +2 -2
  672. data/spec/models/storage_get_presigned_upload_request_spec.rb +2 -2
  673. data/spec/models/storage_get_signed_url_request_spec.rb +2 -2
  674. data/spec/models/system_status_response_data_cpu_spec.rb +2 -2
  675. data/spec/models/system_status_response_data_database_spec.rb +2 -2
  676. data/spec/models/system_status_response_data_memory_spec.rb +2 -2
  677. data/spec/models/system_status_response_data_requests_spec.rb +2 -2
  678. data/spec/models/system_status_response_data_spec.rb +2 -2
  679. data/spec/models/system_status_response_data_storage_spec.rb +2 -2
  680. data/spec/models/system_status_response_spec.rb +2 -2
  681. data/spec/models/trigger_webhook_request_spec.rb +2 -2
  682. data/spec/models/two_fa_setup_response_spec.rb +2 -2
  683. data/spec/models/update_api_key_request_spec.rb +2 -2
  684. data/spec/models/update_bucket_request_spec.rb +2 -2
  685. data/spec/models/update_collection_request_spec.rb +2 -2
  686. data/spec/models/update_function_request_limits_spec.rb +2 -2
  687. data/spec/models/update_function_request_retry_policy_spec.rb +2 -2
  688. data/spec/models/update_function_request_spec.rb +2 -2
  689. data/spec/models/update_organization_request_spec.rb +2 -2
  690. data/spec/models/update_project_request_spec.rb +2 -2
  691. data/spec/models/update_user_request_spec.rb +2 -2
  692. data/spec/models/upload_files_to_bucket_metadata_request_spec.rb +2 -2
  693. data/spec/models/upload_files_to_bucket_request_spec.rb +2 -2
  694. data/spec/models/usage_response_spec.rb +2 -2
  695. data/spec/models/usage_spec.rb +2 -2
  696. data/spec/models/usage_stats_response_percentages_spec.rb +2 -2
  697. data/spec/models/usage_stats_response_spec.rb +2 -2
  698. data/spec/models/usage_trends_response_spec.rb +2 -2
  699. data/spec/models/usage_trends_response_trends_inner_id_spec.rb +2 -2
  700. data/spec/models/usage_trends_response_trends_inner_spec.rb +2 -2
  701. data/spec/models/user_spec.rb +2 -2
  702. data/spec/models/user_summary_spec.rb +2 -2
  703. data/spec/models/users_disable2fa_request_spec.rb +2 -2
  704. data/spec/models/users_erase_data200_response_details_spec.rb +2 -2
  705. data/spec/models/users_erase_data200_response_spec.rb +2 -2
  706. data/spec/models/users_erase_data_request_spec.rb +2 -2
  707. data/spec/models/users_export_data200_response_spec.rb +2 -2
  708. data/spec/models/users_get200_response_spec.rb +2 -2
  709. data/spec/models/users_link_o_auth_provider200_response_spec.rb +2 -2
  710. data/spec/models/users_list_o_auth_providers200_response_providers_inner_spec.rb +2 -2
  711. data/spec/models/users_list_o_auth_providers200_response_spec.rb +2 -2
  712. data/spec/models/users_unlink_o_auth_provider200_response_spec.rb +2 -2
  713. data/spec/models/users_update200_response_spec.rb +2 -2
  714. data/spec/models/users_verify2fa_request_spec.rb +2 -2
  715. data/spec/models/wallet_balance_spec.rb +2 -2
  716. data/spec/models/wallet_broadcast_transaction200_response_data_spec.rb +2 -2
  717. data/spec/models/wallet_broadcast_transaction200_response_spec.rb +2 -2
  718. data/spec/models/wallet_broadcast_transaction_request_spec.rb +2 -2
  719. data/spec/models/wallet_create_webhook201_response_spec.rb +2 -2
  720. data/spec/models/wallet_create_webhook_request_filters_spec.rb +2 -2
  721. data/spec/models/wallet_create_webhook_request_spec.rb +2 -2
  722. data/spec/models/wallet_estimate_gas200_response_data_spec.rb +2 -2
  723. data/spec/models/wallet_estimate_gas200_response_spec.rb +2 -2
  724. data/spec/models/wallet_estimate_gas_request_spec.rb +2 -2
  725. data/spec/models/wallet_estimate_gas_request_transaction_spec.rb +2 -2
  726. data/spec/models/wallet_get_balance200_response_spec.rb +2 -2
  727. data/spec/models/wallet_get_cancel_params200_response_data_spec.rb +2 -2
  728. data/spec/models/wallet_get_cancel_params200_response_spec.rb +2 -2
  729. data/spec/models/wallet_get_cancel_params_request_spec.rb +2 -2
  730. data/spec/models/wallet_get_speed_up_params200_response_data_spec.rb +2 -2
  731. data/spec/models/wallet_get_speed_up_params200_response_spec.rb +2 -2
  732. data/spec/models/wallet_get_speed_up_params_request_spec.rb +2 -2
  733. data/spec/models/wallet_get_transaction_by_hash200_response_spec.rb +2 -2
  734. data/spec/models/wallet_get_transaction_by_hash400_response_spec.rb +2 -2
  735. data/spec/models/wallet_get_transactions200_response_pagination_spec.rb +2 -2
  736. data/spec/models/wallet_get_transactions200_response_spec.rb +2 -2
  737. data/spec/models/wallet_get_webhook_logs200_response_spec.rb +2 -2
  738. data/spec/models/wallet_list_addresses200_response_spec.rb +2 -2
  739. data/spec/models/wallet_list_webhooks200_response_spec.rb +2 -2
  740. data/spec/models/wallet_register_address_request_spec.rb +2 -2
  741. data/spec/models/wallet_test_webhook_request_spec.rb +2 -2
  742. data/spec/models/wallet_transaction_spec.rb +2 -2
  743. data/spec/models/wallet_transaction_webhook_payload_spec.rb +2 -2
  744. data/spec/models/wallet_update_webhook200_response_spec.rb +2 -2
  745. data/spec/models/wallet_update_webhook_request_spec.rb +2 -2
  746. data/spec/models/wallet_webhook_filters_spec.rb +2 -2
  747. data/spec/models/wallet_webhook_spec.rb +2 -2
  748. data/spec/models/wallet_webhook_stats_spec.rb +2 -2
  749. data/spec/models/webhook_list_response_spec.rb +2 -2
  750. data/spec/models/webhook_log_spec.rb +2 -2
  751. data/spec/models/webhook_stats_response_event_stats_inner_spec.rb +2 -2
  752. data/spec/models/webhook_stats_response_spec.rb +2 -2
  753. data/spec/models/webhook_stats_response_status_stats_inner_spec.rb +2 -2
  754. data/spec/spec_helper.rb +2 -2
  755. metadata +421 -297
@@ -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.9
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.9
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.9
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.9
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.9
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.9
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.9
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.9
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.9
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.9
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
@@ -0,0 +1,174 @@
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 'date'
14
+ require 'time'
15
+
16
+ module Mudbase
17
+ class AuthResendVerificationRequest < ApiModelBase
18
+ attr_accessor :email
19
+
20
+ # Optional; for project-scoped signup (sends link with project context)
21
+ attr_accessor :project_id
22
+
23
+ # Attribute mapping from ruby-style variable name to JSON key.
24
+ def self.attribute_map
25
+ {
26
+ :'email' => :'email',
27
+ :'project_id' => :'projectId'
28
+ }
29
+ end
30
+
31
+ # Returns attribute mapping this model knows about
32
+ def self.acceptable_attribute_map
33
+ attribute_map
34
+ end
35
+
36
+ # Returns all the JSON keys this model knows about
37
+ def self.acceptable_attributes
38
+ acceptable_attribute_map.values
39
+ end
40
+
41
+ # Attribute type mapping.
42
+ def self.openapi_types
43
+ {
44
+ :'email' => :'String',
45
+ :'project_id' => :'String'
46
+ }
47
+ end
48
+
49
+ # List of attributes with nullable: true
50
+ def self.openapi_nullable
51
+ Set.new([
52
+ ])
53
+ end
54
+
55
+ # Initializes the object
56
+ # @param [Hash] attributes Model attributes in the form of hash
57
+ def initialize(attributes = {})
58
+ if (!attributes.is_a?(Hash))
59
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Mudbase::AuthResendVerificationRequest` initialize method"
60
+ end
61
+
62
+ # check to see if the attribute exists and convert string to symbol for hash key
63
+ acceptable_attribute_map = self.class.acceptable_attribute_map
64
+ attributes = attributes.each_with_object({}) { |(k, v), h|
65
+ if (!acceptable_attribute_map.key?(k.to_sym))
66
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Mudbase::AuthResendVerificationRequest`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
67
+ end
68
+ h[k.to_sym] = v
69
+ }
70
+
71
+ if attributes.key?(:'email')
72
+ self.email = attributes[:'email']
73
+ else
74
+ self.email = nil
75
+ end
76
+
77
+ if attributes.key?(:'project_id')
78
+ self.project_id = attributes[:'project_id']
79
+ end
80
+ end
81
+
82
+ # Show invalid properties with the reasons. Usually used together with valid?
83
+ # @return Array for valid properties with the reasons
84
+ def list_invalid_properties
85
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
86
+ invalid_properties = Array.new
87
+ if @email.nil?
88
+ invalid_properties.push('invalid value for "email", email cannot be nil.')
89
+ end
90
+
91
+ invalid_properties
92
+ end
93
+
94
+ # Check to see if the all the properties in the model are valid
95
+ # @return true if the model is valid
96
+ def valid?
97
+ warn '[DEPRECATED] the `valid?` method is obsolete'
98
+ return false if @email.nil?
99
+ true
100
+ end
101
+
102
+ # Custom attribute writer method with validation
103
+ # @param [Object] email Value to be assigned
104
+ def email=(email)
105
+ if email.nil?
106
+ fail ArgumentError, 'email cannot be nil'
107
+ end
108
+
109
+ @email = email
110
+ end
111
+
112
+ # Checks equality by comparing each attribute.
113
+ # @param [Object] Object to be compared
114
+ def ==(o)
115
+ return true if self.equal?(o)
116
+ self.class == o.class &&
117
+ email == o.email &&
118
+ project_id == o.project_id
119
+ end
120
+
121
+ # @see the `==` method
122
+ # @param [Object] Object to be compared
123
+ def eql?(o)
124
+ self == o
125
+ end
126
+
127
+ # Calculates hash code according to all attributes.
128
+ # @return [Integer] Hash code
129
+ def hash
130
+ [email, project_id].hash
131
+ end
132
+
133
+ # Builds the object from hash
134
+ # @param [Hash] attributes Model attributes in the form of hash
135
+ # @return [Object] Returns the model itself
136
+ def self.build_from_hash(attributes)
137
+ return nil unless attributes.is_a?(Hash)
138
+ attributes = attributes.transform_keys(&:to_sym)
139
+ transformed_hash = {}
140
+ openapi_types.each_pair do |key, type|
141
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
142
+ transformed_hash["#{key}"] = nil
143
+ elsif type =~ /\AArray<(.*)>/i
144
+ # check to ensure the input is an array given that the attribute
145
+ # is documented as an array but the input is not
146
+ if attributes[attribute_map[key]].is_a?(Array)
147
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
148
+ end
149
+ elsif !attributes[attribute_map[key]].nil?
150
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
151
+ end
152
+ end
153
+ new(transformed_hash)
154
+ end
155
+
156
+ # Returns the object in the form of hash
157
+ # @return [Hash] Returns the object in the form of hash
158
+ def to_hash
159
+ hash = {}
160
+ self.class.attribute_map.each_pair do |attr, param|
161
+ value = self.send(attr)
162
+ if value.nil?
163
+ is_nullable = self.class.openapi_nullable.include?(attr)
164
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
165
+ end
166
+
167
+ hash[param] = _to_hash(value)
168
+ end
169
+ hash
170
+ end
171
+
172
+ end
173
+
174
+ 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.9
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.9
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.9
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
@@ -14,7 +14,7 @@ require 'date'
14
14
  require 'time'
15
15
 
16
16
  module Mudbase
17
- class UsersVerifyEmailRequest < ApiModelBase
17
+ class AuthVerifyEmailRequest < ApiModelBase
18
18
  # Verification token from the email link
19
19
  attr_accessor :token
20
20
 
@@ -57,14 +57,14 @@ module Mudbase
57
57
  # @param [Hash] attributes Model attributes in the form of hash
58
58
  def initialize(attributes = {})
59
59
  if (!attributes.is_a?(Hash))
60
- fail ArgumentError, "The input argument (attributes) must be a hash in `Mudbase::UsersVerifyEmailRequest` initialize method"
60
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Mudbase::AuthVerifyEmailRequest` initialize method"
61
61
  end
62
62
 
63
63
  # check to see if the attribute exists and convert string to symbol for hash key
64
64
  acceptable_attribute_map = self.class.acceptable_attribute_map
65
65
  attributes = attributes.each_with_object({}) { |(k, v), h|
66
66
  if (!acceptable_attribute_map.key?(k.to_sym))
67
- fail ArgumentError, "`#{k}` is not a valid attribute in `Mudbase::UsersVerifyEmailRequest`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
67
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Mudbase::AuthVerifyEmailRequest`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
68
68
  end
69
69
  h[k.to_sym] = v
70
70
  }
@@ -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.9
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.9
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.9
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.9
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.9
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.9
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.9
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.9
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.9
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.9
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.9
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