@atproto/repo 0.3.1 → 0.3.2
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 +11 -0
- package/README.md +11 -2
- package/dist/index.js +4 -1
- package/dist/index.js.map +3 -3
- package/package.json +14 -8
- package/tests/util.test.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atproto/repo
|
|
2
2
|
|
|
3
|
+
## 0.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`41ee177f`](https://github.com/bluesky-social/atproto/commit/41ee177f5a440490280d17acd8a89bcddaffb23b)]:
|
|
8
|
+
- @atproto/common-web@0.2.1
|
|
9
|
+
- @atproto/common@0.3.1
|
|
10
|
+
- @atproto/identity@0.2.1
|
|
11
|
+
- @atproto/lexicon@0.2.2
|
|
12
|
+
- @atproto/syntax@0.1.2
|
|
13
|
+
|
|
3
14
|
## 0.3.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @atproto/repo: Repository and MST
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
TypeScript library for atproto repositories, and in particular the Merkle Search Tree (MST) data structure.
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/@atproto/repo)
|
|
6
|
+
[](https://github.com/bluesky-social/atproto/actions/workflows/repo.yaml)
|
|
7
|
+
|
|
8
|
+
Repositories in atproto are signed key/value stores containing CBOR-encoded data records. The structure and implementation details are described in [the specification](https://atproto.com/specs/repository). This includes MST node format, serialization, structural constraints, and more.
|
|
9
|
+
|
|
10
|
+
## License
|
|
11
|
+
|
|
12
|
+
MIT License
|
package/dist/index.js
CHANGED
|
@@ -18353,7 +18353,7 @@ var lexObject = z.object({
|
|
|
18353
18353
|
description: z.string().optional(),
|
|
18354
18354
|
required: z.string().array().optional(),
|
|
18355
18355
|
nullable: z.string().array().optional(),
|
|
18356
|
-
properties: z.record(z.union([lexRefVariant, lexIpldType, lexArray, lexBlob, lexPrimitive]))
|
|
18356
|
+
properties: z.record(z.union([lexRefVariant, lexIpldType, lexArray, lexBlob, lexPrimitive]))
|
|
18357
18357
|
}).strict().superRefine(requiredPropertiesRefinement);
|
|
18358
18358
|
var lexXrpcParameters = z.object({
|
|
18359
18359
|
type: z.literal("params"),
|
|
@@ -18518,6 +18518,9 @@ var ipldToLex = (val) => {
|
|
|
18518
18518
|
return val;
|
|
18519
18519
|
};
|
|
18520
18520
|
|
|
18521
|
+
// ../common/src/dates.ts
|
|
18522
|
+
var import_iso_datestring_validator2 = __toESM(require_dist());
|
|
18523
|
+
|
|
18521
18524
|
// ../../node_modules/.pnpm/multiformats@9.9.0/node_modules/multiformats/esm/src/block.js
|
|
18522
18525
|
var readonly2 = ({ enumerable = true, configurable = false } = {}) => ({
|
|
18523
18526
|
enumerable,
|