···11-/*
22- * THIS FILE WAS GENERATED BY "@atproto/lex". DO NOT EDIT.
33- */
44-55-export * as atproto from './com/atproto.js'
-5
src/lexicons/com/atproto.ts
···11-/*
22- * THIS FILE WAS GENERATED BY "@atproto/lex". DO NOT EDIT.
33- */
44-55-export * as sync from './atproto/sync.js'
-5
src/lexicons/com/atproto/sync.ts
···11-/*
22- * THIS FILE WAS GENERATED BY "@atproto/lex". DO NOT EDIT.
33- */
44-55-export * as getRepo from './sync/getRepo.js'
-29
src/lexicons/com/atproto/sync/getRepo.defs.ts
···11-/*
22- * THIS FILE WAS GENERATED BY "@atproto/lex". DO NOT EDIT.
33- */
44-55-import { l } from '@atproto/lex'
66-77-const $nsid = 'com.atproto.sync.getRepo'
88-99-export { $nsid }
1010-1111-/** Download a repository export as CAR file. Optionally only a 'diff' since a previous revision. Does not require auth; implemented by PDS. */
1212-const main = l.query(
1313- $nsid,
1414- l.params({
1515- did: l.string({ format: 'did' }),
1616- since: l.optional(l.string({ format: 'tid' })),
1717- }),
1818- l.payload('application/vnd.ipld.car'),
1919- ['RepoNotFound', 'RepoTakendown', 'RepoSuspended', 'RepoDeactivated'],
2020-)
2121-export { main }
2222-2323-export type Params = l.InferMethodParams<typeof main>
2424-export type Output = l.InferMethodOutput<typeof main>
2525-export type OutputBody = l.InferMethodOutputBody<typeof main>
2626-2727-export const $lxm = main.nsid,
2828- $params = main.parameters,
2929- $output = main.output
-6
src/lexicons/com/atproto/sync/getRepo.ts
···11-/*
22- * THIS FILE WAS GENERATED BY "@atproto/lex". DO NOT EDIT.
33- */
44-55-export * from './getRepo.defs.js'
66-export * as $defs from './getRepo.defs.js'