@atproto/api 0.6.4 → 0.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. package/dist/bsky-agent.d.ts +1 -0
  2. package/dist/client/index.d.ts +3 -0
  3. package/dist/client/lexicons.d.ts +52 -0
  4. package/dist/client/types/app/bsky/actor/createScene.d.ts +32 -0
  5. package/dist/client/types/app/bsky/actor/ref.d.ts +28 -0
  6. package/dist/client/types/app/bsky/actor/search.d.ts +22 -0
  7. package/dist/client/types/app/bsky/actor/searchTypeahead.d.ts +20 -0
  8. package/dist/client/types/app/bsky/actor/updateProfile.d.ts +40 -0
  9. package/dist/client/types/app/bsky/feed/feedViewPost.d.ts +28 -0
  10. package/dist/client/types/app/bsky/feed/getActorLikes.d.ts +28 -0
  11. package/dist/client/types/app/bsky/feed/getSavedFeeds.d.ts +21 -0
  12. package/dist/client/types/app/bsky/feed/getVotes.d.ts +36 -0
  13. package/dist/client/types/app/bsky/feed/saveFeed.d.ts +17 -0
  14. package/dist/client/types/app/bsky/feed/setVote.d.ts +25 -0
  15. package/dist/client/types/app/bsky/feed/trend.d.ts +9 -0
  16. package/dist/client/types/app/bsky/feed/unsaveFeed.d.ts +17 -0
  17. package/dist/client/types/app/bsky/feed/vote.d.ts +10 -0
  18. package/dist/client/types/app/bsky/graph/assertCreator.d.ts +1 -0
  19. package/dist/client/types/app/bsky/graph/assertMember.d.ts +1 -0
  20. package/dist/client/types/app/bsky/graph/assertion.d.ts +10 -0
  21. package/dist/client/types/app/bsky/graph/confirmation.d.ts +11 -0
  22. package/dist/client/types/app/bsky/graph/getAssertions.d.ts +48 -0
  23. package/dist/client/types/app/bsky/graph/getListBlocks.d.ts +21 -0
  24. package/dist/client/types/app/bsky/graph/getMembers.d.ts +36 -0
  25. package/dist/client/types/app/bsky/graph/getMemberships.d.ts +36 -0
  26. package/dist/client/types/app/bsky/graph/listblock.d.ts +8 -0
  27. package/dist/client/types/app/bsky/graph/mute.d.ts +17 -0
  28. package/dist/client/types/app/bsky/graph/subscribeMuteList.d.ts +17 -0
  29. package/dist/client/types/app/bsky/graph/unmute.d.ts +17 -0
  30. package/dist/client/types/app/bsky/graph/unsubscribeMuteList.d.ts +17 -0
  31. package/dist/client/types/app/bsky/notification/getCount.d.ts +17 -0
  32. package/dist/client/types/app/bsky/notification/list.d.ts +35 -0
  33. package/dist/client/types/app/bsky/system/actorScene.d.ts +1 -0
  34. package/dist/client/types/app/bsky/system/actorUser.d.ts +1 -0
  35. package/dist/client/types/app/bsky/system/declRef.d.ts +8 -0
  36. package/dist/client/types/app/bsky/system/declaration.d.ts +7 -0
  37. package/dist/client/types/app/bsky/unspecced/registerPushNotification.d.ts +16 -0
  38. package/dist/client/types/com/atproto/account/create.d.ts +41 -0
  39. package/dist/client/types/com/atproto/account/createInviteCode.d.ts +22 -0
  40. package/dist/client/types/com/atproto/account/delete.d.ts +25 -0
  41. package/dist/client/types/com/atproto/account/get.d.ts +12 -0
  42. package/dist/client/types/com/atproto/account/requestDelete.d.ts +13 -0
  43. package/dist/client/types/com/atproto/account/requestPasswordReset.d.ts +17 -0
  44. package/dist/client/types/com/atproto/account/resetPassword.d.ts +24 -0
  45. package/dist/client/types/com/atproto/admin/blob.d.ts +37 -0
  46. package/dist/client/types/com/atproto/admin/moderationAction.d.ts +60 -0
  47. package/dist/client/types/com/atproto/admin/moderationReport.d.ts +37 -0
  48. package/dist/client/types/com/atproto/admin/record.d.ts +43 -0
  49. package/dist/client/types/com/atproto/admin/repo.d.ts +45 -0
  50. package/dist/client/types/com/atproto/blob/upload.d.ts +19 -0
  51. package/dist/client/types/com/atproto/handle/resolve.d.ts +18 -0
  52. package/dist/client/types/com/atproto/handle/update.d.ts +17 -0
  53. package/dist/client/types/com/atproto/repo/batchWrite.d.ts +46 -0
  54. package/dist/client/types/com/atproto/repo/describe.d.ts +22 -0
  55. package/dist/client/types/com/atproto/repo/recordRef.d.ts +8 -0
  56. package/dist/client/types/com/atproto/repo/repoRef.d.ts +7 -0
  57. package/dist/client/types/com/atproto/report/create.d.ts +39 -0
  58. package/dist/client/types/com/atproto/report/reasonType.d.ts +3 -0
  59. package/dist/client/types/com/atproto/report/subject.d.ts +23 -0
  60. package/dist/client/types/com/atproto/server/getAccountsConfig.d.ts +27 -0
  61. package/dist/client/types/com/atproto/session/create.d.ts +29 -0
  62. package/dist/client/types/com/atproto/session/delete.d.ts +13 -0
  63. package/dist/client/types/com/atproto/session/get.d.ts +18 -0
  64. package/dist/client/types/com/atproto/session/refresh.d.ts +24 -0
  65. package/dist/client/types/com/atproto/sync/getRoot.d.ts +18 -0
  66. package/dist/client/types/com/atproto/sync/subscribeAllRepos.d.ts +9 -0
  67. package/dist/client/types/com/atproto/sync/updateRepo.d.ts +15 -0
  68. package/dist/helpers/bsky.d.ts +20 -0
  69. package/dist/index.js +175 -85
  70. package/dist/index.js.map +4 -4
  71. package/dist/mixins/bsky.d.ts +23 -0
  72. package/dist/rich-text/sanitize.d.ts +4 -0
  73. package/dist/session.d.ts +42 -0
  74. package/package.json +1 -1
  75. package/src/bsky-agent.ts +3 -0
  76. package/src/client/index.ts +13 -0
  77. package/src/client/lexicons.ts +57 -0
  78. package/src/client/types/app/bsky/feed/getActorLikes.ts +53 -0
  79. package/tsconfig.build.tsbuildinfo +1 -1
