You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| paths |`string[]`| Provide a list of paths where you want to export data from. This can be a collection path (e.g. `emails`), or a path to a document (e.g. `emails/1`). If not specified, all paths will be exported, starting from the root collections. |
238
238
| match |`RegExp[]`| Provide a list of regex patterns that a document path must match to be exported. |
239
-
| ignore |`RegExp[]`| Provide a list of regex patterns that prevent a document from being exported when its path matches any of the patterns. Takes precendence over `match`. |
239
+
| ignore |`RegExp[]`| Provide a list of regex patterns that prevent a document from being exported when its path matches any of the patterns. Takes precedence over `match`.|
240
240
| depth |`number`| Limit the subcollection depth to export documents from. Documents in the root collection have a depth of 0. If not specified, no limit is applied. |
241
241
| limit |`number`| Limit the number of documents to export. If not specified, no limit is applied. |
242
242
| overwrite |`boolean`| Overwrite any existing data at the output path. Defaults to `false`. |
| paths |`string[]`| Provide a list of paths where you want to import data from. This can be a collection path (e.g. `emails`), or a path to a document (e.g. `emails/1`). If not specified, all paths will be imported. |
306
306
| match |`RegExp[]`| Provide a list of regex patterns that a document path must match to be imported. |
307
-
| ignore |`RegExp[]`| Provide a list of regex patterns that prevent a document from being imported if its path matches any of the patterns. Takes precendence over `match`. |
307
+
| ignore |`RegExp[]`| Provide a list of regex patterns that prevent a document from being imported if its path matches any of the patterns. Takes precedence over `match`.|
308
308
| depth |`number`| Limit the subcollection depth to import documents from. Documents in the root collection have a depth of 0. If not specified, no limit is applied. |
309
309
| limit |`number`| Limit the number of documents to import. If not specified, no limit is applied. |
310
310
| mode |`"create"``"insert"``"overwrite"``"merge"`| Specify how to handle importing documents that would overwrite existing data. See the [import mode](#import-mode) section for more information. Defaults to `create`. |
@@ -321,8 +321,8 @@ cases. Considered internal, so may change as implementation changes.
321
321
The `mode` option specifies how to handle importing documents that would
322
322
overwrite existing data in Firestore. The default import mode is `create`.
323
323
324
-
-`create` mode will log an error when impporting documents that already exist
325
-
in Firestore, and existing documents will not be modified.
324
+
-`create` mode will log an error when importing documents that already exist in
325
+
Firestore, and existing documents will not be modified.
326
326
-`insert` mode will only import documents that do not exist, and existing
327
327
documents will not be modified.
328
328
-`overwrite` mode will import documents that do not exist, and completely
@@ -435,7 +435,7 @@ options for the connection. Follows the
435
435
436
436
As an alternative, these options can also be provided through a
437
437
[configuration file](#configuration-file) or as environment variables. Note that
438
-
CLI options will always take precendence over environment variables.
438
+
CLI options will always take precedence over environment variables.
439
439
440
440
-`GOOGLE_CLOUD_PROJECT` can be used to provide `project`
441
441
-`GOOGLE_APPLICATION_CREDENTIALS` can be used to provide `keyFile`
@@ -447,7 +447,7 @@ providing connection options.
447
447
## Data sources
448
448
449
449
A data source provides a way to to read and write data to an external location.
450
-
This pacakge comes with a few implementations, and exports interfaces for you to
450
+
This package comes with a few implementations, and exports interfaces for you to
451
451
implement your own ones in Node if the provided implementations do not suit your
452
452
needs.
453
453
@@ -506,11 +506,11 @@ CLI options or through a [configuration file](#configuration-file).
| awsProfile |`string`| The name of the profile to use from your local AWS credentials. Requires [@aws-sdk/credential-provider-ini](https://www.npmjs.com/package/@aws-sdk/credential-provider-ini) to be installed. |
509
-
| awsAccessKeyId |`string`| The access key id to use. This takes precendence over the `awsProfile` option, which means that if you provide `awsProfile` as well as access keys, the access keys will be used. |
510
-
| awsSecretAccessKey |`string`| The secret access key to use. This takes precendence over the `awsProfile` option, which means that if you provide `awsProfile` as well as access keys, the access keys will be used. |
509
+
| awsAccessKeyId |`string`| The access key id to use. This takes precedence over the `awsProfile` option, which means that if you provide `awsProfile` as well as access keys, the access keys will be used.|
510
+
| awsSecretAccessKey |`string`| The secret access key to use. This takes precedence over the `awsProfile` option, which means that if you provide `awsProfile` as well as access keys, the access keys will be used.|
511
511
512
512
- The `awsRegion` option is always required
513
-
- You can choose to use either `awsProfile`, or `awsAcecssKeyId` and
513
+
- You can choose to use either `awsProfile`, or `awsAccessKeyId` and
514
514
`awsSecretAccessKey`
515
515
516
516
Alternatively, these values can also be provided through the corresponding
0 commit comments