@atproto/repo 0.3.5 → 0.3.7

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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # @atproto/repo
2
2
 
3
+ ## 0.3.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2173](https://github.com/bluesky-social/atproto/pull/2173) [`fcf8e3faf`](https://github.com/bluesky-social/atproto/commit/fcf8e3faf311559162c3aa0d9af36f84951914bc) Thanks [@bnewbold](https://github.com/bnewbold)! - repo commit object prev field is nullable, but no longer nullable
8
+
9
+ ## 0.3.6
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [[`3c0ef382`](https://github.com/bluesky-social/atproto/commit/3c0ef382c12a413cc971ae47ffb341236c545f60)]:
14
+ - @atproto/syntax@0.1.5
15
+ - @atproto/lexicon@0.3.1
16
+
3
17
  ## 0.3.5
4
18
 
5
19
  ### Patch Changes
package/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  Dual MIT/Apache-2.0 License
2
2
 
3
- Copyright (c) 2022-2023 Bluesky PBC, and Contributors
3
+ Copyright (c) 2022-2024 Bluesky PBC, and Contributors
4
4
 
5
5
  Except as otherwise noted in individual files, this software is licensed under the MIT license (<http://opensource.org/licenses/MIT>), or the Apache License, Version 2.0 (<http://www.apache.org/licenses/LICENSE-2.0>).
6
6
 
@@ -20,7 +20,7 @@ export declare class BlockMap {
20
20
  get byteSize(): number;
21
21
  equals(other: BlockMap): boolean;
22
22
  }
23
- declare type Entry = {
23
+ type Entry = {
24
24
  cid: CID;
25
25
  bytes: Uint8Array;
26
26
  };
@@ -22,16 +22,16 @@ export declare class DataDiff {
22
22
  deleteList(): DataDelete[];
23
23
  updatedKeys(): string[];
24
24
  }
25
- export declare type DataAdd = {
25
+ export type DataAdd = {
26
26
  key: string;
27
27
  cid: CID;
28
28
  };
29
- export declare type DataUpdate = {
29
+ export type DataUpdate = {
30
30
  key: string;
31
31
  prev: CID;
32
32
  cid: CID;
33
33
  };
34
- export declare type DataDelete = {
34
+ export type DataDelete = {
35
35
  key: string;
36
36
  cid: CID;
37
37
  };
package/dist/index.d.ts CHANGED
@@ -2,6 +2,7 @@ export * from './block-map';
2
2
  export * from './cid-set';
3
3
  export * from './repo';
4
4
  export * from './mst';
5
+ export * from './parse';
5
6
  export * from './storage';
6
7
  export * from './sync';
7
8
  export * from './types';