Skip to content

Commit

Permalink
chore: bump ts-rs from 8.1.0 to 9.0.1 in /src-tauri (#1007)
Browse files Browse the repository at this point in the history
* chore: bump ts-rs from 8.1.0 to 9.0.1 in /src-tauri

Bumps [ts-rs](https://github.com/Aleph-Alpha/ts-rs) from 8.1.0 to 9.0.1.
- [Release notes](https://github.com/Aleph-Alpha/ts-rs/releases)
- [Changelog](https://github.com/Aleph-Alpha/ts-rs/blob/main/CHANGELOG.md)
- [Commits](Aleph-Alpha/ts-rs@v8.1.0...v9.0.1)

---
updated-dependencies:
- dependency-name: ts-rs
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore: Add trailing newlines to TypeScript bindings
as newer version of ts-rs now adds trailing newlines

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: GeckoEidechse <gecko.eidechse+git@pm.me>
  • Loading branch information
dependabot[bot] and GeckoEidechse committed Sep 14, 2024
1 parent 02edf72 commit 6080fe9
Show file tree
Hide file tree
Showing 20 changed files with 23 additions and 30 deletions.
15 changes: 4 additions & 11 deletions src-tauri/Cargo.lock

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

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ async-recursion = "1.1.1"
# For parsing timestamps
chrono = "0.4.38"
# TypeScript bindings
ts-rs = "8.1"
ts-rs = "9.0"
# const formatting
const_format = "0.2.32"
# Logging libraries
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/bindings/CommitHead.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { Repo } from "./Repo";

export type CommitHead = { sha: string, ref: string, repo: Repo, };
export type CommitHead = { sha: string, ref: string, repo: Repo, };
2 changes: 1 addition & 1 deletion src-tauri/bindings/FlightCoreVersion.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.

export type FlightCoreVersion = { tag_name: string, published_at: string, };
export type FlightCoreVersion = { tag_name: string, published_at: string, };
2 changes: 1 addition & 1 deletion src-tauri/bindings/InstallProgress.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { InstallState } from "./InstallState";

export type InstallProgress = { current_downloaded: bigint, total_size: bigint, state: InstallState, };
export type InstallProgress = { current_downloaded: bigint, total_size: bigint, state: InstallState, };
2 changes: 1 addition & 1 deletion src-tauri/bindings/InstallState.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.

export type InstallState = "Downloading" | "Extracting" | "Done";
export type InstallState = "Downloading" | "Extracting" | "Done";
2 changes: 1 addition & 1 deletion src-tauri/bindings/InstallType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
/**
* Defines how Titanfall2 was installed (Steam, Origin, ...)
*/
export type InstallType = "STEAM" | "ORIGIN" | "EAPLAY" | "UNKNOWN";
export type InstallType = "STEAM" | "ORIGIN" | "EAPLAY" | "UNKNOWN";
2 changes: 1 addition & 1 deletion src-tauri/bindings/NorthstarLaunchOptions.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.

export type NorthstarLaunchOptions = { launch_via_steam: boolean, bypass_checks: boolean, };
export type NorthstarLaunchOptions = { launch_via_steam: boolean, bypass_checks: boolean, };
2 changes: 1 addition & 1 deletion src-tauri/bindings/NorthstarMod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
/**
* Object holding various information about a Northstar mod
*/
export type NorthstarMod = { name: string, version: string | null, thunderstore_mod_string: string | null, enabled: boolean, directory: string, };
export type NorthstarMod = { name: string, version: string | null, thunderstore_mod_string: string | null, enabled: boolean, directory: string, };
2 changes: 1 addition & 1 deletion src-tauri/bindings/NorthstarThunderstoreRelease.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.

export type NorthstarThunderstoreRelease = { package: string, version: string, };
export type NorthstarThunderstoreRelease = { package: string, version: string, };
2 changes: 1 addition & 1 deletion src-tauri/bindings/NorthstarThunderstoreReleaseWrapper.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { NorthstarThunderstoreRelease } from "./NorthstarThunderstoreRelease";

export type NorthstarThunderstoreReleaseWrapper = { label: string, value: NorthstarThunderstoreRelease, };
export type NorthstarThunderstoreReleaseWrapper = { label: string, value: NorthstarThunderstoreRelease, };
2 changes: 1 addition & 1 deletion src-tauri/bindings/Project.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.

export type Project = "FlightCore" | "Northstar";
export type Project = "FlightCore" | "Northstar";
2 changes: 1 addition & 1 deletion src-tauri/bindings/PullRequestType.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.

export type PullRequestType = "Mods" | "Launcher";
export type PullRequestType = "Mods" | "Launcher";
2 changes: 1 addition & 1 deletion src-tauri/bindings/PullsApiResponseElement.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { CommitHead } from "./CommitHead";

export type PullsApiResponseElement = { number: bigint, title: string, url: string, head: CommitHead, html_url: string, labels: Array<string>, };
export type PullsApiResponseElement = { number: bigint, title: string, url: string, head: CommitHead, html_url: string, labels: Array<string>, };
2 changes: 1 addition & 1 deletion src-tauri/bindings/ReleaseInfo.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.

export type ReleaseInfo = { name: string, published_at: string, body: string, };
export type ReleaseInfo = { name: string, published_at: string, body: string, };
2 changes: 1 addition & 1 deletion src-tauri/bindings/Repo.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.

export type Repo = { full_name: string, };
export type Repo = { full_name: string, };
2 changes: 1 addition & 1 deletion src-tauri/bindings/Tag.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.

export type Tag = { name: string, };
export type Tag = { name: string, };
2 changes: 1 addition & 1 deletion src-tauri/bindings/TagWrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ import type { Tag } from "./Tag";
/**
* Wrapper type needed for frontend
*/
export type TagWrapper = { label: string, value: Tag, };
export type TagWrapper = { label: string, value: Tag, };
2 changes: 1 addition & 1 deletion src-tauri/bindings/ThunderstoreMod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { ThunderstoreModVersion } from "./ThunderstoreModVersion";

export type ThunderstoreMod = { name: string, full_name: string, owner: string, package_url: string, date_created: string, date_updated: string, uuid4: string, rating_score: number, is_pinned: boolean, is_deprecated: boolean, has_nsfw_content: boolean, categories: Array<string>, versions: Array<ThunderstoreModVersion>, };
export type ThunderstoreMod = { name: string, full_name: string, owner: string, package_url: string, date_created: string, date_updated: string, uuid4: string, rating_score: number, is_pinned: boolean, is_deprecated: boolean, has_nsfw_content: boolean, categories: Array<string>, versions: Array<ThunderstoreModVersion>, };
2 changes: 1 addition & 1 deletion src-tauri/bindings/ThunderstoreModVersion.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.

export type ThunderstoreModVersion = { name: string, full_name: string, description: string, icon: string, version_number: string, dependencies: Array<string>, download_url: string, downloads: number, date_created: string, website_url: string, is_active: boolean, uuid4: string, file_size: bigint, };
export type ThunderstoreModVersion = { name: string, full_name: string, description: string, icon: string, version_number: string, dependencies: Array<string>, download_url: string, downloads: number, date_created: string, website_url: string, is_active: boolean, uuid4: string, file_size: bigint, };

0 comments on commit 6080fe9

Please sign in to comment.