@atproto/pds 0.4.85 → 0.4.87

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 (32) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/lexicon/index.d.ts +2 -0
  3. package/dist/lexicon/index.d.ts.map +1 -1
  4. package/dist/lexicon/index.js +2 -0
  5. package/dist/lexicon/index.js.map +1 -1
  6. package/dist/lexicon/lexicons.d.ts +230 -2
  7. package/dist/lexicon/lexicons.d.ts.map +1 -1
  8. package/dist/lexicon/lexicons.js +126 -1
  9. package/dist/lexicon/lexicons.js.map +1 -1
  10. package/dist/lexicon/types/app/bsky/feed/defs.d.ts +5 -0
  11. package/dist/lexicon/types/app/bsky/feed/defs.d.ts.map +1 -1
  12. package/dist/lexicon/types/app/bsky/feed/defs.js +5 -1
  13. package/dist/lexicon/types/app/bsky/feed/defs.js.map +1 -1
  14. package/dist/lexicon/types/app/bsky/feed/generator.d.ts +1 -0
  15. package/dist/lexicon/types/app/bsky/feed/generator.d.ts.map +1 -1
  16. package/dist/lexicon/types/app/bsky/feed/generator.js.map +1 -1
  17. package/dist/lexicon/types/tools/ozone/moderation/defs.d.ts +40 -0
  18. package/dist/lexicon/types/tools/ozone/moderation/defs.d.ts.map +1 -1
  19. package/dist/lexicon/types/tools/ozone/moderation/defs.js +20 -0
  20. package/dist/lexicon/types/tools/ozone/moderation/defs.js.map +1 -1
  21. package/dist/lexicon/types/tools/ozone/moderation/queryStatuses.d.ts +7 -1
  22. package/dist/lexicon/types/tools/ozone/moderation/queryStatuses.d.ts.map +1 -1
  23. package/package.json +6 -6
  24. package/src/lexicon/index.ts +2 -0
  25. package/src/lexicon/lexicons.ts +138 -1
  26. package/src/lexicon/types/app/bsky/feed/defs.ts +9 -0
  27. package/src/lexicon/types/app/bsky/feed/generator.ts +4 -0
  28. package/src/lexicon/types/tools/ozone/moderation/defs.ts +62 -0
  29. package/src/lexicon/types/tools/ozone/moderation/queryStatuses.ts +11 -1
  30. package/tests/__snapshots__/takedown-appeal.test.ts.snap +6 -0
  31. package/tests/proxied/__snapshots__/admin.test.ts.snap +57 -0
  32. package/tests/proxied/admin.test.ts +3 -0
@@ -4694,6 +4694,10 @@ exports.schemaDict = {
4694
4694
  ref: 'lex:app.bsky.actor.defs#profileView',
4695
4695
  },
4696
4696
  },
4697
+ recId: {
4698
+ type: 'integer',
4699
+ description: 'Snowflake for this recommendation, use when submitting recommendation events.',
4700
+ },
4697
4701
  },
4698
4702
  },
4699
4703
  },
@@ -5598,6 +5602,13 @@ exports.schemaDict = {
5598
5602
  type: 'ref',
5599
5603
  ref: 'lex:app.bsky.feed.defs#generatorViewerState',
5600
5604
  },
5605
+ contentMode: {
5606
+ type: 'string',
5607
+ knownValues: [
5608
+ 'app.bsky.feed.defs#contentModeUnspecified',
5609
+ 'app.bsky.feed.defs#contentModeVideo',
5610
+ ],
5611
+ },
5601
5612
  indexedAt: {
5602
5613
  type: 'string',
5603
5614
  format: 'datetime',
@@ -5727,6 +5738,14 @@ exports.schemaDict = {
5727
5738
  type: 'token',
5728
5739
  description: 'User clicked through to the embedded content of the feed item',
5729
5740
  },
5741
+ contentModeUnspecified: {
5742
+ type: 'token',
5743
+ description: 'Declares the feed generator returns any types of posts.',
5744
+ },
5745
+ contentModeVideo: {
5746
+ type: 'token',
5747
+ description: 'Declares the feed generator returns posts containing app.bsky.embed.video embeds.',
5748
+ },
5730
5749
  interactionSeen: {
5731
5750
  type: 'token',
5732
5751
  description: 'Feed item was seen by user',
@@ -5855,6 +5874,13 @@ exports.schemaDict = {
5855
5874
  description: 'Self-label values',
5856
5875
  refs: ['lex:com.atproto.label.defs#selfLabels'],
5857
5876
  },
5877
+ contentMode: {
5878
+ type: 'string',
5879
+ knownValues: [
5880
+ 'app.bsky.feed.defs#contentModeUnspecified',
5881
+ 'app.bsky.feed.defs#contentModeVideo',
5882
+ ],
5883
+ },
5858
5884
  createdAt: {
5859
5885
  type: 'string',
5860
5886
  format: 'datetime',
@@ -8107,6 +8133,10 @@ exports.schemaDict = {
8107
8133
  description: 'If true, response has fallen-back to generic results, and is not scoped using relativeToDid',
8108
8134
  default: false,
8109
8135
  },
8136
+ recId: {
8137
+ type: 'integer',
8138
+ description: 'Snowflake for this recommendation, use when submitting recommendation events.',
8139
+ },
8110
8140
  },
8111
8141
  },
8112
8142
  },
