@atproto/dev-env 0.3.83 → 0.3.85

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/CHANGELOG.md +32 -0
  2. package/dist/bsky.d.ts +1 -1
  3. package/dist/bsky.d.ts.map +1 -1
  4. package/dist/bsky.js +2 -2
  5. package/dist/bsky.js.map +1 -1
  6. package/dist/feed-gen.d.ts +1 -1
  7. package/dist/feed-gen.d.ts.map +1 -1
  8. package/dist/feed-gen.js +5 -5
  9. package/dist/feed-gen.js.map +1 -1
  10. package/dist/introspect.d.ts +2 -2
  11. package/dist/introspect.d.ts.map +1 -1
  12. package/dist/introspect.js.map +1 -1
  13. package/dist/mock/index.js +2 -2
  14. package/dist/mock/index.js.map +1 -1
  15. package/dist/moderator-client.d.ts +1 -1
  16. package/dist/moderator-client.d.ts.map +1 -1
  17. package/dist/network-no-appview.d.ts +3 -3
  18. package/dist/network-no-appview.d.ts.map +1 -1
  19. package/dist/network-no-appview.js +3 -3
  20. package/dist/network-no-appview.js.map +1 -1
  21. package/dist/network.d.ts +5 -5
  22. package/dist/network.d.ts.map +1 -1
  23. package/dist/network.js +9 -9
  24. package/dist/network.js.map +1 -1
  25. package/dist/ozone-service-profile.d.ts +1 -1
  26. package/dist/ozone-service-profile.d.ts.map +1 -1
  27. package/dist/ozone-service-profile.js.map +1 -1
  28. package/dist/ozone.d.ts +2 -2
  29. package/dist/ozone.d.ts.map +1 -1
  30. package/dist/ozone.js +4 -4
  31. package/dist/ozone.js.map +1 -1
  32. package/dist/pds.d.ts +1 -1
  33. package/dist/pds.d.ts.map +1 -1
  34. package/dist/pds.js +4 -4
  35. package/dist/pds.js.map +1 -1
  36. package/dist/plc.d.ts.map +1 -1
  37. package/dist/plc.js +1 -1
  38. package/dist/plc.js.map +1 -1
  39. package/dist/seed/author-feed.d.ts.map +1 -1
  40. package/dist/seed/author-feed.js.map +1 -1
  41. package/dist/seed/basic.js +2 -2
  42. package/dist/seed/basic.js.map +1 -1
  43. package/dist/seed/client.d.ts +2 -2
  44. package/dist/seed/client.d.ts.map +1 -1
  45. package/dist/seed/client.js +1 -1
  46. package/dist/seed/client.js.map +1 -1
  47. package/dist/seed/likes.d.ts.map +1 -1
  48. package/dist/seed/likes.js.map +1 -1
  49. package/dist/seed/quotes.d.ts.map +1 -1
  50. package/dist/seed/quotes.js +5 -2
  51. package/dist/seed/quotes.js.map +1 -1
  52. package/dist/seed/reposts.d.ts.map +1 -1
  53. package/dist/seed/reposts.js.map +1 -1
  54. package/dist/types.d.ts +2 -2
  55. package/dist/types.d.ts.map +1 -1
  56. package/dist/util.d.ts +1 -1
  57. package/dist/util.d.ts.map +1 -1
  58. package/dist/util.js +1 -1
  59. package/dist/util.js.map +1 -1
  60. package/package.json +16 -13
  61. package/src/bsky.ts +3 -3
  62. package/src/feed-gen.ts +5 -5
  63. package/src/introspect.ts +3 -3
  64. package/src/mock/index.ts +3 -3
  65. package/src/moderator-client.ts +2 -2
  66. package/src/network-no-appview.ts +4 -4
  67. package/src/network.ts +8 -8
  68. package/src/ozone-service-profile.ts +1 -1
  69. package/src/ozone.ts +5 -5
  70. package/src/pds.ts +5 -5
  71. package/src/plc.ts +1 -1
  72. package/src/seed/author-feed.ts +1 -1
  73. package/src/seed/basic.ts +2 -2
  74. package/src/seed/client.ts +5 -6
  75. package/src/seed/likes.ts +1 -1
  76. package/src/seed/quotes.ts +1 -1
  77. package/src/seed/reposts.ts +1 -1
  78. package/src/types.ts +2 -2
  79. package/src/util.ts +3 -3
