@sqlanvil/core 1.6.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundle.d.ts +128 -1
- package/bundle.js +1 -1
- package/configs.proto +15 -0
- package/package.json +1 -1
package/configs.proto
CHANGED
|
@@ -87,6 +87,21 @@ message WorkflowSettings {
|
|
|
87
87
|
|
|
88
88
|
// Optional. Named connections (warehouse + read-only sources).
|
|
89
89
|
map<string, ConnectionConfig> connections = 18;
|
|
90
|
+
|
|
91
|
+
// Optional. Named environments (dev/staging/prod) selected with `--environment`.
|
|
92
|
+
map<string, Environment> environments = 19;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
// A named environment (dev/staging/prod). Holds only NON-SECRET overrides plus a
|
|
96
|
+
// pointer to a gitignored credentials file — never secrets themselves.
|
|
97
|
+
message Environment {
|
|
98
|
+
string schema_suffix = 1;
|
|
99
|
+
map<string, string> vars = 2;
|
|
100
|
+
string default_database = 3;
|
|
101
|
+
string default_location = 4;
|
|
102
|
+
// Path (relative to the project dir) to this environment's gitignored
|
|
103
|
+
// .df-credentials file.
|
|
104
|
+
string credentials = 5;
|
|
90
105
|
}
|
|
91
106
|
|
|
92
107
|
// A named connection: the warehouse (read/write target) or a read-only source.
|