@atproto/ozone 0.1.0 → 0.1.1
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/CHANGELOG.md +9 -0
- package/dist/index.js +1 -2
- package/dist/index.js.map +2 -2
- package/package.json +6 -6
- package/src/mod-service/index.ts +0 -1
- package/src/mod-service/util.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atproto/ozone
|
|
2
2
|
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`b95c3955d`](https://github.com/bluesky-social/atproto/commit/b95c3955d0b8263a44a3d2a46b35b1831d9e504a) Thanks [@devinivy](https://github.com/devinivy)! - Second pass on no false negs in labels
|
|
8
|
+
|
|
9
|
+
- Updated dependencies []:
|
|
10
|
+
- @atproto/api@0.11.1
|
|
11
|
+
|
|
3
12
|
## 0.1.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
package/dist/index.js
CHANGED
|
@@ -132461,7 +132461,7 @@ var signLabel = async (label, signingKey) => {
|
|
|
132461
132461
|
uri: uri2,
|
|
132462
132462
|
cid: cid2,
|
|
132463
132463
|
val,
|
|
132464
|
-
neg,
|
|
132464
|
+
neg: neg === true ? true : void 0,
|
|
132465
132465
|
cts,
|
|
132466
132466
|
exp
|
|
132467
132467
|
});
|
|
@@ -133648,7 +133648,6 @@ var ModerationService = class {
|
|
|
133648
133648
|
uri: uri2,
|
|
133649
133649
|
cid: cid2 ?? void 0,
|
|
133650
133650
|
val,
|
|
133651
|
-
neg: false,
|
|
133652
133651
|
cts: new Date().toISOString()
|
|
133653
133652
|
}));
|
|
133654
133653
|
const toNegate = negate.map((val) => ({
|