mirror of
https://github.com/foss42/apidash.git
synced 2025-12-02 02:39:19 +08:00
Update dependencies
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import 'package:better_networking/better_networking.dart';
|
||||
import 'package:curl_parser/curl_parser.dart';
|
||||
import 'package:genai/genai.dart';
|
||||
|
||||
class CurlIO {
|
||||
List<HttpRequestModel>? getHttpRequestModelList(String content) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import 'package:better_networking/better_networking.dart';
|
||||
import 'package:genai/genai.dart';
|
||||
import 'package:har/har.dart' as har;
|
||||
|
||||
class HarParserIO {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import 'package:better_networking/better_networking.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:genai/genai.dart';
|
||||
import 'package:insomnia_collection/insomnia_collection.dart';
|
||||
import '../consts.dart';
|
||||
import '../models/models.dart';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import 'package:better_networking/better_networking.dart';
|
||||
import 'package:genai/genai.dart';
|
||||
import 'package:postman/postman.dart' as pm;
|
||||
|
||||
class PostmanIO {
|
||||
|
||||
@@ -13,13 +13,14 @@ dependencies:
|
||||
sdk: flutter
|
||||
curl_parser:
|
||||
path: ../curl_parser
|
||||
freezed_annotation: ^2.4.1
|
||||
freezed_annotation: ^3.0.0
|
||||
genai:
|
||||
path: ../genai
|
||||
har:
|
||||
path: ../har
|
||||
insomnia_collection:
|
||||
path: ../insomnia_collection
|
||||
openapi_spec: ^0.15.0
|
||||
postman:
|
||||
path: ../postman
|
||||
xml: ^6.3.0
|
||||
@@ -29,6 +30,6 @@ dev_dependencies:
|
||||
sdk: flutter
|
||||
build_runner: ^2.4.12
|
||||
flutter_lints: ^6.0.0
|
||||
freezed: ^2.5.7
|
||||
freezed: ^3.0.6
|
||||
json_serializable: ^6.7.1
|
||||
test: ^1.25.2
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
## 0.0.4-dev
|
||||
|
||||
- Add OAuth support.
|
||||
- Bump dependency versions.
|
||||
|
||||
## 0.0.3
|
||||
|
||||
|
||||
@@ -171,10 +171,10 @@ packages:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: freezed_annotation
|
||||
sha256: c2e2d632dd9b8a2b7751117abcfc2b4888ecfe181bd9fca7170d9ef02e595fe2
|
||||
sha256: "7294967ff0a6d98638e7acb774aac3af2550777accd8149c90af5b014e6d44d8"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.4.4"
|
||||
version: "3.1.0"
|
||||
http:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -373,7 +373,7 @@ packages:
|
||||
path: "../../seed"
|
||||
relative: true
|
||||
source: path
|
||||
version: "0.0.3"
|
||||
version: "0.0.4-dev"
|
||||
sky_engine:
|
||||
dependency: transitive
|
||||
description: flutter
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
import 'package:seed/seed.dart';
|
||||
import '../../consts.dart';
|
||||
import 'auth_api_key_model.dart';
|
||||
import 'auth_basic_model.dart';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
import 'package:seed/seed.dart';
|
||||
|
||||
part 'auth_api_key_model.g.dart';
|
||||
part 'auth_api_key_model.freezed.dart';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
import 'package:seed/seed.dart';
|
||||
|
||||
part 'auth_basic_model.g.dart';
|
||||
part 'auth_basic_model.freezed.dart';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
import 'package:seed/seed.dart';
|
||||
|
||||
part 'auth_bearer_model.g.dart';
|
||||
part 'auth_bearer_model.freezed.dart';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
import 'package:seed/seed.dart';
|
||||
|
||||
part 'auth_digest_model.g.dart';
|
||||
part 'auth_digest_model.freezed.dart';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
import 'package:seed/seed.dart';
|
||||
|
||||
part 'auth_jwt_model.freezed.dart';
|
||||
part 'auth_jwt_model.g.dart';
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
import 'package:better_networking/consts.dart';
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
import 'package:seed/seed.dart';
|
||||
import '../../consts.dart';
|
||||
|
||||
part 'auth_oauth1_model.g.dart';
|
||||
|
||||
part 'auth_oauth1_model.freezed.dart';
|
||||
|
||||
@freezed
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
import 'package:better_networking/consts.dart';
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
import 'package:seed/seed.dart';
|
||||
import '../../consts.dart';
|
||||
|
||||
part 'auth_oauth2_model.g.dart';
|
||||
|
||||
part 'auth_oauth2_model.freezed.dart';
|
||||
|
||||
@freezed
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import 'dart:convert';
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
import 'package:seed/seed.dart';
|
||||
import '../extensions/extensions.dart';
|
||||
import '../utils/utils.dart'
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
import 'dart:io';
|
||||
import 'dart:convert';
|
||||
import 'dart:typed_data';
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
import 'package:collection/collection.dart' show mergeMaps;
|
||||
import 'package:http/http.dart';
|
||||
import 'package:http_parser/http_parser.dart';
|
||||
import 'package:seed/seed.dart';
|
||||
import '../extensions/extensions.dart';
|
||||
import '../utils/utils.dart';
|
||||
import '../consts.dart';
|
||||
import 'package:collection/collection.dart' show mergeMaps;
|
||||
|
||||
part 'http_response_model.freezed.dart';
|
||||
part 'http_response_model.g.dart';
|
||||
|
||||
@@ -21,12 +21,12 @@ dependencies:
|
||||
convert: ^3.1.2
|
||||
crypto: ^3.0.6
|
||||
dart_jsonwebtoken: ^3.2.0
|
||||
freezed_annotation: ^2.4.1
|
||||
http: ^1.3.0
|
||||
http_parser: ^4.1.2
|
||||
json5: ^0.8.2
|
||||
json_annotation: ^4.9.0
|
||||
seed: ^0.0.3
|
||||
seed:
|
||||
path: ../seed
|
||||
xml: ^6.3.0
|
||||
oauth1: ^2.1.0
|
||||
oauth2: ^2.0.3
|
||||
@@ -37,6 +37,6 @@ dev_dependencies:
|
||||
sdk: flutter
|
||||
build_runner: ^2.4.12
|
||||
flutter_lints: ^4.0.0
|
||||
freezed: ^2.5.7
|
||||
freezed: ^3.1.0
|
||||
json_serializable: ^6.7.1
|
||||
test: ^1.25.2
|
||||
|
||||
@@ -297,7 +297,7 @@ class Curl extends Equatable {
|
||||
|
||||
void appendCont(String seg) {
|
||||
cmd += '\\';
|
||||
cmd += '\n ' + seg + ' ';
|
||||
cmd += '\n $seg ';
|
||||
}
|
||||
|
||||
// Headers
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: curl_parser
|
||||
description: Parse cURL command to Dart object and convert Dart object to cURL command.
|
||||
version: 0.1.3
|
||||
version: 0.1.4-dev
|
||||
homepage: https://github.com/foss42/apidash/tree/main/packages/curl_parser
|
||||
repository: https://github.com/foss42/apidash/tree/main/packages/curl_parser
|
||||
issue_tracker: https://github.com/foss42/apidash/issues
|
||||
@@ -19,7 +19,8 @@ environment:
|
||||
dependencies:
|
||||
args: ^2.5.0
|
||||
equatable: ^2.0.5
|
||||
seed: ^0.0.3
|
||||
seed:
|
||||
path: ../seed
|
||||
shlex: ^2.0.2
|
||||
|
||||
dev_dependencies:
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
## 0.0.2-dev
|
||||
|
||||
- Bump dependency version.
|
||||
|
||||
## 0.0.1
|
||||
|
||||
- Introducing a unified Dart/Flutter package for working with multiple Generative AI providers (Google Gemini, OpenAI, Anthropic, Azure OpenAI, Ollama, etc.).
|
||||
|
||||
@@ -171,17 +171,17 @@ packages:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: freezed_annotation
|
||||
sha256: c2e2d632dd9b8a2b7751117abcfc2b4888ecfe181bd9fca7170d9ef02e595fe2
|
||||
sha256: "7294967ff0a6d98638e7acb774aac3af2550777accd8149c90af5b014e6d44d8"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.4.4"
|
||||
version: "3.1.0"
|
||||
genai:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
path: ".."
|
||||
relative: true
|
||||
source: path
|
||||
version: "0.0.1"
|
||||
version: "0.0.2-dev"
|
||||
http:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -388,7 +388,7 @@ packages:
|
||||
path: "../../seed"
|
||||
relative: true
|
||||
source: path
|
||||
version: "0.0.3"
|
||||
version: "0.0.4-dev"
|
||||
sky_engine:
|
||||
dependency: transitive
|
||||
description: flutter
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import 'package:genai/agentic_engine/blueprint.dart';
|
||||
import 'package:genai/genai.dart';
|
||||
import '../models/models.dart';
|
||||
import '../utils/utils.dart';
|
||||
import 'blueprint.dart';
|
||||
|
||||
class AIAgentService {
|
||||
static Future<String?> _call_provider({
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import 'package:better_networking/better_networking.dart';
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
import '../interface/interface.dart';
|
||||
import 'model_config.dart';
|
||||
part 'ai_request_model.freezed.dart';
|
||||
|
||||
@@ -2,10 +2,11 @@
|
||||
//
|
||||
// final availableModels = availableModelsFromJson(jsonString);
|
||||
|
||||
import 'package:freezed_annotation/freezed_annotation.dart';
|
||||
import 'dart:convert';
|
||||
import 'package:better_networking/better_networking.dart';
|
||||
import '../interface/interface.dart';
|
||||
import 'ai_request_model.dart';
|
||||
|
||||
part 'available_models.freezed.dart';
|
||||
part 'available_models.g.dart';
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: genai
|
||||
description: "A unified Dart/Flutter package for working with multiple Generative AI providers (Google Gemini, OpenAI, Anthropic, Azure OpenAI, Ollama, etc.) using a single request model."
|
||||
version: 0.0.1
|
||||
version: 0.0.2-dev
|
||||
homepage: https://github.com/foss42/apidash/tree/main/packages/genai
|
||||
|
||||
topics:
|
||||
@@ -19,7 +19,6 @@ dependencies:
|
||||
sdk: flutter
|
||||
better_networking:
|
||||
path: ../better_networking
|
||||
freezed_annotation: ^2.4.1
|
||||
json_annotation: ^4.9.0
|
||||
nanoid: ^1.0.0
|
||||
|
||||
@@ -28,6 +27,6 @@ dev_dependencies:
|
||||
sdk: flutter
|
||||
build_runner: ^2.4.12
|
||||
flutter_lints: ^4.0.0
|
||||
freezed: ^2.5.7
|
||||
freezed: ^3.1.0
|
||||
json_serializable: ^6.7.1
|
||||
test: ^1.25.2
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
## 0.0.2
|
||||
|
||||
- Bump dependencies
|
||||
|
||||
## 0.0.1
|
||||
|
||||
* TODO: Describe initial release.
|
||||
- TODO: Describe initial release.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: har
|
||||
description: "Seamlessly convert har Format to Dart and vice versa."
|
||||
version: 0.0.1
|
||||
version: 0.0.2-dev
|
||||
homepage: https://github.com/foss42/apidash
|
||||
|
||||
topics:
|
||||
@@ -14,12 +14,12 @@ environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
|
||||
dependencies:
|
||||
freezed_annotation: ^2.4.4
|
||||
freezed_annotation: ^3.0.0
|
||||
json_annotation: ^4.9.0
|
||||
|
||||
dev_dependencies:
|
||||
build_runner: ^2.4.12
|
||||
freezed: ^2.5.7
|
||||
freezed: ^3.1.0
|
||||
json_serializable: ^6.7.1
|
||||
lints: ^4.0.0
|
||||
test: ^1.24.0
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
## 0.0.2
|
||||
|
||||
- Bump dependencies
|
||||
|
||||
## 0.0.1
|
||||
|
||||
- Implement fromJson object and fromJson String for Insomnia v4 json format
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: insomnia_collection
|
||||
description: Seamlessly convert Insomnia Collection Format v4 to Dart.
|
||||
version: 0.0.1
|
||||
version: 0.0.2-dev
|
||||
homepage: https://github.com/foss42/apidash
|
||||
|
||||
topics:
|
||||
@@ -14,12 +14,12 @@ environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
|
||||
dependencies:
|
||||
freezed_annotation: ^2.4.4
|
||||
freezed_annotation: ^3.0.0
|
||||
json_annotation: ^4.9.0
|
||||
|
||||
dev_dependencies:
|
||||
build_runner: ^2.4.12
|
||||
freezed: ^2.5.7
|
||||
freezed: ^3.0.6
|
||||
json_serializable: ^6.7.1
|
||||
lints: ^4.0.0
|
||||
test: ^1.24.0
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
## 0.1.3-dev
|
||||
|
||||
- Bump dependencies
|
||||
|
||||
## 0.1.2
|
||||
|
||||
- Update postmanCollectionToJsonStr() encoder indentation from `\t` to ` `.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: postman
|
||||
description: Seamlessly convert Postman Collection Format v2.1 to Dart and vice versa.
|
||||
version: 0.1.2
|
||||
version: 0.1.3-dev
|
||||
homepage: https://github.com/foss42/apidash
|
||||
|
||||
topics:
|
||||
@@ -14,11 +14,11 @@ environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
|
||||
dependencies:
|
||||
freezed_annotation: ^2.4.4
|
||||
freezed_annotation: ^3.0.0
|
||||
|
||||
dev_dependencies:
|
||||
build_runner: ^2.4.12
|
||||
freezed: ^2.5.7
|
||||
freezed: ^3.0.6
|
||||
json_serializable: ^6.7.1
|
||||
lints: ^4.0.0
|
||||
test: ^1.24.0
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
## 0.0.4
|
||||
|
||||
- Bump freezed_annotation version.
|
||||
|
||||
## 0.0.3
|
||||
|
||||
- Fix: Add `json_serializable` under dev_dependencies.
|
||||
|
||||
@@ -2,3 +2,5 @@ library seed;
|
||||
|
||||
export 'models/models.dart';
|
||||
export 'consts.dart';
|
||||
|
||||
export 'package:freezed_annotation/freezed_annotation.dart';
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: seed
|
||||
description: Seed is a foundational package designed to provide reusable building blocks for API Dash projects.
|
||||
version: 0.0.3
|
||||
version: 0.0.4-dev
|
||||
homepage: https://github.com/foss42/apidash/tree/main/packages/seed
|
||||
repository: https://github.com/foss42/apidash/tree/main/packages/seed
|
||||
issue_tracker: https://github.com/foss42/apidash/issues
|
||||
@@ -10,11 +10,11 @@ environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
|
||||
dependencies:
|
||||
freezed_annotation: ^2.4.4
|
||||
freezed_annotation: ^3.0.0
|
||||
|
||||
dev_dependencies:
|
||||
build_runner: ^2.4.12
|
||||
freezed: ^2.5.7
|
||||
freezed: ^3.0.6
|
||||
json_serializable: ^6.7.1
|
||||
lints: ^4.0.0
|
||||
test: ^1.24.0
|
||||
|
||||
25
pubspec.lock
25
pubspec.lock
@@ -104,7 +104,7 @@ packages:
|
||||
source: hosted
|
||||
version: "2.2.9"
|
||||
better_networking:
|
||||
dependency: "direct overridden"
|
||||
dependency: transitive
|
||||
description:
|
||||
path: "packages/better_networking"
|
||||
relative: true
|
||||
@@ -383,12 +383,12 @@ packages:
|
||||
source: hosted
|
||||
version: "6.0.0"
|
||||
curl_parser:
|
||||
dependency: "direct main"
|
||||
dependency: transitive
|
||||
description:
|
||||
path: "packages/curl_parser"
|
||||
relative: true
|
||||
source: path
|
||||
version: "0.1.3"
|
||||
version: "0.1.4-dev"
|
||||
dart_jsonwebtoken:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -788,7 +788,7 @@ packages:
|
||||
path: "packages/genai"
|
||||
relative: true
|
||||
source: path
|
||||
version: "0.0.1"
|
||||
version: "0.0.2-dev"
|
||||
glob:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -819,7 +819,7 @@ packages:
|
||||
path: "packages/har"
|
||||
relative: true
|
||||
source: path
|
||||
version: "0.0.1"
|
||||
version: "0.0.2-dev"
|
||||
highlight:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@@ -922,7 +922,7 @@ packages:
|
||||
path: "packages/insomnia_collection"
|
||||
relative: true
|
||||
source: path
|
||||
version: "0.0.1"
|
||||
version: "0.0.2-dev"
|
||||
integration_test:
|
||||
dependency: "direct dev"
|
||||
description: flutter
|
||||
@@ -1278,7 +1278,7 @@ packages:
|
||||
source: hosted
|
||||
version: "0.2.3"
|
||||
openapi_spec:
|
||||
dependency: "direct main"
|
||||
dependency: transitive
|
||||
description:
|
||||
name: openapi_spec
|
||||
sha256: "0de980914cafaab7e2086f5541cefba1fb6a64510ab136bd3828bdf02e26c09d"
|
||||
@@ -1443,7 +1443,7 @@ packages:
|
||||
path: "packages/postman"
|
||||
relative: true
|
||||
source: path
|
||||
version: "0.1.2"
|
||||
version: "0.1.3-dev"
|
||||
printing:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@@ -1583,11 +1583,10 @@ packages:
|
||||
seed:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: seed
|
||||
sha256: "0d74a46abd169c96a73d9dec4739e6623021915661beadf265e885bb1eafd214"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "0.0.3"
|
||||
path: "packages/seed"
|
||||
relative: true
|
||||
source: path
|
||||
version: "0.0.4-dev"
|
||||
share_plus:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
|
||||
@@ -14,7 +14,6 @@ dependencies:
|
||||
path: packages/apidash_core
|
||||
apidash_design_system:
|
||||
path: packages/apidash_design_system
|
||||
openapi_spec: ^0.15.0
|
||||
carousel_slider: ^5.0.0
|
||||
code_builder: ^4.10.0
|
||||
csv: ^6.0.0
|
||||
@@ -45,8 +44,6 @@ dependencies:
|
||||
path: packages/json_explorer
|
||||
json_field_editor:
|
||||
path: packages/json_field_editor
|
||||
curl_parser:
|
||||
path: packages/curl_parser
|
||||
just_audio: ^0.9.46
|
||||
just_audio_mpv: ^0.1.7
|
||||
just_audio_windows: ^0.2.0
|
||||
@@ -84,8 +81,6 @@ dependency_overrides:
|
||||
pdf_widget_wrapper: ^1.0.4
|
||||
web: ^1.1.1
|
||||
freezed_annotation: ^2.0.3
|
||||
better_networking:
|
||||
path: packages/better_networking
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
||||
Reference in New Issue
Block a user