@sqlanvil/core 1.12.0 → 1.13.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/configs.proto CHANGED
@@ -116,6 +116,11 @@ message ConnectionConfig {
116
116
  string dataset = 3;
117
117
  // Optional. Non-secret Vault secret id used in generated BigQuery FDW server DDL.
118
118
  string sa_key_id = 4;
119
+ // Optional. BigQuery project that runs/bills the FDW query jobs. Defaults to `project`.
120
+ // Set this to your own project when `project` is a dataset you can read but not bill
121
+ // (e.g. `bigquery-public-data`): the FDW server's `project_id` becomes the billing
122
+ // project and the foreign table reads the source via a full-FQN subquery.
123
+ string billing_project = 9;
119
124
  // Optional. Postgres source host (non-secret; password lives in .df-credentials.json).
120
125
  string host = 5;
121
126
  // Optional. Postgres source port.
package/package.json CHANGED
@@ -34,7 +34,7 @@
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "version": "1.12.0",
37
+ "version": "1.13.0",
38
38
  "name": "@sqlanvil/core",
39
39
  "description": "sqlanvil core API.",
40
40
  "main": "bundle.js"