diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-03-27 18:10:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-27 16:10:46 +0000 |
commit | 4cdfc0ea04844681de078d26f44321cb3c3b05c5 (patch) | |
tree | 0c4c4a6bd6c94f5f34706adbf9b7d3f2562c3a3f /src-tauri/bindings | |
parent | 3529654c9c84342c3273302a6cc684916358315b (diff) | |
download | FlightCore-4cdfc0ea04844681de078d26f44321cb3c3b05c5.tar.gz FlightCore-4cdfc0ea04844681de078d26f44321cb3c3b05c5.zip |
feat: Generate FlightCore release notes (#188)
* feat: Generate FlightCore release notes
* fix: Remove leftover comment
* fix: Add missing semantic commit type
* fix: Re-add newlines accidentally removed in merge
* refactor: Remove contributors section
Will re-add a proper implementation in a later PR.
* fix: Revert accidentally modified line
* docs: Update comments
* fix: Use correct user-agent
* fix: Put unknown commits into "Other" section
Previously they were just dropped
* refactor: Move constant string array to right file
* fix: Remove debug prints
* refactor: Move lib import to start of file
* refactor: Use wrapper type
kinda needed by selector in frontend.
Allows for still passing full object to backend for future extensability
* fix: Generate missing wrapper TS interface
* fix: Add title and message to notification
* refactor: Move constant to consts file
* fix: Fix formatting
* fix: Remove unnecessary property declaration
Diffstat (limited to 'src-tauri/bindings')
-rw-r--r-- | src-tauri/bindings/Tag.ts | 3 | ||||
-rw-r--r-- | src-tauri/bindings/TagWrapper.ts | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src-tauri/bindings/Tag.ts b/src-tauri/bindings/Tag.ts new file mode 100644 index 00000000..adbbff33 --- /dev/null +++ b/src-tauri/bindings/Tag.ts @@ -0,0 +1,3 @@ +// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. + +export interface Tag { name: string, }
\ No newline at end of file diff --git a/src-tauri/bindings/TagWrapper.ts b/src-tauri/bindings/TagWrapper.ts new file mode 100644 index 00000000..f9f56a51 --- /dev/null +++ b/src-tauri/bindings/TagWrapper.ts @@ -0,0 +1,4 @@ +// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. +import type { Tag } from "./Tag"; + +export interface TagWrapper { label: string, value: Tag, }
\ No newline at end of file |