1
0
forked from BRT/arc
arc/docs/api/openapi.json

1 line
42 KiB
JSON

{"openapi":"3.1.0","info":{"title":"Adb Core Backend","version":"1.0.0"},"paths":{"/api/v1/auth/login":{"post":{"summary":"Login","operationId":"login_api_v1_auth_login_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LoginRequestData"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_LoginResponseData_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/auth/refresh_token":{"post":{"summary":"Login","operationId":"login_api_v1_auth_refresh_token_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RefreshTokenData"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_LoginResponseData_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/profile/current_profile":{"get":{"summary":"Current Profile","operationId":"current_profile_api_v1_profile_current_profile_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_ProfileResponse_"}}}}},"security":[{"HTTPBearer":[]}]}},"/api/v1/profile/fetch_bank_profiles":{"post":{"summary":"Fetch Bank Profiles","operationId":"fetch_bank_profiles_api_v1_profile_fetch_bank_profiles_post","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_list_BankProfileResponse__"}}}}},"security":[{"HTTPBearer":[]}]}},"/api/v1/profile/fetch_materials":{"post":{"summary":"Fetch Materials","operationId":"fetch_materials_api_v1_profile_fetch_materials_post","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_list_MaterialResponseModel__"}}}}},"security":[{"HTTPBearer":[]}]}},"/api/v1/profile/bank_profile":{"post":{"summary":"Create Bank Profile","operationId":"create_bank_profile_api_v1_profile_bank_profile_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateBankProfile"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_BankProfileResponse_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/api/v1/profile/bank_profile/{bank_profile_id}":{"patch":{"summary":"Update Bank Profile","operationId":"update_bank_profile_api_v1_profile_bank_profile__bank_profile_id__patch","security":[{"HTTPBearer":[]}],"parameters":[{"name":"bank_profile_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Bank Profile Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateBankProfileModel"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_BankProfileModel_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"summary":"Delete Bank Profile","operationId":"delete_bank_profile_api_v1_profile_bank_profile__bank_profile_id__delete","security":[{"HTTPBearer":[]}],"parameters":[{"name":"bank_profile_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Bank Profile Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/profile/bank_profile/{bank_profile_id}/{is_enable}":{"patch":{"summary":"Unable Or Disable Bank Profile","operationId":"unable_or_disable_bank_profile_api_v1_profile_bank_profile__bank_profile_id___is_enable__patch","security":[{"HTTPBearer":[]}],"parameters":[{"name":"bank_profile_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Bank Profile Id"}},{"name":"is_enable","in":"path","required":true,"schema":{"type":"boolean","title":"Is Enable"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_BankProfileModel_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/profile/material":{"post":{"summary":"Create Material","operationId":"create_material_api_v1_profile_material_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateMaterialRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_MaterialResponseModel_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/api/v1/profile/material/{material_id}":{"patch":{"summary":"Update Material","operationId":"update_material_api_v1_profile_material__material_id__patch","security":[{"HTTPBearer":[]}],"parameters":[{"name":"material_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Material Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateMaterialData"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_MaterialModel_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"summary":"Delete Material","operationId":"delete_material_api_v1_profile_material__material_id__delete","security":[{"HTTPBearer":[]}],"parameters":[{"name":"material_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Material Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/profile/material/{material_id}/{is_enable}":{"patch":{"summary":"Unable Or Disable Material","operationId":"unable_or_disable_material_api_v1_profile_material__material_id___is_enable__patch","security":[{"HTTPBearer":[]}],"parameters":[{"name":"material_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Material Id"}},{"name":"is_enable","in":"path","required":true,"schema":{"type":"boolean","title":"Is Enable"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_MaterialModel_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/desktop/":{"get":{"summary":"Get All Desktops","operationId":"get_all_desktops_api_v1_desktop__get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_list_DesktopResponseModel__"}}}}},"security":[{"HTTPBearer":[]}]},"post":{"summary":"Create Desktop","operationId":"create_desktop_api_v1_desktop__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateDesktopData"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_DesktopResponseModel_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/api/v1/desktop/{desktop_id}":{"patch":{"summary":"Update Desktop","operationId":"update_desktop_api_v1_desktop__desktop_id__patch","security":[{"HTTPBearer":[]}],"parameters":[{"name":"desktop_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Desktop Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateDesktopData"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_DesktopResponseModel_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"summary":"Delete Desktop","operationId":"delete_desktop_api_v1_desktop__desktop_id__delete","security":[{"HTTPBearer":[]}],"parameters":[{"name":"desktop_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Desktop Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/device/{desktop_id}":{"get":{"summary":"Get All Devices By Desktop Id","operationId":"get_all_devices_by_desktop_id_api_v1_device__desktop_id__get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"desktop_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Desktop Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_list_DeviceResponseModel__"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/device/":{"post":{"summary":"Create Desktop","operationId":"create_desktop_api_v1_device__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateDeviceData"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_DeviceResponseModel_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/api/v1/device/{device_id}":{"patch":{"summary":"Update Device","operationId":"update_device_api_v1_device__device_id__patch","security":[{"HTTPBearer":[]}],"parameters":[{"name":"device_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Device Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateDeviceData"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_DeviceResponseModel_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"summary":"Delete Device","operationId":"delete_device_api_v1_device__device_id__delete","security":[{"HTTPBearer":[]}],"parameters":[{"name":"device_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Device Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/device/add_screenshot/{device_id}":{"post":{"summary":"Add Screenshot","operationId":"add_screenshot_api_v1_device_add_screenshot__device_id__post","security":[{"HTTPBearer":[]}],"parameters":[{"name":"device_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Device Id"}}],"requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/Body_add_screenshot_api_v1_device_add_screenshot__device_id__post"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_GetDeviceScreenshotModel_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/device/delete_screenshot/{screenshot_id}":{"delete":{"summary":"Delete Screenshot","operationId":"delete_screenshot_api_v1_device_delete_screenshot__screenshot_id__delete","security":[{"HTTPBearer":[]}],"parameters":[{"name":"screenshot_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Screenshot Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/task/add_task":{"post":{"summary":"Add Task","operationId":"add_task_api_v1_task_add_task_post","requestBody":{"content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/CreateTransactionTask-Input"},{"$ref":"#/components/schemas/FetchTransactionsTask"},{"$ref":"#/components/schemas/FetchProfileTask"}],"title":"Data","discriminator":{"propertyName":"type","mapping":{"CREATE_TRANSACTION":"#/components/schemas/CreateTransactionTask-Input","FETCH_TRANSACTIONS":"#/components/schemas/FetchTransactionsTask","FETCH_PROFILE":"#/components/schemas/FetchProfileTask"}}}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_NoneType_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/task/task_result":{"post":{"summary":"Add Task","operationId":"add_task_api_v1_task_task_result_post","requestBody":{"content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/CreateTransactionEvent"},{"$ref":"#/components/schemas/FetchTransactionsEvent"},{"$ref":"#/components/schemas/FetchProfileEvent"}],"title":"Data","discriminator":{"propertyName":"type","mapping":{"CREATE_TRANSACTION":"#/components/schemas/CreateTransactionEvent","FETCH_TRANSACTIONS":"#/components/schemas/FetchTransactionsEvent","FETCH_PROFILE":"#/components/schemas/FetchProfileEvent"}}}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_NoneType_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/api/v1/task/get_tasks":{"get":{"summary":"Get Task","operationId":"get_task_api_v1_task_get_tasks_get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"materials_id","in":"query","required":true,"schema":{"type":"array","items":{"type":"string"},"title":"Materials Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_list_Annotated_Union_CreateTransactionTask__FetchTransactionsTask__FetchProfileTask___FieldInfo_annotation_NoneType__required_True__discriminator__type_____"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/v1/task/add_bank":{"post":{"summary":"Add Task","operationId":"add_task_api_v1_task_add_bank_post","parameters":[{"name":"bank_name","in":"query","required":true,"schema":{"type":"string","title":"Bank Name"}},{"name":"webhook_url","in":"query","required":true,"schema":{"type":"string","format":"uri","minLength":1,"maxLength":2083,"title":"Webhook Url"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_NoneType_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/monitoring/log":{"post":{"summary":"Log","operationId":"log_monitoring_log_post","requestBody":{"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/Body_log_monitoring_log_post"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseResponse_BaseLogResponse_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"Account":{"properties":{"bank_account_id":{"type":"string","title":"Bank Account Id"},"currency":{"anyOf":[{"$ref":"#/components/schemas/CurrencyEnum"},{"type":"null"}]},"amount":{"type":"integer","title":"Amount","default":0},"extra":{"additionalProperties":true,"type":"object","title":"Extra","default":{}}},"type":"object","required":["bank_account_id"],"title":"Account"},"BankProfileModel":{"properties":{"id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Id"},"first_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"First Name"},"middle_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Middle Name"},"last_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Last Name"},"bank_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Bank Name"},"phone_number":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Phone Number"},"balance":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Balance","default":"0"},"state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"}},"type":"object","title":"BankProfileModel"},"BankProfileResponse":{"properties":{"bank_profile_external_id":{"type":"integer","title":"Bank Profile External Id"},"first_name":{"type":"string","title":"First Name"},"middle_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Middle Name"},"last_name":{"type":"string","title":"Last Name"},"bank_name":{"type":"string","title":"Bank Name"},"phone_number":{"type":"string","title":"Phone Number"},"balance":{"type":"string","title":"Balance"},"state":{"type":"string","title":"State"},"created_at":{"type":"string","format":"date-time","title":"Created At"},"updated_at":{"type":"string","format":"date-time","title":"Updated At"},"profile_id":{"type":"string","format":"uuid","title":"Profile Id"},"materials":{"anyOf":[{"items":{"$ref":"#/components/schemas/MaterialResponseModel"},"type":"array"},{"type":"null"}],"title":"Materials"},"currency":{"anyOf":[{"$ref":"#/components/schemas/CurrencyEnum"},{"type":"null"}]},"id":{"type":"string","format":"uuid","title":"Id"}},"type":"object","required":["bank_profile_external_id","first_name","last_name","bank_name","phone_number","balance","state","created_at","updated_at","profile_id","id"],"title":"BankProfileResponse"},"BaseLogResponse":{"properties":{},"type":"object","title":"BaseLogResponse"},"BaseResponse":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"type":"string","title":"Code","default":"SUCCESS"},"data":{"anyOf":[{},{"type":"null"}],"title":"Data"}},"type":"object","required":["success"],"title":"BaseResponse"},"BaseResponse_BankProfileModel_":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"type":"string","title":"Code","default":"SUCCESS"},"data":{"anyOf":[{"$ref":"#/components/schemas/BankProfileModel"},{"type":"null"}]}},"type":"object","required":["success"],"title":"BaseResponse[BankProfileModel]"},"BaseResponse_BankProfileResponse_":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"type":"string","title":"Code","default":"SUCCESS"},"data":{"anyOf":[{"$ref":"#/components/schemas/BankProfileResponse"},{"type":"null"}]}},"type":"object","required":["success"],"title":"BaseResponse[BankProfileResponse]"},"BaseResponse_BaseLogResponse_":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"type":"string","title":"Code","default":"SUCCESS"},"data":{"anyOf":[{"$ref":"#/components/schemas/BaseLogResponse"},{"type":"null"}]}},"type":"object","required":["success"],"title":"BaseResponse[BaseLogResponse]"},"BaseResponse_DesktopResponseModel_":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"type":"string","title":"Code","default":"SUCCESS"},"data":{"anyOf":[{"$ref":"#/components/schemas/DesktopResponseModel"},{"type":"null"}]}},"type":"object","required":["success"],"title":"BaseResponse[DesktopResponseModel]"},"BaseResponse_DeviceResponseModel_":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"type":"string","title":"Code","default":"SUCCESS"},"data":{"anyOf":[{"$ref":"#/components/schemas/DeviceResponseModel"},{"type":"null"}]}},"type":"object","required":["success"],"title":"BaseResponse[DeviceResponseModel]"},"BaseResponse_GetDeviceScreenshotModel_":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"type":"string","title":"Code","default":"SUCCESS"},"data":{"anyOf":[{"$ref":"#/components/schemas/GetDeviceScreenshotModel"},{"type":"null"}]}},"type":"object","required":["success"],"title":"BaseResponse[GetDeviceScreenshotModel]"},"BaseResponse_LoginResponseData_":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"type":"string","title":"Code","default":"SUCCESS"},"data":{"anyOf":[{"$ref":"#/components/schemas/LoginResponseData"},{"type":"null"}]}},"type":"object","required":["success"],"title":"BaseResponse[LoginResponseData]"},"BaseResponse_MaterialModel_":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"type":"string","title":"Code","default":"SUCCESS"},"data":{"anyOf":[{"$ref":"#/components/schemas/MaterialModel"},{"type":"null"}]}},"type":"object","required":["success"],"title":"BaseResponse[MaterialModel]"},"BaseResponse_MaterialResponseModel_":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"type":"string","title":"Code","default":"SUCCESS"},"data":{"anyOf":[{"$ref":"#/components/schemas/MaterialResponseModel"},{"type":"null"}]}},"type":"object","required":["success"],"title":"BaseResponse[MaterialResponseModel]"},"BaseResponse_NoneType_":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"type":"string","title":"Code","default":"SUCCESS"},"data":{"type":"null","title":"Data"}},"type":"object","required":["success"],"title":"BaseResponse[NoneType]"},"BaseResponse_ProfileResponse_":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"type":"string","title":"Code","default":"SUCCESS"},"data":{"anyOf":[{"$ref":"#/components/schemas/ProfileResponse"},{"type":"null"}]}},"type":"object","required":["success"],"title":"BaseResponse[ProfileResponse]"},"BaseResponse_list_Annotated_Union_CreateTransactionTask__FetchTransactionsTask__FetchProfileTask___FieldInfo_annotation_NoneType__required_True__discriminator__type_____":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"type":"string","title":"Code","default":"SUCCESS"},"data":{"anyOf":[{"items":{"oneOf":[{"$ref":"#/components/schemas/CreateTransactionTask-Output"},{"$ref":"#/components/schemas/FetchTransactionsTask"},{"$ref":"#/components/schemas/FetchProfileTask"}],"discriminator":{"propertyName":"type","mapping":{"CREATE_TRANSACTION":"#/components/schemas/CreateTransactionTask-Output","FETCH_PROFILE":"#/components/schemas/FetchProfileTask","FETCH_TRANSACTIONS":"#/components/schemas/FetchTransactionsTask"}}},"type":"array"},{"type":"null"}],"title":"Data"}},"type":"object","required":["success"],"title":"BaseResponse[list[Annotated[Union[CreateTransactionTask, FetchTransactionsTask, FetchProfileTask], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]]"},"BaseResponse_list_BankProfileResponse__":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"type":"string","title":"Code","default":"SUCCESS"},"data":{"anyOf":[{"items":{"$ref":"#/components/schemas/BankProfileResponse"},"type":"array"},{"type":"null"}],"title":"Data"}},"type":"object","required":["success"],"title":"BaseResponse[list[BankProfileResponse]]"},"BaseResponse_list_DesktopResponseModel__":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"type":"string","title":"Code","default":"SUCCESS"},"data":{"anyOf":[{"items":{"$ref":"#/components/schemas/DesktopResponseModel"},"type":"array"},{"type":"null"}],"title":"Data"}},"type":"object","required":["success"],"title":"BaseResponse[list[DesktopResponseModel]]"},"BaseResponse_list_DeviceResponseModel__":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"type":"string","title":"Code","default":"SUCCESS"},"data":{"anyOf":[{"items":{"$ref":"#/components/schemas/DeviceResponseModel"},"type":"array"},{"type":"null"}],"title":"Data"}},"type":"object","required":["success"],"title":"BaseResponse[list[DeviceResponseModel]]"},"BaseResponse_list_MaterialResponseModel__":{"properties":{"success":{"type":"boolean","title":"Success"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"code":{"type":"string","title":"Code","default":"SUCCESS"},"data":{"anyOf":[{"items":{"$ref":"#/components/schemas/MaterialResponseModel"},"type":"array"},{"type":"null"}],"title":"Data"}},"type":"object","required":["success"],"title":"BaseResponse[list[MaterialResponseModel]]"},"Body_add_screenshot_api_v1_device_add_screenshot__device_id__post":{"properties":{"file":{"type":"string","format":"binary","title":"File"}},"type":"object","required":["file"],"title":"Body_add_screenshot_api_v1_device_add_screenshot__device_id__post"},"Body_log_monitoring_log_post":{"properties":{"type":{"$ref":"#/components/schemas/LogType"},"event":{"type":"string","title":"Event"},"message":{"type":"string","title":"Message"},"image":{"anyOf":[{"type":"string","format":"binary"},{"type":"string"},{"type":"null"}],"title":"Image"}},"type":"object","required":["type","event","message"],"title":"Body_log_monitoring_log_post"},"CreateBankProfile":{"properties":{"first_name":{"type":"string","title":"First Name"},"middle_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Middle Name"},"last_name":{"type":"string","title":"Last Name"},"bank_name":{"type":"string","title":"Bank Name"},"phone_number":{"type":"string","title":"Phone Number"},"balance":{"type":"string","title":"Balance"},"state":{"type":"string","title":"State"},"currency":{"anyOf":[{"$ref":"#/components/schemas/CurrencyEnum"},{"type":"null"}]}},"type":"object","required":["first_name","last_name","bank_name","phone_number","balance","state","currency"],"title":"CreateBankProfile"},"CreateDesktopData":{"properties":{"blue_token":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Blue Token"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"contact":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Contact"},"timestamp":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Timestamp"},"update_time":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Update Time"},"session_time":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Session Time"},"app_version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"App Version"}},"type":"object","required":["blue_token","name","contact","app_version"],"title":"CreateDesktopData"},"CreateDeviceData":{"properties":{"desktop_id":{"type":"string","format":"uuid","title":"Desktop Id"},"status":{"$ref":"#/components/schemas/DeviceStatus"},"name":{"type":"string","title":"Name"},"timestamp":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Timestamp"},"update_time":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Update Time"},"screen_width":{"type":"integer","title":"Screen Width"},"screen_height":{"type":"integer","title":"Screen Height"},"battery":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Battery"}},"type":"object","required":["desktop_id","status","name","screen_width","screen_height","battery"],"title":"CreateDeviceData"},"CreateMaterialRequest":{"properties":{"bank_profile_id":{"type":"string","format":"uuid","title":"Bank Profile Id"},"card_number":{"type":"string","title":"Card Number"},"name":{"type":"string","title":"Name"},"state":{"type":"string","title":"State"}},"type":"object","required":["bank_profile_id","card_number","name","state"],"title":"CreateMaterialRequest"},"CreateTransactionBody":{"properties":{"amount":{"type":"integer","title":"Amount"},"currency":{"$ref":"#/components/schemas/CurrencyEnum"},"type":{"$ref":"#/components/schemas/TransactionTypeEnum"},"bank_participator_id":{"type":"string","title":"Bank Participator Id"},"extra":{"additionalProperties":true,"type":"object","title":"Extra"}},"type":"object","required":["amount","currency","type","bank_participator_id"],"title":"CreateTransactionBody"},"CreateTransactionEvent":{"properties":{"type":{"type":"string","const":"CREATE_TRANSACTION","title":"Type"},"material_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"integer"},{"type":"string"}],"title":"Material Id"},"bank_name":{"type":"string","title":"Bank Name"},"data":{"$ref":"#/components/schemas/Transaction"}},"type":"object","required":["type","material_id","bank_name","data"],"title":"CreateTransactionEvent"},"CreateTransactionTask-Input":{"properties":{"bank_name":{"type":"string","title":"Bank Name"},"material_id":{"anyOf":[{"type":"integer"},{"type":"string","format":"uuid"}],"title":"Material Id"},"type":{"type":"string","const":"CREATE_TRANSACTION","title":"Type"},"body":{"$ref":"#/components/schemas/CreateTransactionBody"}},"type":"object","required":["bank_name","material_id","type","body"],"title":"CreateTransactionTask"},"CreateTransactionTask-Output":{"properties":{"bank_name":{"type":"string","title":"Bank Name"},"material_id":{"anyOf":[{"type":"integer"},{"type":"string","format":"uuid"}],"title":"Material Id"},"type":{"type":"string","const":"CREATE_TRANSACTION","title":"Type"},"body":{"$ref":"#/components/schemas/CreateTransactionBody"}},"type":"object","required":["bank_name","material_id","type","body"],"title":"CreateTransactionTask"},"CurrencyEnum":{"type":"integer","enum":[784,971,8,51,532,973,32,36,533,944,977,52,50,975,48,108,60,96,68,984,986,44,64,72,933,84,124,976,947,756,948,990,152,156,170,970,188,931,192,132,203,262,208,214,12,818,232,230,978,242,238,826,981,936,292,270,324,320,328,344,340,191,332,348,360,376,356,368,364,352,388,400,392,404,417,116,174,408,410,414,136,398,418,422,144,430,426,440,434,504,498,969,807,104,496,446,929,480,462,454,484,979,458,943,516,566,558,578,524,554,512,590,604,598,608,586,985,600,634,946,941,643,646,682,90,690,938,752,702,654,694,706,968,728,930,222,760,748,764,972,934,788,776,949,780,901,834,980,800,840,997,998,940,858,860,937,704,548,882,950,961,959,955,956,957,958,951,960,952,964,953,962,994,963,965,999,886,710,967,932],"title":"CurrencyEnum"},"DesktopResponseModel":{"properties":{"blue_token":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Blue Token"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"contact":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Contact"},"timestamp":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Timestamp"},"update_time":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Update Time"},"session_time":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Session Time"},"app_version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"App Version"},"hidden":{"type":"boolean","title":"Hidden","default":false},"profile_id":{"type":"string","format":"uuid","title":"Profile Id"},"id":{"type":"string","format":"uuid","title":"Id"},"unique_name":{"type":"string","title":"Unique Name"},"devices":{"anyOf":[{"items":{"$ref":"#/components/schemas/DeviceResponseModel"},"type":"array"},{"type":"null"}],"title":"Devices","default":[]}},"type":"object","required":["blue_token","name","contact","timestamp","update_time","session_time","app_version","profile_id","id","unique_name"],"title":"DesktopResponseModel"},"DeviceResponseModel":{"properties":{"desktop_id":{"type":"string","format":"uuid","title":"Desktop Id"},"status":{"$ref":"#/components/schemas/DeviceStatus"},"name":{"type":"string","title":"Name"},"timestamp":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Timestamp"},"update_time":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Update Time"},"screen_width":{"type":"integer","title":"Screen Width"},"screen_height":{"type":"integer","title":"Screen Height"},"battery":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Battery"},"id":{"type":"string","format":"uuid","title":"Id"},"unique_name":{"type":"string","title":"Unique Name"}},"type":"object","required":["desktop_id","status","name","timestamp","update_time","screen_width","screen_height","battery","id","unique_name"],"title":"DeviceResponseModel"},"DeviceStatus":{"type":"string","enum":["ONLINE","OFFLINE"],"title":"DeviceStatus"},"EmptyBody":{"properties":{},"type":"object","title":"EmptyBody"},"FetchProfileEvent":{"properties":{"type":{"type":"string","const":"FETCH_PROFILE","title":"Type"},"material_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"integer"},{"type":"string"}],"title":"Material Id"},"bank_name":{"type":"string","title":"Bank Name"},"data":{"$ref":"#/components/schemas/Account"}},"type":"object","required":["type","material_id","bank_name","data"],"title":"FetchProfileEvent"},"FetchProfileTask":{"properties":{"bank_name":{"type":"string","title":"Bank Name"},"material_id":{"anyOf":[{"type":"integer"},{"type":"string","format":"uuid"}],"title":"Material Id"},"type":{"type":"string","const":"FETCH_PROFILE","title":"Type"},"body":{"$ref":"#/components/schemas/EmptyBody"}},"type":"object","required":["bank_name","material_id","type","body"],"title":"FetchProfileTask"},"FetchTransactionsEvent":{"properties":{"type":{"type":"string","const":"FETCH_TRANSACTIONS","title":"Type"},"material_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"integer"},{"type":"string"}],"title":"Material Id"},"bank_name":{"type":"string","title":"Bank Name"},"data":{"items":{"$ref":"#/components/schemas/Transaction"},"type":"array","title":"Data"}},"type":"object","required":["type","material_id","bank_name","data"],"title":"FetchTransactionsEvent"},"FetchTransactionsRequest":{"properties":{"amount":{"type":"integer","title":"Amount","description":"Transaction amount in kopecks"},"created_at":{"type":"string","format":"date-time","title":"Created At"}},"type":"object","required":["amount","created_at"],"title":"FetchTransactionsRequest"},"FetchTransactionsTask":{"properties":{"bank_name":{"type":"string","title":"Bank Name"},"material_id":{"anyOf":[{"type":"integer"},{"type":"string","format":"uuid"}],"title":"Material Id"},"type":{"type":"string","const":"FETCH_TRANSACTIONS","title":"Type"},"body":{"anyOf":[{"$ref":"#/components/schemas/FetchTransactionsRequest"},{"$ref":"#/components/schemas/EmptyBody"}],"title":"Body"}},"type":"object","required":["bank_name","material_id","type"],"title":"FetchTransactionsTask"},"GetDeviceScreenshotModel":{"properties":{"device_id":{"type":"string","format":"uuid","title":"Device Id"},"screenshot_url":{"type":"string","title":"Screenshot Url"},"taken_at":{"type":"string","format":"date-time","title":"Taken At"},"id":{"type":"string","format":"uuid","title":"Id"}},"type":"object","required":["device_id","screenshot_url","taken_at","id"],"title":"GetDeviceScreenshotModel"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"LogType":{"type":"string","enum":["INFO","WARNING","DEBUG","ERROR"],"title":"LogType"},"LoginRequestData":{"properties":{"api_key":{"type":"string","title":"Api Key"}},"type":"object","required":["api_key"],"title":"LoginRequestData"},"LoginResponseData":{"properties":{"id":{"type":"string","format":"uuid","title":"Id"},"access_token":{"type":"string","title":"Access Token"},"refresh_token":{"type":"string","title":"Refresh Token"},"expires_in":{"type":"number","title":"Expires In"}},"type":"object","required":["id","access_token","refresh_token","expires_in"],"title":"LoginResponseData"},"MaterialModel":{"properties":{"bank_profile_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Bank Profile Id"},"card_number":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Card Number"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Id"},"state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State"}},"type":"object","title":"MaterialModel"},"MaterialResponseModel":{"properties":{"external_bank_profile_id":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"External Bank Profile Id"},"state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State"},"external_material_id":{"type":"integer","title":"External Material Id"},"card_number":{"type":"string","title":"Card Number"},"name":{"type":"string","title":"Name"},"bank_profile_id":{"type":"string","format":"uuid","title":"Bank Profile Id"},"id":{"type":"string","format":"uuid","title":"Id"},"created_at":{"type":"string","format":"date-time","title":"Created At"},"updated_at":{"type":"string","format":"date-time","title":"Updated At"}},"type":"object","required":["external_bank_profile_id","state","external_material_id","card_number","name","bank_profile_id","id","created_at","updated_at"],"title":"MaterialResponseModel"},"ProfileResponse":{"properties":{"api_key":{"type":"string","title":"Api Key"},"id":{"type":"string","format":"uuid","title":"Id"},"bank_profiles":{"anyOf":[{"items":{"$ref":"#/components/schemas/BankProfileResponse"},"type":"array"},{"type":"null"}],"title":"Bank Profiles"}},"type":"object","required":["api_key","id","bank_profiles"],"title":"ProfileResponse"},"RefreshTokenData":{"properties":{"refresh_token":{"type":"string","title":"Refresh Token"}},"type":"object","required":["refresh_token"],"title":"RefreshTokenData"},"Transaction":{"properties":{"bank_transaction_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Bank Transaction Id"},"amount":{"type":"integer","title":"Amount"},"currency":{"$ref":"#/components/schemas/CurrencyEnum"},"transaction_type":{"$ref":"#/components/schemas/TransactionTypeEnum"},"bank_participator_id":{"type":"string","title":"Bank Participator Id"},"status":{"anyOf":[{"$ref":"#/components/schemas/TransactionStatusEnum"},{"type":"null"}]},"extra":{"additionalProperties":true,"type":"object","title":"Extra","default":{}},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"}},"type":"object","required":["amount","currency","transaction_type","bank_participator_id"],"title":"Transaction"},"TransactionStatusEnum":{"type":"string","enum":["progress","completed","declined"],"title":"TransactionStatusEnum"},"TransactionTypeEnum":{"type":"string","enum":["bank","top-up"],"title":"TransactionTypeEnum"},"UpdateBankProfileModel":{"properties":{"first_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"First Name"},"middle_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Middle Name"},"last_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Last Name"},"bank_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Bank Name"},"phone_number":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Phone Number"},"balance":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Balance"},"state":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"State"}},"type":"object","title":"UpdateBankProfileModel"},"UpdateDesktopData":{"properties":{"blue_token":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Blue Token"},"update_time":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Update Time"},"session_time":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Session Time"},"app_version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"App Version"}},"type":"object","title":"UpdateDesktopData"},"UpdateDeviceData":{"properties":{"status":{"$ref":"#/components/schemas/DeviceStatus"},"update_time":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Update Time"},"battery":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Battery"}},"type":"object","required":["status"],"title":"UpdateDeviceData"},"UpdateMaterialData":{"properties":{"card_number":{"type":"string","title":"Card Number"}},"type":"object","required":["card_number"],"title":"UpdateMaterialData"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"}},"securitySchemes":{"HTTPBearer":{"type":"http","scheme":"bearer"}}}}