11use super :: endpoint:: {
2+ followers_endpoint:: { FollowersRequestBuilder , FollowersRequestExecutor } ,
23 jetpack_connection_endpoint:: {
34 JetpackConnectionRequestBuilder , JetpackConnectionRequestExecutor ,
45 } ,
@@ -30,6 +31,7 @@ impl UniffiWpComApiRequestBuilder {
3031}
3132
3233pub struct WpComApiRequestBuilder {
34+ followers : Arc < FollowersRequestBuilder > ,
3335 jetpack_connection : Arc < JetpackConnectionRequestBuilder > ,
3436 oauth2 : Arc < Oauth2RequestBuilder > ,
3537 subscribers : Arc < SubscribersRequestBuilder > ,
@@ -43,6 +45,7 @@ impl WpComApiRequestBuilder {
4345 api_client_generate_request_builder ! (
4446 api_url_resolver,
4547 auth_provider;
48+ followers,
4649 jetpack_connection,
4750 oauth2,
4851 subscribers,
@@ -67,6 +70,7 @@ impl UniffiWpComApiClient {
6770}
6871
6972pub struct WpComApiClient {
73+ followers : Arc < FollowersRequestExecutor > ,
7074 jetpack_connection : Arc < JetpackConnectionRequestExecutor > ,
7175 oauth2 : Arc < Oauth2RequestExecutor > ,
7276 subscribers : Arc < SubscribersRequestExecutor > ,
@@ -81,13 +85,15 @@ impl WpComApiClient {
8185 api_client_generate_api_client ! (
8286 api_url_resolver,
8387 delegate;
88+ followers,
8489 jetpack_connection,
8590 oauth2,
8691 subscribers,
8792 support_bots
8893 )
8994 }
9095}
96+ api_client_generate_endpoint_impl ! ( WpComApi , followers) ;
9197api_client_generate_endpoint_impl ! ( WpComApi , jetpack_connection) ;
9298api_client_generate_endpoint_impl ! ( WpComApi , oauth2) ;
9399api_client_generate_endpoint_impl ! ( WpComApi , subscribers) ;
0 commit comments