@@ -4,6 +4,7 @@ export declare class BskyAgent extends AtpAgent {
4
4
  get app(): import("./client").AppNS;
5
5
  getTimeline: typeof this.api.app.bsky.feed.getTimeline;
6
6
  getAuthorFeed: typeof this.api.app.bsky.feed.getAuthorFeed;
7
+ getActorLikes: typeof this.api.app.bsky.feed.getActorLikes;
7
8
  getPostThread: typeof this.api.app.bsky.feed.getPostThread;
8
9
  getPost: typeof this.api.app.bsky.feed.post.get;
9
10
  getPosts: typeof this.api.app.bsky.feed.getPosts;
@@ -68,6 +68,7 @@ import * as AppBskyActorSearchActorsTypeahead from './types/app/bsky/actor/searc
68
68
  import * as AppBskyFeedDescribeFeedGenerator from './types/app/bsky/feed/describeFeedGenerator';
69
69
  import * as AppBskyFeedGenerator from './types/app/bsky/feed/generator';
70
70
  import * as AppBskyFeedGetActorFeeds from './types/app/bsky/feed/getActorFeeds';
71
+ import * as AppBskyFeedGetActorLikes from './types/app/bsky/feed/getActorLikes';
71
72
  import * as AppBskyFeedGetAuthorFeed from './types/app/bsky/feed/getAuthorFeed';
72
73
  import * as AppBskyFeedGetFeed from './types/app/bsky/feed/getFeed';
73
74
  import * as AppBskyFeedGetFeedGenerator from './types/app/bsky/feed/getFeedGenerator';
@@ -185,6 +186,7 @@ export * as AppBskyFeedDefs from './types/app/bsky/feed/defs';
185
186
  export * as AppBskyFeedDescribeFeedGenerator from './types/app/bsky/feed/describeFeedGenerator';
186
187
  export * as AppBskyFeedGenerator from './types/app/bsky/feed/generator';
187
188
  export * as AppBskyFeedGetActorFeeds from './types/app/bsky/feed/getActorFeeds';
189
+ export * as AppBskyFeedGetActorLikes from './types/app/bsky/feed/getActorLikes';
188
190
  export * as AppBskyFeedGetAuthorFeed from './types/app/bsky/feed/getAuthorFeed';
189
191
  export * as AppBskyFeedGetFeed from './types/app/bsky/feed/getFeed';
190
192
  export * as AppBskyFeedGetFeedGenerator from './types/app/bsky/feed/getFeedGenerator';
@@ -416,6 +418,7 @@ export declare class FeedNS {
416
418
  constructor(service: AtpServiceClient);
417
419
  describeFeedGenerator(params?: AppBskyFeedDescribeFeedGenerator.QueryParams, opts?: AppBskyFeedDescribeFeedGenerator.CallOptions): Promise<AppBskyFeedDescribeFeedGenerator.Response>;
418
420
  getActorFeeds(params?: AppBskyFeedGetActorFeeds.QueryParams, opts?: AppBskyFeedGetActorFeeds.CallOptions): Promise<AppBskyFeedGetActorFeeds.Response>;
421
+ getActorLikes(params?: AppBskyFeedGetActorLikes.QueryParams, opts?: AppBskyFeedGetActorLikes.CallOptions): Promise<AppBskyFeedGetActorLikes.Response>;
419
422
  getAuthorFeed(params?: AppBskyFeedGetAuthorFeed.QueryParams, opts?: AppBskyFeedGetAuthorFeed.CallOptions): Promise<AppBskyFeedGetAuthorFeed.Response>;
420
423
  getFeed(params?: AppBskyFeedGetFeed.QueryParams, opts?: AppBskyFeedGetFeed.CallOptions): Promise<AppBskyFeedGetFeed.Response>;
421
424
  getFeedGenerator(params?: AppBskyFeedGetFeedGenerator.QueryParams, opts?: AppBskyFeedGetFeedGenerator.CallOptions): Promise<AppBskyFeedGetFeedGenerator.Response>;
@@ -4498,6 +4498,57 @@ export declare const schemaDict: {
4498
4498
  };
4499
4499
  };
4500
4500
  };
