comAtprotoRepoDescribeRepo function

Future<XRPCResponse<RepoDescribeRepoOutput>> comAtprotoRepoDescribeRepo({
  1. required String repo,
  2. required ServiceContext $ctx,
  3. String? $service,
  4. Map<String, String>? $headers,
  5. 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,
  String? $service,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.get(
  ns.comAtprotoRepoDescribeRepo,
  service: $service,
  headers: $headers,
  parameters: {...?$unknown, 'repo': repo},
  to: const RepoDescribeRepoOutputConverter().fromJson,
);