Radish alpha
r
rad:z4D5UCArafTzTQpDZNQRuqswh3ury
Radicle desktop app
Radicle
Git
Regenerate types via ts-rs
Rūdolfs Ošiņš committed 3 days ago
commit a9423e20f2c7c25018414a4ab721a540be07a486
parent d6d0fbf
7 files changed +8 -8
modified crates/radicle-types/bindings/cob/inbox/Issue.ts
@@ -1,8 +1,8 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { Action } from "../issue/Action";
+
import type { State } from "../issue/State";
import type { ActionWithAuthor } from "./ActionWithAuthor";
import type { RefUpdate } from "./RefUpdate";
-
import type { State } from "../issue/State";

export type Issue = {
  rowId: string;
modified crates/radicle-types/bindings/cob/inbox/Patch.ts
@@ -1,8 +1,8 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { Action } from "../patch/Action";
+
import type { State } from "../patch/State";
import type { ActionWithAuthor } from "./ActionWithAuthor";
import type { RefUpdate } from "./RefUpdate";
-
import type { State } from "../patch/State";

export type Patch = {
  rowId: string;
modified crates/radicle-types/bindings/cob/issue/Issue.ts
@@ -1,7 +1,7 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { Author } from "../Author";
-
import type { Comment } from "../thread/Comment";
import type { Never } from "../Never";
+
import type { Comment } from "../thread/Comment";
import type { State } from "./State";

export type Issue = {
modified crates/radicle-types/bindings/cob/patch/Revision.ts
@@ -1,9 +1,9 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { Author } from "../Author";
+
import type { Reaction } from "../Reaction";
import type { CodeLocation } from "../thread/CodeLocation";
import type { Comment } from "../thread/Comment";
import type { Edit } from "./Edit";
-
import type { Reaction } from "../Reaction";
import type { Review } from "./Review";

export type Revision = {
modified crates/radicle-types/bindings/cob/thread/Comment.ts
@@ -1,9 +1,9 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { Author } from "../Author";
-
import type { Edit } from "../patch/Edit";
-
import type { Embed } from "./Embed";
import type { Never } from "../Never";
import type { Reaction } from "../Reaction";
+
import type { Edit } from "../patch/Edit";
+
import type { Embed } from "./Embed";

export type Comment<T = Never> = {
  id: string;
modified crates/radicle-types/bindings/cob/thread/Thread.ts
@@ -1,6 +1,6 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
-
import type { Comment } from "./Comment";
import type { Never } from "../Never";
+
import type { Comment } from "./Comment";

export type Thread<T = Never> = {
  root: Comment<T>;
modified crates/radicle-types/bindings/diff/Modification.ts
@@ -1,7 +1,7 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
+
import type { Line } from "../syntax/Line";
import type { Addition } from "./Addition";
import type { Deletion } from "./Deletion";
-
import type { Line } from "../syntax/Line";

export type Modification =
  | { "type": "addition" } & Addition