chore: resolve merge conflicts

This commit is contained in:
Udhay-Adithya
2025-07-02 21:03:16 +05:30
parent a17d6fdd9f
commit 3903277aa9
14 changed files with 167 additions and 147 deletions

View File

@@ -1,14 +1,3 @@
import 'dart:convert';
enum APIType {
rest("HTTP", "HTTP"),
graphql("GraphQL", "GQL");
const APIType(this.label, this.abbr);
final String label;
final String abbr;
}
enum APIAuthType {
none,
basic,