@atproto/bsky 0.0.6 → 0.0.7

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.
package/package.json CHANGED
@@ -1,10 +1,16 @@
1
1
  {
2
2
  "name": "@atproto/bsky",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "license": "MIT",
5
+ "description": "Reference implementation of app.bsky App View (Bluesky API)",
6
+ "keywords": [
7
+ "atproto",
8
+ "bluesky"
9
+ ],
10
+ "homepage": "https://atproto.com",
5
11
  "repository": {
6
12
  "type": "git",
7
- "url": "https://github.com/bluesky-social/atproto.git",
13
+ "url": "https://github.com/bluesky-social/atproto",
8
14
  "directory": "packages/bsky"
9
15
  },
10
16
  "main": "dist/index.js",
@@ -31,7 +37,7 @@
31
37
  "sharp": "^0.31.2",
32
38
  "typed-emitter": "^2.1.0",
33
39
  "uint8arrays": "3.0.0",
34
- "@atproto/api": "^0.6.15",
40
+ "@atproto/api": "^0.6.16",
35
41
  "@atproto/common": "^0.3.0",
36
42
  "@atproto/crypto": "^0.2.2",
37
43
  "@atproto/syntax": "^0.1.1",
@@ -49,10 +55,10 @@
49
55
  "@types/qs": "^6.9.7",
50
56
  "@types/sharp": "^0.31.0",
51
57
  "axios": "^0.27.2",
52
- "@atproto/api": "^0.6.15",
53
- "@atproto/dev-env": "^0.2.6",
58
+ "@atproto/api": "^0.6.16",
59
+ "@atproto/dev-env": "^0.2.7",
54
60
  "@atproto/lex-cli": "^0.2.1",
55
- "@atproto/pds": "^0.1.15",
61
+ "@atproto/pds": "^0.1.16",
56
62
  "@atproto/xrpc": "^0.3.1"
57
63
  },
58
64
  "scripts": {
@@ -1,4 +1,3 @@
1
- import { AtUri } from '@atproto/syntax'
2
1
  import { AuthRequiredError, InvalidRequestError } from '@atproto/xrpc-server'
3
2
  import {
4
3
  ACKNOWLEDGE,
@@ -6838,7 +6838,8 @@ export const schemaDict = {
6838
6838
  defs: {
6839
6839
  main: {
6840
6840
  type: 'query',
6841
- description: 'An unspecced view of globally popular items',
6841
+ description:
6842
+ 'DEPRECATED: will be removed soon, please find a feed generator alternative',
6842
6843
  parameters: {
6843
6844
  type: 'params',
6844
6845
  properties: {
@@ -9,7 +9,6 @@ import { InputSchema as CreateReportInput } from '@atproto/api/src/client/types/
9
9
  import { Record as PostRecord } from '@atproto/api/src/client/types/app/bsky/feed/post'
10
10
  import { Record as LikeRecord } from '@atproto/api/src/client/types/app/bsky/feed/like'
11
11
  import { Record as FollowRecord } from '@atproto/api/src/client/types/app/bsky/graph/follow'
12
- import { Record as ListRecord } from '@atproto/api/src/client/types/app/bsky/graph/list'
13
12
 
14
13
  // Makes it simple to create data via the XRPC client,
15
14
  // and keeps track of all created data in memory for convenience.
@@ -2,10 +2,6 @@ import AtpAgent, { AtUri } from '@atproto/api'
2
2
  import { TestNetwork } from '@atproto/dev-env'
3
3
  import { SeedClient } from '../seeds/client'
4
4
  import basicSeed from '../seeds/basic'
5
- import {
6
- BlockedByActorError,
7
- BlockedActorError,
8
- } from '@atproto/api/src/client/types/app/bsky/feed/getActorLikes'
9
5
 
10
6
  describe('bsky actor likes feed views', () => {
11
7
  let network: TestNetwork
@@ -17,7 +13,6 @@ describe('bsky actor likes feed views', () => {
17
13
  let alice: string
18
14
  let bob: string
19
15
  let carol: string
20
- let dan: string
21
16
 
22
17
  beforeAll(async () => {
23
18
  network = await TestNetwork.create({
@@ -31,7 +26,6 @@ describe('bsky actor likes feed views', () => {
31
26
  alice = sc.dids.alice
32
27
  bob = sc.dids.bob
33
28
  carol = sc.dids.carol
34
- dan = sc.dids.dan
35
29
  })
36
30
 
37
31
  afterAll(async () => {