comAtprotoRepoDescribeRepo function

Future<XRPCResponse<RepoDescribeRepoOutput>> comAtprotoRepoDescribeRepo({
  1. required String repo,
  2. required ServiceContext $ctx,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Get information about an account and repository, including the list of collections. Does not require auth.

Implementation

Future<XRPCResponse<RepoDescribeRepoOutput>> comAtprotoRepoDescribeRepo({
  required String repo,
  required ServiceContext $ctx,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.get(
  ns.comAtprotoRepoDescribeRepo,
  headers: $headers,
  parameters: {...?$unknown, 'repo': repo},
  to: const RepoDescribeRepoOutputConverter().fromJson,
);