@atproto/api 0.20.35 → 0.20.37

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 (56) hide show
  1. package/CHANGELOG.md +27 -2
  2. package/dist/agent.d.ts +4 -1
  3. package/dist/agent.d.ts.map +1 -1
  4. package/dist/agent.js +6 -2
  5. package/dist/agent.js.map +1 -1
  6. package/dist/atp-agent.d.ts.map +1 -1
  7. package/dist/atp-agent.js.map +1 -1
  8. package/dist/client/lexicons.d.ts +60 -8
  9. package/dist/client/lexicons.d.ts.map +1 -1
  10. package/dist/client/lexicons.js +30 -4
  11. package/dist/client/lexicons.js.map +1 -1
  12. package/dist/client/types/app/bsky/actor/defs.d.ts +5 -0
  13. package/dist/client/types/app/bsky/actor/defs.d.ts.map +1 -1
  14. package/dist/client/types/app/bsky/actor/defs.js.map +1 -1
  15. package/dist/client/types/app/bsky/ageassurance/defs.d.ts.map +1 -1
  16. package/dist/client/types/app/bsky/ageassurance/defs.js.map +1 -1
  17. package/dist/client/types/app/bsky/draft/defs.d.ts.map +1 -1
  18. package/dist/client/types/app/bsky/draft/defs.js.map +1 -1
  19. package/dist/client/types/app/bsky/feed/defs.d.ts.map +1 -1
  20. package/dist/client/types/app/bsky/feed/defs.js.map +1 -1
  21. package/dist/client/types/app/bsky/graph/muteActor.d.ts +4 -0
  22. package/dist/client/types/app/bsky/graph/muteActor.d.ts.map +1 -1
  23. package/dist/client/types/app/bsky/graph/muteActor.js.map +1 -1
  24. package/dist/client/types/app/bsky/unspecced/defs.d.ts +5 -1
  25. package/dist/client/types/app/bsky/unspecced/defs.d.ts.map +1 -1
  26. package/dist/client/types/app/bsky/unspecced/defs.js.map +1 -1
  27. package/dist/client/types/chat/bsky/convo/defs.d.ts.map +1 -1
  28. package/dist/client/types/chat/bsky/convo/defs.js.map +1 -1
  29. package/dist/client/types/chat/bsky/group/createGroup.d.ts +1 -0
  30. package/dist/client/types/chat/bsky/group/createGroup.d.ts.map +1 -1
  31. package/dist/client/types/chat/bsky/group/createGroup.js.map +1 -1
  32. package/dist/client/types/com/atproto/repo/applyWrites.d.ts.map +1 -1
  33. package/dist/client/types/com/atproto/repo/applyWrites.js.map +1 -1
  34. package/dist/client/types/com/atproto/sync/defs.d.ts.map +1 -1
  35. package/dist/client/types/com/atproto/sync/defs.js.map +1 -1
  36. package/dist/client/types/com/atproto/temp/checkHandleAvailability.d.ts.map +1 -1
  37. package/dist/client/types/com/atproto/temp/checkHandleAvailability.js.map +1 -1
  38. package/dist/client/types/tools/ozone/moderation/defs.d.ts.map +1 -1
  39. package/dist/client/types/tools/ozone/moderation/defs.js.map +1 -1
  40. package/dist/client/types/tools/ozone/moderation/queryEvents.d.ts.map +1 -1
  41. package/dist/client/types/tools/ozone/moderation/queryEvents.js.map +1 -1
  42. package/dist/client/types/tools/ozone/moderation/queryStatuses.d.ts.map +1 -1
  43. package/dist/client/types/tools/ozone/moderation/queryStatuses.js.map +1 -1
  44. package/dist/client/types/tools/ozone/queue/createQueue.d.ts.map +1 -1
  45. package/dist/client/types/tools/ozone/queue/createQueue.js.map +1 -1
  46. package/dist/client/types/tools/ozone/queue/defs.d.ts.map +1 -1
  47. package/dist/client/types/tools/ozone/queue/defs.js.map +1 -1
  48. package/dist/client/types/tools/ozone/report/defs.d.ts.map +1 -1
  49. package/dist/client/types/tools/ozone/report/defs.js.map +1 -1
  50. package/dist/client/types/tools/ozone/report/queryReports.d.ts.map +1 -1
  51. package/dist/client/types/tools/ozone/report/queryReports.js.map +1 -1
  52. package/dist/moderation/types.d.ts.map +1 -1
  53. package/dist/moderation/types.js.map +1 -1
  54. package/dist/types.d.ts.map +1 -1
  55. package/dist/types.js.map +1 -1
  56. package/package.json +7 -7
