@@ -21,73 +21,73 @@ concept DroidIs = std::is_same_v<I, Character>;
2121namespace methods ::DroidHas {
2222
2323template <class TImpl >
24- concept getIdWithParams = requires (TImpl impl, service::FieldParams params)
24+ concept getIdWithParams = requires (TImpl impl, service::FieldParams params)
2525{
2626 { service::AwaitableScalar<std::string> { impl.getId (std::move (params)) } };
2727};
2828
2929template <class TImpl >
30- concept getId = requires (TImpl impl)
30+ concept getId = requires (TImpl impl)
3131{
3232 { service::AwaitableScalar<std::string> { impl.getId () } };
3333};
3434
3535template <class TImpl >
36- concept getNameWithParams = requires (TImpl impl, service::FieldParams params)
36+ concept getNameWithParams = requires (TImpl impl, service::FieldParams params)
3737{
3838 { service::AwaitableScalar<std::optional<std::string>> { impl.getName (std::move (params)) } };
3939};
4040
4141template <class TImpl >
42- concept getName = requires (TImpl impl)
42+ concept getName = requires (TImpl impl)
4343{
4444 { service::AwaitableScalar<std::optional<std::string>> { impl.getName () } };
4545};
4646
4747template <class TImpl >
48- concept getFriendsWithParams = requires (TImpl impl, service::FieldParams params)
48+ concept getFriendsWithParams = requires (TImpl impl, service::FieldParams params)
4949{
5050 { service::AwaitableObject<std::optional<std::vector<std::shared_ptr<Character>>>> { impl.getFriends (std::move (params)) } };
5151};
5252
5353template <class TImpl >
54- concept getFriends = requires (TImpl impl)
54+ concept getFriends = requires (TImpl impl)
5555{
5656 { service::AwaitableObject<std::optional<std::vector<std::shared_ptr<Character>>>> { impl.getFriends () } };
5757};
5858
5959template <class TImpl >
60- concept getAppearsInWithParams = requires (TImpl impl, service::FieldParams params)
60+ concept getAppearsInWithParams = requires (TImpl impl, service::FieldParams params)
6161{
6262 { service::AwaitableScalar<std::optional<std::vector<std::optional<Episode>>>> { impl.getAppearsIn (std::move (params)) } };
6363};
6464
6565template <class TImpl >
66- concept getAppearsIn = requires (TImpl impl)
66+ concept getAppearsIn = requires (TImpl impl)
6767{
6868 { service::AwaitableScalar<std::optional<std::vector<std::optional<Episode>>>> { impl.getAppearsIn () } };
6969};
7070
7171template <class TImpl >
72- concept getPrimaryFunctionWithParams = requires (TImpl impl, service::FieldParams params)
72+ concept getPrimaryFunctionWithParams = requires (TImpl impl, service::FieldParams params)
7373{
7474 { service::AwaitableScalar<std::optional<std::string>> { impl.getPrimaryFunction (std::move (params)) } };
7575};
7676
7777template <class TImpl >
78- concept getPrimaryFunction = requires (TImpl impl)
78+ concept getPrimaryFunction = requires (TImpl impl)
7979{
8080 { service::AwaitableScalar<std::optional<std::string>> { impl.getPrimaryFunction () } };
8181};
8282
8383template <class TImpl >
84- concept beginSelectionSet = requires (TImpl impl, const service::SelectionSetParams params)
84+ concept beginSelectionSet = requires (TImpl impl, const service::SelectionSetParams params)
8585{
8686 { impl.beginSelectionSet (params) };
8787};
8888
8989template <class TImpl >
90- concept endSelectionSet = requires (TImpl impl, const service::SelectionSetParams params)
90+ concept endSelectionSet = requires (TImpl impl, const service::SelectionSetParams params)
9191{
9292 { impl.endSelectionSet (params) };
9393};
0 commit comments