-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from ricardoboss/issues/14-monorepo
Prepare monorepo
- Loading branch information
Showing
79 changed files
with
103 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## Unreleased | ||
|
||
* Provides interfaces and base classes for a basic Kiota client |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
The Kiota abstractions library for Dart defines the basic constructs Kiota projects need once | ||
a client has been generated from an OpenAPI definition. | ||
|
||
A [Kiota](https://github.com/microsoft/kiota) generated project will need a reference to the | ||
abstraction package to build and run. | ||
|
||
## Usage | ||
|
||
Install the package in the generated project: | ||
|
||
> For now, you can add the git repository as a dependency in your `pubspec.yaml` file: | ||
> | ||
> ```yaml | ||
> dependencies: | ||
> kiota_abstractions: | ||
> git: | ||
> url: https://github.com/ricardoboss/dart_kiota.git | ||
> ref: main | ||
> path: packages/kiota_abstractions | ||
> ``` | ||
```bash | ||
dart pub add kiota_abstractions | ||
``` |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions
2
lib/src/case_insensitive_map.dart → ...actions/lib/src/case_insensitive_map.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The `kiota_http` package implements a HTTP client for generated Kiota clients using the | ||
[`http`](https://pub.dev/packages/http) package. | ||
|
||
## Usage | ||
|
||
Install the package in the generated project: | ||
|
||
> For now, you can add the git repository as a dependency in your `pubspec.yaml` file: | ||
> | ||
> ```yaml | ||
> dependencies: | ||
> kiota_http_client: | ||
> git: | ||
> url: https://github.com/ricardoboss/dart_kiota.git | ||
> ref: main | ||
> path: packages/kiota_http | ||
> ``` | ||
```bash | ||
dart pub add kiota_http | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: kiota_http | ||
description: "Kiota http client for Dart" | ||
version: 0.0.1-pre.1 | ||
homepage: https://github.com/ricardoboss/dart_kiota_abstractions/tree/main/packages/kiota_http | ||
publish_to: 'none' | ||
|
||
environment: | ||
sdk: '>=3.2.6 <4.0.0' | ||
|
||
dependencies: | ||
kiota_abstractions: | ||
path: ../kiota_abstractions | ||
http: ^1.2.1 | ||
http_parser: ^4.0.2 | ||
|
||
dev_dependencies: | ||
test: ^1.25.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import 'package:test/test.dart'; | ||
|
||
void main() { | ||
test('dummy test', () { | ||
expect(1, 1); | ||
}); | ||
} |