-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
deef236
commit 494f88c
Showing
18 changed files
with
941 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
## Setup | ||
|
||
pubspect.yaml: | ||
pubspec.yaml: | ||
|
||
```yaml | ||
tekartik_app_cv_firestore: | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
## Setup | ||
|
||
pubspect.yaml: | ||
pubspec.yaml: | ||
|
||
```yaml | ||
tekartik_app_cv_sembast: | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
## Setup | ||
|
||
pubspect.yaml: | ||
pubspec.yaml: | ||
|
||
```yaml | ||
tekartik_app_date: | ||
|
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 @@ | ||
# https://dart.dev/guides/libraries/private-files | ||
# Created by `dart pub` | ||
.dart_tool/ | ||
|
||
# Avoid committing pubspec.lock for library packages; see | ||
# https://dart.dev/guides/libraries/private-files#pubspeclock. | ||
pubspec.lock |
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,11 @@ | ||
## Setup | ||
|
||
pubspec.yaml: | ||
|
||
```yaml | ||
tekartik_app_json_schema: | ||
git: | ||
url: https://github.com/tekartik/app_common_utils.dart | ||
ref: dart3a | ||
path: app_json_schema | ||
``` |
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 @@ | ||
include: package:tekartik_lints/package.yaml |
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,13 @@ | ||
export 'package:cv/cv_json.dart'; | ||
export 'json_schema.dart'; | ||
export 'src/cv_json_schema.dart' | ||
show | ||
CvJsonSchema, | ||
CvJsonSchemaBool, | ||
CvJsonSchemaExt, | ||
CvJsonSchemaInt, | ||
CvJsonSchemaNum, | ||
CvJsonSchemaString, | ||
CvJsonSchemaEnumString, | ||
CvJsonSchemaList, | ||
CvJsonSchemaMap; |
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,2 @@ | ||
export 'src/constant.dart'; | ||
export 'src/json_schema.dart' show JsonSchema, JsonSchemaType; |
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,14 @@ | ||
/// String enum format | ||
const jsonSchemaFormatEnum = 'enum'; | ||
|
||
/// Int32 | ||
const jsonSchemaFormatInt32 = 'int32'; | ||
|
||
/// Int64 | ||
const jsonSchemaFormatInt64 = 'int64'; | ||
|
||
/// Float | ||
const jsonSchemaFormatFloat = 'float'; | ||
|
||
/// Double | ||
const jsonSchemaFormatDouble = 'double'; |
Oops, something went wrong.