package/src/seed/basic.ts CHANGED
@@ -1,9 +1,9 @@
1
- import usersSeed from './users'
2
1
  import { TestBsky } from '../bsky'
2
+ import { EXAMPLE_LABELER } from '../const'
3
3
  import { TestNetwork } from '../network'
4
4
  import { TestNetworkNoAppView } from '../network-no-appview'
5
5
  import { SeedClient } from './client'
6
- import { EXAMPLE_LABELER } from '../const'
6
+ import usersSeed from './users'
7
7
 
8
8
  export default async (
9
9
  sc: SeedClient<TestNetwork | TestNetworkNoAppView>,
@@ -1,18 +1,17 @@
1
- import fs from 'fs/promises'
1
+ import fs from 'node:fs/promises'
2
2
  import path from 'node:path'
3
-
4
3
  import { CID } from 'multiformats/cid'
5
4
  import {
6
- ComAtprotoModerationCreateReport,
7
- AppBskyFeedPost,
8
- AppBskyRichtextFacet,
9
5
  AppBskyFeedLike,
6
+ AppBskyFeedPost,
10
7
  AppBskyGraphFollow,
11
8
  AppBskyGraphList,
9
+ AppBskyRichtextFacet,
12
10
  AtpAgent,
11
+ ComAtprotoModerationCreateReport,
13
12
  } from '@atproto/api'
14
- import { AtUri } from '@atproto/syntax'
15
13
  import { BlobRef } from '@atproto/lexicon'
14
+ import { AtUri } from '@atproto/syntax'
16
15
  import { TestNetworkNoAppView } from '../network-no-appview'
17
16
 
18
17
  // Makes it simple to create data via the XRPC client,
package/src/seed/likes.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { SeedClient } from './client'
2
1
  import basicSeed from './basic'
2
+ import { SeedClient } from './client'
3
3
 
4
4
  export default async (sc: SeedClient) => {
5
5
  await basicSeed(sc)
@@ -1,5 +1,5 @@
1
+ import { default as basicSeed } from './basic'
1
2
  import { SeedClient } from './client'
2
- import { basicSeed } from './index'
3
3
 
4
4
  export default async (sc: SeedClient) => {
5
5
  await basicSeed(sc)
@@ -1,5 +1,5 @@
1
- import { SeedClient } from './client'
2
1
  import basicSeed from './basic'
2
+ import { SeedClient } from './client'
3
3
 
4
4
  export default async (sc: SeedClient) => {
5
5
  await basicSeed(sc)
package/src/types.ts CHANGED
@@ -1,8 +1,8 @@
1
- import * as pds from '@atproto/pds'
2
1
  import * as bsky from '@atproto/bsky'
3
2
  import * as bsync from '@atproto/bsync'
4
- import * as ozone from '@atproto/ozone'
5
3
  import { ExportableKeypair, Keypair } from '@atproto/crypto'
4
+ import * as ozone from '@atproto/ozone'
5
+ import * as pds from '@atproto/pds'
6
6
 
7
7
  export type IntrospectConfig = {
8
8
  port?: number
package/src/util.ts CHANGED
@@ -1,9 +1,9 @@
1
- import { request } from 'undici'
2
1
  import * as plc from '@did-plc/lib'
3
- import { IdResolver } from '@atproto/identity'
2
+ import { request } from 'undici'
4
3
  import { Secp256k1Keypair } from '@atproto/crypto'
5
- import { TestPds } from './pds'
4
+ import { IdResolver } from '@atproto/identity'
6
5
  import { TestBsky } from './bsky'
6
+ import { TestPds } from './pds'
7
7
  import { DidAndKey } from './types'
8
8
 
9
9
  export const mockNetworkUtilities = (pds: TestPds, bsky?: TestBsky) => {