Skip to content

Commit bee3758

Browse files
committed
Support environment values
1 parent 85c30c3 commit bee3758

File tree

5 files changed

+103
-1
lines changed

5 files changed

+103
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.4
2+
3+
Support environment values
4+
15
## 0.1.3
26

37
Add more param types

lib/protos/schema.pb.dart

Lines changed: 69 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/protos/schema.pbjson.dart

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protos/schema.proto

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,12 @@ message AppConstantDebugData {
6565
string search_reference = 3;
6666
}
6767

68+
message EnvironmentValueDebugData {
69+
map<string, DebugDataField> values = 1;
70+
string link = 2;
71+
string search_reference = 3;
72+
}
73+
6874
message AuthenticatedUserDebugData {
6975
map<string, DebugDataField> values = 1;
7076
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: debug_panel_proto
22
description: "A Flutter package that specify the proto schema for debugging FlutterFlow projects."
3-
version: 0.1.3
3+
version: 0.1.4
44
homepage:
55

66
environment:

0 commit comments

Comments
 (0)