4501
+ AppBskyFeedGetActorLikes: {
4502
+ lexicon: number;
4503
+ id: string;
4504
+ defs: {
4505
+ main: {
4506
+ type: string;
4507
+ description: string;
4508
+ parameters: {
4509
+ type: string;
4510
+ required: string[];
4511
+ properties: {
4512
+ actor: {
4513
+ type: string;
4514
+ format: string;
4515
+ };
4516
+ limit: {
4517
+ type: string;
4518
+ minimum: number;
4519
+ maximum: number;
4520
+ default: number;
4521
+ };
4522
+ cursor: {
4523
+ type: string;
4524
+ };
4525
+ };
4526
+ };
4527
+ output: {
4528
+ encoding: string;
4529
+ schema: {
4530
+ type: string;
4531
+ required: string[];
4532
+ properties: {
4533
+ cursor: {
4534
+ type: string;
4535
+ };
4536
+ feed: {
4537
+ type: string;
4538
+ items: {
4539
+ type: string;
4540
+ ref: string;
4541
+ };
4542
+ };
4543
+ };
4544
+ };
4545
+ };
4546
+ errors: {
4547
+ name: string;
4548
+ }[];
4549
+ };
4550
+ };
4551
+ };
4501
4552
  AppBskyFeedGetAuthorFeed: {
4502
4553
  lexicon: number;
4503
4554
  id: string;
@@ -6283,6 +6334,7 @@ export declare const ids: {
6283
6334
  AppBskyFeedDescribeFeedGenerator: string;
6284
6335
  AppBskyFeedGenerator: string;
6285
6336
  AppBskyFeedGetActorFeeds: string;
6337
+ AppBskyFeedGetActorLikes: string;
6286
6338
  AppBskyFeedGetAuthorFeed: string;
6287
6339
  AppBskyFeedGetFeed: string;
6288
6340
  AppBskyFeedGetFeedGenerator: string;
@@ -0,0 +1,32 @@
1
+ import { Headers, XRPCError } from '@atproto/xrpc';
2
+ import * as AppBskySystemDeclRef from '../system/declRef';
3
+ export interface QueryParams {
4
+ }
5
+ export interface InputSchema {
6
+ handle: string;
7
+ recoveryKey?: string;
8
+ [k: string]: unknown;
9
+ }
10
+ export interface OutputSchema {
11
+ handle: string;
12
+ did: string;
13
+ declaration: AppBskySystemDeclRef.Main;
14
+ [k: string]: unknown;
15
+ }
16
+ export interface CallOptions {
17
+ headers?: Headers;
18
+ qp?: QueryParams;
19
+ encoding: 'application/json';
20
+ }
21
+ export interface Response {
22
+ success: boolean;
23
+ headers: Headers;
24
+ data: OutputSchema;
25
+ }
26
+ export declare class InvalidHandleError extends XRPCError {
27
+ constructor(src: XRPCError);
28
+ }
29
+ export declare class HandleNotAvailableError extends XRPCError {
30
+ constructor(src: XRPCError);
31
+ }
32
+ export declare function toKnownErr(e: any): any;
@@ -0,0 +1,28 @@
1
+ import { ValidationResult } from '@atproto/lexicon';
2
+ import * as AppBskySystemDeclRef from '../system/declRef';
3
+ export interface Main {
4
+ did: string;
5
+ declarationCid: string;
6
+ [k: string]: unknown;
7
+ }
8
+ export declare function isMain(v: unknown): v is Main;
9
+ export declare function validateMain(v: unknown): ValidationResult;
10
+ export interface WithInfo {
11
+ did: string;
12
+ declaration: AppBskySystemDeclRef.Main;
13
+ handle: string;
14
+ displayName?: string;
15
+ avatar?: string;
16
+ viewer?: ViewerState;
17
+ [k: string]: unknown;
18
+ }
19
+ export declare function isWithInfo(v: unknown): v is WithInfo;
20
+ export declare function validateWithInfo(v: unknown): ValidationResult;
21
+ export interface ViewerState {
22
+ muted?: boolean;
23
+ following?: string;
24
+ followedBy?: string;
25
+ [k: string]: unknown;
26
+ }
27
+ export declare function isViewerState(v: unknown): v is ViewerState;
28
+ export declare function validateViewerState(v: unknown): ValidationResult;
@@ -0,0 +1,22 @@
1
+ import { Headers } from '@atproto/xrpc';
2
+ import * as AppBskyActorProfile from './profile';
3
+ export interface QueryParams {
4
+ term?: string;
5
+ limit?: number;
6
+ before?: string;
7
+ }
8
+ export declare type InputSchema = undefined;
9
+ export interface OutputSchema {
10
+ cursor?: string;
11
+ users: AppBskyActorProfile.ViewBasic[];
12
+ [k: string]: unknown;
13
+ }
14
+ export interface CallOptions {
15
+ headers?: Headers;
16
+ }
17
+ export interface Response {
18
+ success: boolean;
19
+ headers: Headers;
20
+ data: OutputSchema;
21
+ }
22
+ export declare function toKnownErr(e: any): any;
@@ -0,0 +1,20 @@
1
+ import { Headers } from '@atproto/xrpc';
2
+ import * as AppBskyActorRef from './ref';
3
+ export interface QueryParams {
4
+ term?: string;
5
+ limit?: number;
6
+ }
7
+ export declare type InputSchema = undefined;
8
+ export interface OutputSchema {
9
+ users: AppBskyActorRef.WithInfo[];
10
+ [k: string]: unknown;
11
+ }
12
+ export interface CallOptions {
13
+ headers?: Headers;
14
+ }
15
+ export interface Response {
16
+ success: boolean;
17
+ headers: Headers;
18
+ data: OutputSchema;
19
+ }
20
+ export declare function toKnownErr(e: any): any;
@@ -0,0 +1,40 @@
1
+ import { Headers, XRPCError } from '@atproto/xrpc';
2
+ import { BlobRef } from '@atproto/lexicon';
3
+ export interface QueryParams {
4
+ }
5
+ export interface InputSchema {
6
+ displayName?: string;
7
+ description?: string | null;
8
+ avatar?: BlobRef | null;
9
+ banner?: BlobRef | null;
10
+ [k: string]: unknown;
11
+ }
12
+ export interface OutputSchema {
13
+ uri: string;
14
+ cid: string;
15
+ record: {};
16
+ [k: string]: unknown;
17
+ }
18
+ export interface CallOptions {
19
+ headers?: Headers;
20
+ qp?: QueryParams;
21
+ encoding: 'application/json';
22
+ }
23
+ export interface Response {
24
+ success: boolean;
25
+ headers: Headers;
26
+ data: OutputSchema;
27
+ }
28
+ export declare class InvalidBlobError extends XRPCError {
29
+ constructor(src: XRPCError);
30
+ }
31
+ export declare class BlobTooLargeError extends XRPCError {
32
+ constructor(src: XRPCError);
33
+ }
34
+ export declare class InvalidMimeTypeError extends XRPCError {
35
+ constructor(src: XRPCError);
36
+ }
37
+ export declare class InvalidImageDimensionsError extends XRPCError {
38
+ constructor(src: XRPCError);
39
+ }
40
+ export declare function toKnownErr(e: any): any;
@@ -0,0 +1,28 @@
1
+ import { ValidationResult } from '@atproto/lexicon';
2
+ import * as AppBskyFeedPost from './post';
3
+ import * as AppBskyActorRef from '../actor/ref';
4
+ export interface Main {
5
+ post: AppBskyFeedPost.View;
6
+ reply?: ReplyRef;
7
+ reason?: ReasonRepost | {
8
+ $type: string;
9
+ [k: string]: unknown;
10
+ };
11
+ [k: string]: unknown;
12
+ }
13
+ export declare function isMain(v: unknown): v is Main;
14
+ export declare function validateMain(v: unknown): ValidationResult;
15
+ export interface ReplyRef {
16
+ root: AppBskyFeedPost.View;
17
+ parent: AppBskyFeedPost.View;
18
+ [k: string]: unknown;
19
+ }
20
+ export declare function isReplyRef(v: unknown): v is ReplyRef;
21
+ export declare function validateReplyRef(v: unknown): ValidationResult;
22
+ export interface ReasonRepost {
23
+ by: AppBskyActorRef.WithInfo;
24
+ indexedAt: string;
25
+ [k: string]: unknown;
26
+ }
27
+ export declare function isReasonRepost(v: unknown): v is ReasonRepost;
28
+ export declare function validateReasonRepost(v: unknown): ValidationResult;
@@ -0,0 +1,28 @@
1
+ import { Headers, XRPCError } from '@atproto/xrpc';
2
+ import * as AppBskyFeedDefs from './defs';
3
+ export interface QueryParams {
4
+ actor: string;
5
+ limit?: number;
6
+ cursor?: string;
7
+ }
8
+ export declare type InputSchema = undefined;
9
+ export interface OutputSchema {
10
+ cursor?: string;
11
+ feed: AppBskyFeedDefs.FeedViewPost[];
12
+ [k: string]: unknown;
13
+ }
14
+ export interface CallOptions {
15
+ headers?: Headers;
16
+ }
17
+ export interface Response {
18
+ success: boolean;
19
+ headers: Headers;
20
+ data: OutputSchema;
21
+ }
22
+ export declare class BlockedActorError extends XRPCError {
23
+ constructor(src: XRPCError);
24
+ }
25
+ export declare class BlockedByActorError extends XRPCError {
26
+ constructor(src: XRPCError);
27
+ }
28
+ export declare function toKnownErr(e: any): any;
@@ -0,0 +1,21 @@
1
+ import { Headers } from '@atproto/xrpc';
2
+ import * as AppBskyFeedDefs from './defs';
3
+ export interface QueryParams {
4
+ limit?: number;
5
+ cursor?: string;
6
+ }
7
+ export declare type InputSchema = undefined;
8
+ export interface OutputSchema {
9
+ cursor?: string;
10
+ feeds: AppBskyFeedDefs.GeneratorView[];
11
+ [k: string]: unknown;
12
+ }
13
+ export interface CallOptions {
14
+ headers?: Headers;
15
+ }
16
+ export interface Response {
17
+ success: boolean;
18
+ headers: Headers;
19
+ data: OutputSchema;
20
+ }
21
+ export declare function toKnownErr(e: any): any;
@@ -0,0 +1,36 @@
1
+ import { Headers } from '@atproto/xrpc';
2
+ import { ValidationResult } from '@atproto/lexicon';
3
+ import * as AppBskyActorRef from '../actor/ref';
4
+ export interface QueryParams {
5
+ uri: string;
6
+ cid?: string;
7
+ direction?: 'up' | 'down';
8
+ limit?: number;
9
+ before?: string;
10
+ }
11
+ export declare type InputSchema = undefined;
12
+ export interface OutputSchema {
13
+ uri: string;
14
+ cid?: string;
15
+ cursor?: string;
16
+ votes: Vote[];
17
+ [k: string]: unknown;
18
+ }
19
+ export interface CallOptions {
20
+ headers?: Headers;
21
+ }
22
+ export interface Response {
23
+ success: boolean;
24
+ headers: Headers;
25
+ data: OutputSchema;
26
+ }
27
+ export declare function toKnownErr(e: any): any;
28
+ export interface Vote {
29
+ direction: 'up' | 'down';
30
+ indexedAt: string;
31
+ createdAt: string;
32
+ actor: AppBskyActorRef.WithInfo;
33
+ [k: string]: unknown;
34
+ }
35
+ export declare function isVote(v: unknown): v is Vote;
36
+ export declare function validateVote(v: unknown): ValidationResult;
@@ -0,0 +1,17 @@
1
+ import { Headers } from '@atproto/xrpc';
2
+ export interface QueryParams {
3
+ }
4
+ export interface InputSchema {
5
+ feed: string;
6
+ [k: string]: unknown;
7
+ }
8
+ export interface CallOptions {
9
+ headers?: Headers;
10
+ qp?: QueryParams;
11
+ encoding: 'application/json';
12
+ }
13
+ export interface Response {
14
+ success: boolean;
15
+ headers: Headers;
16
+ }
17
+ export declare function toKnownErr(e: any): any;
@@ -0,0 +1,25 @@
1
+ import { Headers } from '@atproto/xrpc';
2
+ import * as ComAtprotoRepoStrongRef from '../../../com/atproto/repo/strongRef';
3
+ export interface QueryParams {
4
+ }
5
+ export interface InputSchema {
6
+ subject: ComAtprotoRepoStrongRef.Main;
7
+ direction: 'up' | 'down' | 'none';
8
+ [k: string]: unknown;
9
+ }
10
+ export interface OutputSchema {
11
+ upvote?: string;
12
+ downvote?: string;
13
+ [k: string]: unknown;
14
+ }
15
+ export interface CallOptions {
16
+ headers?: Headers;
17
+ qp?: QueryParams;
18
+ encoding: 'application/json';
19
+ }
20
+ export interface Response {
21
+ success: boolean;
22
+ headers: Headers;
23
+ data: OutputSchema;
24
+ }
25
+ export declare function toKnownErr(e: any): any;
@@ -0,0 +1,9 @@
1
+ import { ValidationResult } from '@atproto/lexicon';
2
+ import * as ComAtprotoRepoStrongRef from '../../../com/atproto/repo/strongRef';
3
+ export interface Record {
4
+ subject: ComAtprotoRepoStrongRef.Main;
5
+ createdAt: string;
6
+ [k: string]: unknown;
7
+ }
8
+ export declare function isRecord(v: unknown): v is Record;
9
+ export declare function validateRecord(v: unknown): ValidationResult;
@@ -0,0 +1,17 @@
1
+ import { Headers } from '@atproto/xrpc';
2
+ export interface QueryParams {
3
+ }
4
+ export interface InputSchema {
5
+ feed: string;
6
+ [k: string]: unknown;
7
+ }
8
+ export interface CallOptions {
9
+ headers?: Headers;
10
+ qp?: QueryParams;
11
+ encoding: 'application/json';
12
+ }
13
+ export interface Response {
14
+ success: boolean;
15
+ headers: Headers;
16
+ }
17
+ export declare function toKnownErr(e: any): any;
@@ -0,0 +1,10 @@
1
+ import { ValidationResult } from '@atproto/lexicon';
2
+ import * as ComAtprotoRepoStrongRef from '../../../com/atproto/repo/strongRef';
3
+ export interface Record {
4
+ subject: ComAtprotoRepoStrongRef.Main;
5
+ direction: 'up' | 'down';
6
+ createdAt: string;
7
+ [k: string]: unknown;
8
+ }
9
+ export declare function isRecord(v: unknown): v is Record;
10
+ export declare function validateRecord(v: unknown): ValidationResult;
@@ -0,0 +1 @@
1
+ export declare const MAIN = "app.bsky.graph.assertCreator#main";
@@ -0,0 +1 @@
1
+ export declare const MAIN = "app.bsky.graph.assertMember#main";
@@ -0,0 +1,10 @@
1
+ import { ValidationResult } from '@atproto/lexicon';
2
+ import * as AppBskyActorRef from '../actor/ref';
3
+ export interface Record {
4
+ assertion: string;
5
+ subject: AppBskyActorRef.Main;
6
+ createdAt: string;
7
+ [k: string]: unknown;
8
+ }
9
+ export declare function isRecord(v: unknown): v is Record;
10
+ export declare function validateRecord(v: unknown): ValidationResult;
@@ -0,0 +1,11 @@
1
+ import { ValidationResult } from '@atproto/lexicon';
2
+ import * as AppBskyActorRef from '../actor/ref';
3
+ import * as ComAtprotoRepoStrongRef from '../../../com/atproto/repo/strongRef';
4
+ export interface Record {
5
+ originator: AppBskyActorRef.Main;
6
+ assertion: ComAtprotoRepoStrongRef.Main;
7
+ createdAt: string;
8
+ [k: string]: unknown;
9
+ }
10
+ export declare function isRecord(v: unknown): v is Record;
11
+ export declare function validateRecord(v: unknown): ValidationResult;
@@ -0,0 +1,48 @@
1
+ import { Headers } from '@atproto/xrpc';
2
+ import { ValidationResult } from '@atproto/lexicon';
3
+ import * as AppBskyActorRef from '../actor/ref';
4
+ export interface QueryParams {
5
+ author?: string;
6
+ subject?: string;
7
+ assertion?: string;
8
+ confirmed?: boolean;
9
+ limit?: number;
10
+ before?: string;
11
+ }
12
+ export declare type InputSchema = undefined;
13
+ export interface OutputSchema {
14
+ cursor?: string;
15
+ assertions: Assertion[];
16
+ [k: string]: unknown;
17
+ }
18
+ export interface CallOptions {
19
+ headers?: Headers;
20
+ }
21
+ export interface Response {
22
+ success: boolean;
23
+ headers: Headers;
24
+ data: OutputSchema;
25
+ }
26
+ export declare function toKnownErr(e: any): any;
27
+ export interface Assertion {
28
+ uri: string;
29
+ cid: string;
30
+ assertion: string;
31
+ confirmation?: Confirmation;
32
+ author: AppBskyActorRef.WithInfo;
33
+ subject: AppBskyActorRef.WithInfo;
34
+ indexedAt: string;
35
+ createdAt: string;
36
+ [k: string]: unknown;
37
+ }
38
+ export declare function isAssertion(v: unknown): v is Assertion;
39
+ export declare function validateAssertion(v: unknown): ValidationResult;
40
+ export interface Confirmation {
41
+ uri: string;
42
+ cid: string;
43
+ indexedAt: string;
44
+ createdAt: string;
45
+ [k: string]: unknown;
46
+ }
47
+ export declare function isConfirmation(v: unknown): v is Confirmation;
48
+ export declare function validateConfirmation(v: unknown): ValidationResult;
@@ -0,0 +1,21 @@
1
+ import { Headers } from '@atproto/xrpc';
2
+ import * as AppBskyGraphDefs from './defs';
3
+ export interface QueryParams {
4
+ limit?: number;
5
+ cursor?: string;
6
+ }
7
+ export declare type InputSchema = undefined;
8
+ export interface OutputSchema {
9
+ cursor?: string;
10
+ lists: AppBskyGraphDefs.ListView[];
11
+ [k: string]: unknown;
12
+ }
13
+ export interface CallOptions {
14
+ headers?: Headers;
15
+ }
16
+ export interface Response {
17
+ success: boolean;
18
+ headers: Headers;
19
+ data: OutputSchema;
20
+ }
21
+ export declare function toKnownErr(e: any): any;
@@ -0,0 +1,36 @@
1
+ import { Headers } from '@atproto/xrpc';
2
+ import { ValidationResult } from '@atproto/lexicon';
3
+ import * as AppBskyActorRef from '../actor/ref';
4
+ import * as AppBskySystemDeclRef from '../system/declRef';
5
+ export interface QueryParams {
6
+ actor: string;
7
+ limit?: number;
8
+ before?: string;
9
+ }
10
+ export declare type InputSchema = undefined;
11
+ export interface OutputSchema {
12
+ subject: AppBskyActorRef.WithInfo;
13
+ cursor?: string;
14
+ members: Member[];
15
+ [k: string]: unknown;
16
+ }
17
+ export interface CallOptions {
18
+ headers?: Headers;
19
+ }
20
+ export interface Response {
21
+ success: boolean;
22
+ headers: Headers;
23
+ data: OutputSchema;
24
+ }
25
+ export declare function toKnownErr(e: any): any;
26
+ export interface Member {
27
+ did: string;
28
+ declaration: AppBskySystemDeclRef.Main;
29
+ handle: string;
30
+ displayName?: string;
31
+ createdAt?: string;
32
+ indexedAt: string;
33
+ [k: string]: unknown;
34
+ }
35
+ export declare function isMember(v: unknown): v is Member;
36
+ export declare function validateMember(v: unknown): ValidationResult;
@@ -0,0 +1,36 @@
1
+ import { Headers } from '@atproto/xrpc';
2
+ import { ValidationResult } from '@atproto/lexicon';
3
+ import * as AppBskyActorRef from '../actor/ref';
4
+ import * as AppBskySystemDeclRef from '../system/declRef';
5
+ export interface QueryParams {
6
+ actor: string;
7
+ limit?: number;
8
+ before?: string;
9
+ }
10
+ export declare type InputSchema = undefined;
11
+ export interface OutputSchema {
12
+ subject: AppBskyActorRef.WithInfo;
13
+ cursor?: string;
14
+ memberships: Membership[];
15
+ [k: string]: unknown;
16
+ }
17
+ export interface CallOptions {
18
+ headers?: Headers;
19
+ }
20
+ export interface Response {
21
+ success: boolean;
22
+ headers: Headers;
23
+ data: OutputSchema;
24
+ }
25
+ export declare function toKnownErr(e: any): any;
26
+ export interface Membership {
27
+ did: string;
28
+ declaration: AppBskySystemDeclRef.Main;
29
+ handle: string;
30
+ displayName?: string;
31
+ createdAt?: string;
32
+ indexedAt: string;
33
+ [k: string]: unknown;
34
+ }
35
+ export declare function isMembership(v: unknown): v is Membership;
36
+ export declare function validateMembership(v: unknown): ValidationResult;
@@ -0,0 +1,8 @@
1
+ import { ValidationResult } from '@atproto/lexicon';
2
+ export interface Record {
3
+ subject: string;
4
+ createdAt: string;
5
+ [k: string]: unknown;
6
+ }
7
+ export declare function isRecord(v: unknown): v is Record;
8
+ export declare function validateRecord(v: unknown): ValidationResult;
@@ -0,0 +1,17 @@
1
+ import { Headers } from '@atproto/xrpc';
2
+ export interface QueryParams {
3
+ }
4
+ export interface InputSchema {
5
+ user: string;
6
+ [k: string]: unknown;
7
+ }
8
+ export interface CallOptions {
9
+ headers?: Headers;
10
+ qp?: QueryParams;
11
+ encoding: 'application/json';
12
+ }
13
+ export interface Response {
14
+ success: boolean;
15
+ headers: Headers;
16
+ }
17
+ export declare function toKnownErr(e: any): any;
@@ -0,0 +1,17 @@
1
+ import { Headers } from '@atproto/xrpc';
2
+ export interface QueryParams {
3
+ }
4
+ export interface InputSchema {
5
+ list: string;
6
+ [k: string]: unknown;
7
+ }
8
+ export interface CallOptions {
9
+ headers?: Headers;
10
+ qp?: QueryParams;
11
+ encoding: 'application/json';
12
+ }
13
+ export interface Response {
14
+ success: boolean;
15
+ headers: Headers;
16
+ }
17
+ export declare function toKnownErr(e: any): any;