@atproto/bsky 0.0.195 → 0.0.197

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 (54) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/dist/api/app/bsky/feed/searchPosts.d.ts.map +1 -1
  3. package/dist/api/app/bsky/feed/searchPosts.js +18 -3
  4. package/dist/api/app/bsky/feed/searchPosts.js.map +1 -1
  5. package/dist/api/app/bsky/unspecced/getPostThreadV2.d.ts.map +1 -1
  6. package/dist/api/app/bsky/unspecced/getPostThreadV2.js +1 -0
  7. package/dist/api/app/bsky/unspecced/getPostThreadV2.js.map +1 -1
  8. package/dist/auth-verifier.d.ts.map +1 -1
  9. package/dist/auth-verifier.js +6 -1
  10. package/dist/auth-verifier.js.map +1 -1
  11. package/dist/config.d.ts +4 -0
  12. package/dist/config.d.ts.map +1 -1
  13. package/dist/config.js +10 -0
  14. package/dist/config.js.map +1 -1
  15. package/dist/feature-gates.d.ts +17 -6
  16. package/dist/feature-gates.d.ts.map +1 -1
  17. package/dist/feature-gates.js +24 -13
  18. package/dist/feature-gates.js.map +1 -1
  19. package/dist/hydration/feed.d.ts +4 -1
  20. package/dist/hydration/feed.d.ts.map +1 -1
  21. package/dist/hydration/feed.js +10 -2
  22. package/dist/hydration/feed.js.map +1 -1
  23. package/dist/hydration/hydrator.d.ts +5 -2
  24. package/dist/hydration/hydrator.d.ts.map +1 -1
  25. package/dist/hydration/hydrator.js +17 -3
  26. package/dist/hydration/hydrator.js.map +1 -1
  27. package/dist/index.d.ts.map +1 -1
  28. package/dist/index.js +2 -0
  29. package/dist/index.js.map +1 -1
  30. package/dist/proto/bsky_pb.d.ts +8 -0
  31. package/dist/proto/bsky_pb.d.ts.map +1 -1
  32. package/dist/proto/bsky_pb.js +20 -0
  33. package/dist/proto/bsky_pb.js.map +1 -1
  34. package/dist/views/index.d.ts +4 -0
  35. package/dist/views/index.d.ts.map +1 -1
  36. package/dist/views/index.js +31 -8
  37. package/dist/views/index.js.map +1 -1
  38. package/dist/views/threads-v2.d.ts +3 -1
  39. package/dist/views/threads-v2.d.ts.map +1 -1
  40. package/dist/views/threads-v2.js +122 -12
  41. package/dist/views/threads-v2.js.map +1 -1
  42. package/package.json +7 -7
  43. package/proto/bsky.proto +2 -0
  44. package/src/api/app/bsky/feed/searchPosts.ts +28 -2
  45. package/src/api/app/bsky/unspecced/getPostThreadV2.ts +4 -0
  46. package/src/auth-verifier.ts +9 -1
  47. package/src/config.ts +15 -0
  48. package/src/feature-gates.ts +28 -9
  49. package/src/hydration/feed.ts +17 -1
  50. package/src/hydration/hydrator.ts +17 -1
  51. package/src/index.ts +2 -0
  52. package/src/proto/bsky_pb.ts +12 -0
  53. package/src/views/index.ts +52 -22
  54. package/src/views/threads-v2.ts +156 -13
@@ -1053,6 +1053,24 @@ class GetPostRecordsRequest extends protobuf_1.Message {
1053
1053
  writable: true,
1054
1054
  value: []
1055
1055
  });
1056
+ /**
1057
+ * @generated from field: optional string process_dynamic_tags_for_view = 2;
1058
+ */
1059
+ Object.defineProperty(this, "processDynamicTagsForView", {
1060
+ enumerable: true,
1061
+ configurable: true,
1062
+ writable: true,
1063
+ value: void 0
1064
+ });
1065
+ /**
1066
+ * @generated from field: optional string viewer_did = 3;
1067
+ */
1068
+ Object.defineProperty(this, "viewerDid", {
1069
+ enumerable: true,
1070
+ configurable: true,
1071
+ writable: true,
1072
+ value: void 0
1073
+ });
1056
1074
  protobuf_1.proto3.util.initPartial(data, this);
1057
1075
  }
1058
1076
  static fromBinary(bytes, options) {
@@ -1087,6 +1105,8 @@ Object.defineProperty(GetPostRecordsRequest, "fields", {
1087
1105
  writable: true,
1088
1106
  value: protobuf_1.proto3.util.newFieldList(() => [
1089
1107
  { no: 1, name: "uris", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
1108
+ { no: 2, name: "process_dynamic_tags_for_view", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1109
+ { no: 3, name: "viewer_did", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1090
1110
  ])
1091
1111
  });
1092
1112
  /**