@@ -9150,6 +9180,10 @@ exports.schemaDict = {
9150
9180
  format: 'did',
9151
9181
  description: 'DID of the account these suggestions are relative to. If this is returned undefined, suggestions are based on the viewer.',
9152
9182
  },
9183
+ recId: {
9184
+ type: 'integer',
9185
+ description: 'Snowflake for this recommendation, use when submitting recommendation events.',
9186
+ },
9153
9187
  },
9154
9188
  },
9155
9189
  },
@@ -10971,6 +11005,80 @@ exports.schemaDict = {
10971
11005
  type: 'string',
10972
11006
  },
10973
11007
  },
11008
+ accountStats: {
11009
+ description: 'Statistics related to the account subject',
11010
+ type: 'ref',
11011
+ ref: 'lex:tools.ozone.moderation.defs#accountStats',
11012
+ },
11013
+ recordsStats: {
11014
+ description: "Statistics related to the record subjects authored by the subject's account",
11015
+ type: 'ref',
11016
+ ref: 'lex:tools.ozone.moderation.defs#recordsStats',
11017
+ },
11018
+ },
11019
+ },
11020
+ accountStats: {
11021
+ description: 'Statistics about a particular account subject',
11022
+ type: 'object',
11023
+ properties: {
11024
+ reportCount: {
11025
+ description: 'Total number of reports on the account',
11026
+ type: 'integer',
11027
+ },
11028
+ appealCount: {
11029
+ description: 'Total number of appeals against a moderation action on the account',
11030
+ type: 'integer',
11031
+ },
11032
+ suspendCount: {
11033
+ description: 'Number of times the account was suspended',
11034
+ type: 'integer',
11035
+ },
11036
+ escalateCount: {
11037
+ description: 'Number of times the account was escalated',
11038
+ type: 'integer',
11039
+ },
11040
+ takedownCount: {
11041
+ description: 'Number of times the account was taken down',
11042
+ type: 'integer',
11043
+ },
11044
+ },
11045
+ },
11046
+ recordsStats: {
11047
+ description: 'Statistics about a set of record subject items',
11048
+ type: 'object',
11049
+ properties: {
11050
+ totalReports: {
11051
+ description: 'Cumulative sum of the number of reports on the items in the set',
11052
+ type: 'integer',
11053
+ },
11054
+ reportedCount: {
11055
+ description: 'Number of items that were reported at least once',
11056
+ type: 'integer',
11057
+ },
11058
+ escalatedCount: {
11059
+ description: 'Number of items that were escalated at least once',
11060
+ type: 'integer',
11061
+ },
11062
+ appealedCount: {
11063
+ description: 'Number of items that were appealed at least once',
11064
+ type: 'integer',
11065
+ },
11066
+ subjectCount: {
11067
+ description: 'Total number of item in the set',
11068
+ type: 'integer',
11069
+ },
11070
+ pendingCount: {
11071
+ description: 'Number of item currently in "reviewOpen" or "reviewEscalated" state',
11072
+ type: 'integer',
11073
+ },
11074
+ processedCount: {
11075
+ description: 'Number of item currently in "reviewNone" or "reviewClosed" state',
11076
+ type: 'integer',
11077
+ },
11078
+ takendownCount: {
11079
+ description: 'Number of item currently taken down',
11080
+ type: 'integer',
11081
+ },
10974
11082
  },
10975
11083
  },
10976
11084
  subjectReviewState: {
@@ -12180,7 +12288,12 @@ exports.schemaDict = {
12180
12288
  sortField: {
12181
12289
  type: 'string',
12182
12290
  default: 'lastReportedAt',
12183
- enum: ['lastReviewedAt', 'lastReportedAt'],
12291
+ enum: [
12292
+ 'lastReviewedAt',
12293
+ 'lastReportedAt',
12294
+ 'reportedRecordsCount',
12295
+ 'takendownRecordsCount',
12296
+ ],
12184
12297
  },
12185
12298
  sortDirection: {
12186
12299
  type: 'string',
@@ -12232,6 +12345,18 @@ exports.schemaDict = {
12232
12345
  description: "If specified, subjects of the given type (account or record) will be returned. When this is set to 'account' the 'collections' parameter will be ignored. When includeAllUserRecords or subject is set, this will be ignored.",
12233
12346
  knownValues: ['account', 'record'],
12234
12347
  },
12348
+ minAccountSuspendCount: {
12349
+ type: 'integer',
12350
+ description: 'If specified, only subjects that belong to an account that has at least this many suspensions will be returned.',
12351
+ },
12352
+ minReportedRecordsCount: {
12353
+ type: 'integer',
12354
+ description: 'If specified, only subjects that belong to an account that has at least this many reported records will be returned.',
12355
+ },
12356
+ minTakendownRecordsCount: {
12357
+ type: 'integer',
12358
+ description: 'If specified, only subjects that belong to an account that has at least this many taken down records will be returned.',
12359
+ },
12235
12360
  },
12236
12361
  },
12237
12362
  output: {