@@ -295,6 +295,15 @@ export const schemaDict = {
295
295
  properties: {
296
296
  muted: {
297
297
  type: 'boolean',
298
+ description: 'Whether the account is fully muted, directly or via a mutelist. False when the mute is scoped to specific kinds; see mutedOnlyReposts and mutedOnlyQuoteposts.',
299
+ },
300
+ mutedOnlyReposts: {
301
+ type: 'boolean',
302
+ description: "Whether the account's reposts are muted. Scoped mutes are exclusive with muted: this can be true while muted is false. If muted is true, this will be false.",
303
+ },
304
+ mutedOnlyQuoteposts: {
305
+ type: 'boolean',
306
+ description: "Whether the account's quote posts are muted. Scoped mutes are exclusive with muted: this can be true while muted is false. If muted is true, this will be false.",
298
307
  },
299
308
  mutedByList: {
300
309
  type: 'ref',
@@ -6331,7 +6340,7 @@ export const schemaDict = {
6331
6340
  defs: {
6332
6341
  main: {
6333
6342
  type: 'query',
6334
- description: 'Enumerates accounts that the requesting account (actor) currently has muted. Requires auth.',
6343
+ description: 'Enumerates accounts that the requesting account (actor) currently has fully muted. Mutes scoped to specific kinds of content (only reposts, only quote posts) are not included. Responses may contain more items than the requested limit. Requires auth.',
6335
6344
  parameters: {
6336
6345
  type: 'params',
6337
6346
  properties: {
@@ -6730,7 +6739,7 @@ export const schemaDict = {
6730
6739
  defs: {
6731
6740
  main: {
6732
6741
  type: 'procedure',
6733
- description: 'Creates a mute relationship for the specified account. Mutes are private in Bluesky. Requires auth.',
6742
+ description: 'Creates a mute relationship for the specified account. If a mute already exists for the account, it is updated in place: the stored scope is replaced with the scope in this request. Mutes are private in Bluesky. Requires auth.',
6734
6743
  input: {
6735
6744
  encoding: 'application/json',
6736
6745
  schema: {
@@ -6741,6 +6750,14 @@ export const schemaDict = {
6741
6750
  type: 'string',
6742
6751
  format: 'at-identifier',
6743
6752
  },
6753
+ onlyReposts: {
6754
+ type: 'boolean',
6755
+ description: "Restrict the mute to the account's reposts. When any 'only' scope is set, just the scoped content is muted; when none are set, the account is fully muted. Repeat calls replace the stored scope rather than adding to it.",
6756
+ },
6757
+ onlyQuoteposts: {
6758
+ type: 'boolean',
6759
+ description: "Restrict the mute to the account's quote posts. See onlyReposts.",
6760
+ },
6744
6761
  },
6745
6762
  },
6746
6763
  },
@@ -8202,7 +8219,15 @@ export const schemaDict = {
8202
8219
  },
8203
8220
  opThread: {
8204
8221
  type: 'boolean',
8205
- description: 'This post is part of a contiguous thread by the OP from the thread root. Many different OP threads can happen in the same thread.',
8222
+ description: 'This post is part of a contiguous thread by the OP from the thread root. Sub-threads by OP deeper in the tree are not considered an OP thread.',
8223
+ },
8224
+ opThreadPostIndex: {
8225
+ type: 'integer',
8226
+ description: 'The 1-indexed position of this post within the contiguous OP thread. Only present when this post is part of the OP thread (see `opThread`).',
8227
+ },
8228
+ opThreadPostCount: {
8229
+ type: 'integer',
8230
+ description: 'The total number of posts in the contiguous OP thread that this post belongs to. Only present when this post is part of the OP thread (see `opThread`).',
8206
8231
  },
8207
8232
  hiddenByThreadgate: {
8208
8233
  type: 'boolean',
@@ -12523,7 +12548,8 @@ export const schemaDict = {
12523
12548
  properties: {
12524
12549
  members: {
12525
12550
  type: 'array',
12526
- maxLength: 49,
12551
+ description: "The members to add to the group. The owner is automatically added. Implementations may enforce a lower maximum than the 10,000-item schema limit; Bluesky currently supports up to 100 total members. If the owner is included in this list, the list may contain up to the implementation's total member limit. Otherwise, it may contain one fewer.",
12552
+ maxLength: 10000,
12527
12553
  items: {
12528
12554
  type: 'string',
12529
12555
  format: 'did',