Skip to content

Commit

Permalink
Merge branch 'master' of github.com:plebbit/plebbit-js
Browse files Browse the repository at this point in the history
  • Loading branch information
Rinse12 committed Dec 17, 2023
2 parents 409028a + d081a9f commit 49187d2
Show file tree
Hide file tree
Showing 16 changed files with 118 additions and 64 deletions.
14 changes: 8 additions & 6 deletions dist/browser/clients/client-manager.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/browser/clients/client-manager.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/browser/runtime/node/db-handler.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export declare class DbHandler {
queryAllStoredCommentUpdates(trx?: Transaction): Promise<CommentUpdatesRow[]>;
queryCommentUpdatesWithPlaceHolderForIpfsPath(trx?: Transaction): Promise<CommentUpdatesRow[]>;
queryCommentUpdatesOfPostsForBucketAdjustment(trx?: Transaction): Promise<(Pick<CommentsTableRow, "timestamp" | "cid"> & Pick<CommentUpdatesRow, "ipfsPath">)[]>;
deleteAllCommentUpdateRows(trx?: Transaction): Promise<number>;
queryCommentsUpdatesWithPostCid(postCid: string, trx?: Transaction): Promise<CommentUpdatesRow[]>;
queryCommentsOfAuthor(authorAddresses: string | string[], trx?: Transaction): Promise<CommentsTableRow[]>;
queryAllCommentsCid(trx?: Transaction): Promise<string[]>;
Expand Down
15 changes: 11 additions & 4 deletions dist/browser/runtime/node/db-handler.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/browser/runtime/node/db-handler.js.map

Large diffs are not rendered by default.

54 changes: 36 additions & 18 deletions dist/browser/subplebbit/subplebbit.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/browser/subplebbit/subplebbit.js.map

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/browser/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,6 @@ export interface CommentsTableRow extends Omit<CommentIpfsWithCid, "challengeAns
insertedAt: number;
}
export interface CommentsTableRowInsert extends Omit<CommentsTableRow, "id" | "insertedAt"> {
challengeRequestPublicationSha256: string;
}
export interface CommentUpdatesRow extends CommentUpdate {
insertedAt: number;
Expand Down
14 changes: 8 additions & 6 deletions dist/node/clients/client-manager.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/node/clients/client-manager.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/node/runtime/node/db-handler.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export declare class DbHandler {
queryAllStoredCommentUpdates(trx?: Transaction): Promise<CommentUpdatesRow[]>;
queryCommentUpdatesWithPlaceHolderForIpfsPath(trx?: Transaction): Promise<CommentUpdatesRow[]>;
queryCommentUpdatesOfPostsForBucketAdjustment(trx?: Transaction): Promise<(Pick<CommentsTableRow, "timestamp" | "cid"> & Pick<CommentUpdatesRow, "ipfsPath">)[]>;
deleteAllCommentUpdateRows(trx?: Transaction): Promise<number>;
queryCommentsUpdatesWithPostCid(postCid: string, trx?: Transaction): Promise<CommentUpdatesRow[]>;
queryCommentsOfAuthor(authorAddresses: string | string[], trx?: Transaction): Promise<CommentsTableRow[]>;
queryAllCommentsCid(trx?: Transaction): Promise<string[]>;
Expand Down
Loading

0 comments on commit 49187d2

Please sign in to comment.