Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions firestore-bigquery-export/extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,20 @@ params:
example: data,document_id,timestamp
required: false

- param: DATA_FORMAT
label: Select how to store data in the big query table
description: >-
Choose how to store synced firestore data within your bigquery table.
JSON is currently in Beta https://cloud.google.com/bigquery/docs/reference/standard-sql/json-data
type: select
options:
- label: string
value: STRING
- label: json
value: JSON
default: string
required: true

- param: BACKUP_COLLECTION
label: Backup Collection Name
description: >-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"main": "./lib/index.js",
"scripts": {
"build": "npm run clean && npm run compile",
"build:watch": "npm run clean && tsc --watch",
"clean": "rimraf lib",
"compile": "tsc",
"test:local": "firebase ext:dev:emulators:exec ./node_modules/.bin/jest --test-params=./src/__tests__/emulator-params.env --project=extensions-testing --config=./src/__tests__/firebase.json",
Expand Down Expand Up @@ -39,7 +40,7 @@
"rimraf": "^2.6.3",
"nyc": "^14.0.0",
"jest": "^24.9.0",
"chai": "^4.2.0",
"chai": "^4.3.6",
"ts-node": "^7.0.1",
"ts-jest": "^24.1.0",
"@types/jest": "^24.0.18",
Expand Down
Loading