├── .OwlBot.yaml ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── .OwlBot.lock.yaml ├── .OwlBot.yaml ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation_request.yml │ ├── feature_request.yml │ ├── processs_request.md │ ├── questions.md │ └── support_request.md ├── PULL_REQUEST_TEMPLATE.md ├── auto-approve.yml ├── auto-label.yaml ├── generated-files-bot.yml ├── release-please.yml ├── release-trigger.yml ├── scripts │ ├── close-invalid-link.cjs │ ├── close-unresponsive.cjs │ ├── fixtures │ │ ├── invalidIssueBody.txt │ │ ├── validIssueBody.txt │ │ └── validIssueBodyDifferentLinkLocation.txt │ ├── package.json │ ├── remove-response-label.cjs │ └── tests │ │ ├── close-invalid-link.test.cjs │ │ └── close-or-remove-response-label.test.cjs ├── sync-repo-settings.yaml └── workflows │ ├── ci.yaml │ ├── issues-no-repro.yaml │ └── response.yaml ├── .gitignore ├── .jsdoc.js ├── .kokoro ├── .gitattributes ├── common.cfg ├── continuous │ └── node18 │ │ ├── common.cfg │ │ ├── lint.cfg │ │ ├── samples-test.cfg │ │ ├── system-test.cfg │ │ └── test.cfg ├── docs.sh ├── lint.sh ├── populate-secrets.sh ├── presubmit │ ├── node18 │ │ ├── common.cfg │ │ ├── samples-test.cfg │ │ ├── system-test.cfg │ │ └── test.cfg │ └── windows │ │ ├── common.cfg │ │ └── test.cfg ├── publish.sh ├── release │ ├── docs-devsite.cfg │ ├── docs-devsite.sh │ ├── docs.cfg │ ├── docs.sh │ └── publish.cfg ├── samples-test.sh ├── system-test.sh ├── test.bat ├── test.sh ├── trampoline.sh └── trampoline_v2.sh ├── .mocharc.js ├── .nycrc ├── .prettierignore ├── .prettierrc.js ├── .readme-partials.yaml ├── .repo-metadata.json ├── .trampolinerc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE.md ├── README.md ├── SECURITY.md ├── linkinator.config.json ├── owlbot.py ├── package.json ├── protos ├── google │ └── cloud │ │ └── bigquery │ │ └── storage │ │ ├── v1 │ │ ├── annotations.proto │ │ ├── arrow.proto │ │ ├── avro.proto │ │ ├── protobuf.proto │ │ ├── storage.proto │ │ ├── stream.proto │ │ └── table.proto │ │ ├── v1alpha │ │ ├── metastore_partition.proto │ │ └── partition.proto │ │ ├── v1beta │ │ ├── metastore_partition.proto │ │ └── partition.proto │ │ └── v1beta1 │ │ ├── arrow.proto │ │ ├── avro.proto │ │ ├── read_options.proto │ │ ├── storage.proto │ │ └── table_reference.proto ├── protos.d.ts ├── protos.js └── protos.json ├── renovate.json ├── samples ├── README.md ├── append_rows_buffered.js ├── append_rows_json_writer_committed.js ├── append_rows_json_writer_default.js ├── append_rows_pending.js ├── append_rows_proto2.js ├── append_rows_table_to_proto2.js ├── customer_record.json ├── customer_record.proto ├── customer_record_pb.js ├── generated │ ├── v1 │ │ ├── big_query_read.create_read_session.js │ │ ├── big_query_read.read_rows.js │ │ ├── big_query_read.split_read_stream.js │ │ ├── big_query_write.append_rows.js │ │ ├── big_query_write.batch_commit_write_streams.js │ │ ├── big_query_write.create_write_stream.js │ │ ├── big_query_write.finalize_write_stream.js │ │ ├── big_query_write.flush_rows.js │ │ ├── big_query_write.get_write_stream.js │ │ ├── snippet_metadata.google.cloud.bigquery.storage.v1.json │ │ └── snippet_metadata_google.cloud.bigquery.storage.v1.json │ ├── v1alpha │ │ ├── metastore_partition_service.batch_create_metastore_partitions.js │ │ ├── metastore_partition_service.batch_delete_metastore_partitions.js │ │ ├── metastore_partition_service.batch_update_metastore_partitions.js │ │ ├── metastore_partition_service.list_metastore_partitions.js │ │ ├── metastore_partition_service.stream_metastore_partitions.js │ │ └── snippet_metadata_google.cloud.bigquery.storage.v1alpha.json │ ├── v1beta │ │ ├── metastore_partition_service.batch_create_metastore_partitions.js │ │ ├── metastore_partition_service.batch_delete_metastore_partitions.js │ │ ├── metastore_partition_service.batch_update_metastore_partitions.js │ │ ├── metastore_partition_service.list_metastore_partitions.js │ │ ├── metastore_partition_service.stream_metastore_partitions.js │ │ └── snippet_metadata_google.cloud.bigquery.storage.v1beta.json │ └── v1beta1 │ │ ├── big_query_storage.batch_create_read_session_streams.js │ │ ├── big_query_storage.create_read_session.js │ │ ├── big_query_storage.finalize_stream.js │ │ ├── big_query_storage.read_rows.js │ │ ├── big_query_storage.split_read_stream.js │ │ ├── snippet_metadata.google.cloud.bigquery.storage.v1beta1.json │ │ └── snippet_metadata_google.cloud.bigquery.storage.v1beta1.json ├── package.json ├── quickstart.js ├── sample_data.json ├── sample_data.proto ├── sample_data_pb.js ├── test │ ├── quickstart.js │ └── writeClient.js └── testdata │ ├── messages.json │ └── messages.proto ├── src ├── adapt │ ├── index.ts │ ├── options.ts │ ├── proto.ts │ ├── proto_mappings.ts │ ├── schema.ts │ └── schema_mappings.ts ├── index.ts ├── managedwriter │ ├── encoder.ts │ ├── error.ts │ ├── index.ts │ ├── json_writer.ts │ ├── pending_write.ts │ ├── stream_connection.ts │ ├── stream_types.ts │ ├── writer.ts │ └── writer_client.ts ├── protobuf │ └── index.ts ├── reader │ ├── arrow_reader.ts │ ├── arrow_transform.ts │ ├── data_format.ts │ ├── index.ts │ ├── read_client.ts │ ├── read_session.ts │ ├── read_stream.ts │ └── table_reader.ts ├── util │ └── logger.ts ├── v1 │ ├── big_query_read_client.ts │ ├── big_query_read_client_config.json │ ├── big_query_read_proto_list.json │ ├── big_query_write_client.ts │ ├── big_query_write_client_config.json │ ├── big_query_write_proto_list.json │ ├── gapic_metadata.json │ └── index.ts ├── v1alpha │ ├── gapic_metadata.json │ ├── index.ts │ ├── metastore_partition_service_client.ts │ ├── metastore_partition_service_client_config.json │ └── metastore_partition_service_proto_list.json ├── v1beta │ ├── gapic_metadata.json │ ├── index.ts │ ├── metastore_partition_service_client.ts │ ├── metastore_partition_service_client_config.json │ └── metastore_partition_service_proto_list.json └── v1beta1 │ ├── big_query_storage_client.ts │ ├── big_query_storage_client_config.json │ ├── big_query_storage_proto_list.json │ ├── gapic_metadata.json │ └── index.ts ├── system-test ├── fixtures │ └── sample │ │ └── src │ │ ├── index.js │ │ └── index.ts ├── install.ts ├── managed_writer_client_test.ts ├── reader_client_test.ts └── util.ts ├── test ├── adapt │ ├── proto.ts │ └── schema.ts ├── gapic_big_query_read_v1.ts ├── gapic_big_query_storage_v1beta1.ts ├── gapic_big_query_write_v1.ts ├── gapic_metastore_partition_service_v1alpha.ts ├── gapic_metastore_partition_service_v1beta.ts └── reader │ └── arrow_transform.ts ├── tsconfig.json └── webpack.config.js /.OwlBot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.OwlBot.yaml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/gts" 3 | } 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.OwlBot.lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/.OwlBot.lock.yaml -------------------------------------------------------------------------------- /.github/.OwlBot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/.OwlBot.yaml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/ISSUE_TEMPLATE/documentation_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/processs_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/ISSUE_TEMPLATE/processs_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/ISSUE_TEMPLATE/questions.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/ISSUE_TEMPLATE/support_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto-approve.yml: -------------------------------------------------------------------------------- 1 | processes: 2 | - "NodeDependency" -------------------------------------------------------------------------------- /.github/auto-label.yaml: -------------------------------------------------------------------------------- 1 | requestsize: 2 | enabled: true 3 | -------------------------------------------------------------------------------- /.github/generated-files-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/generated-files-bot.yml -------------------------------------------------------------------------------- /.github/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/release-please.yml -------------------------------------------------------------------------------- /.github/release-trigger.yml: -------------------------------------------------------------------------------- 1 | enabled: true 2 | multiScmName: nodejs-bigquery-storage -------------------------------------------------------------------------------- /.github/scripts/close-invalid-link.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/scripts/close-invalid-link.cjs -------------------------------------------------------------------------------- /.github/scripts/close-unresponsive.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/scripts/close-unresponsive.cjs -------------------------------------------------------------------------------- /.github/scripts/fixtures/invalidIssueBody.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/scripts/fixtures/invalidIssueBody.txt -------------------------------------------------------------------------------- /.github/scripts/fixtures/validIssueBody.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/scripts/fixtures/validIssueBody.txt -------------------------------------------------------------------------------- /.github/scripts/fixtures/validIssueBodyDifferentLinkLocation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/scripts/fixtures/validIssueBodyDifferentLinkLocation.txt -------------------------------------------------------------------------------- /.github/scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/scripts/package.json -------------------------------------------------------------------------------- /.github/scripts/remove-response-label.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/scripts/remove-response-label.cjs -------------------------------------------------------------------------------- /.github/scripts/tests/close-invalid-link.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/scripts/tests/close-invalid-link.test.cjs -------------------------------------------------------------------------------- /.github/scripts/tests/close-or-remove-response-label.test.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/scripts/tests/close-or-remove-response-label.test.cjs -------------------------------------------------------------------------------- /.github/sync-repo-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/sync-repo-settings.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/issues-no-repro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/workflows/issues-no-repro.yaml -------------------------------------------------------------------------------- /.github/workflows/response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.github/workflows/response.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.jsdoc.js -------------------------------------------------------------------------------- /.kokoro/.gitattributes: -------------------------------------------------------------------------------- 1 | * linguist-generated=true 2 | -------------------------------------------------------------------------------- /.kokoro/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/common.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/node18/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/continuous/node18/common.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/node18/lint.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/continuous/node18/lint.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/node18/samples-test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/continuous/node18/samples-test.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/node18/system-test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/continuous/node18/system-test.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/node18/test.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.kokoro/docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/docs.sh -------------------------------------------------------------------------------- /.kokoro/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/lint.sh -------------------------------------------------------------------------------- /.kokoro/populate-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/populate-secrets.sh -------------------------------------------------------------------------------- /.kokoro/presubmit/node18/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/presubmit/node18/common.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/node18/samples-test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/presubmit/node18/samples-test.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/node18/system-test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/presubmit/node18/system-test.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/node18/test.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.kokoro/presubmit/windows/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/presubmit/windows/common.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/windows/test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/presubmit/windows/test.cfg -------------------------------------------------------------------------------- /.kokoro/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/publish.sh -------------------------------------------------------------------------------- /.kokoro/release/docs-devsite.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/release/docs-devsite.cfg -------------------------------------------------------------------------------- /.kokoro/release/docs-devsite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/release/docs-devsite.sh -------------------------------------------------------------------------------- /.kokoro/release/docs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/release/docs.cfg -------------------------------------------------------------------------------- /.kokoro/release/docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/release/docs.sh -------------------------------------------------------------------------------- /.kokoro/release/publish.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/release/publish.cfg -------------------------------------------------------------------------------- /.kokoro/samples-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/samples-test.sh -------------------------------------------------------------------------------- /.kokoro/system-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/system-test.sh -------------------------------------------------------------------------------- /.kokoro/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/test.bat -------------------------------------------------------------------------------- /.kokoro/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/test.sh -------------------------------------------------------------------------------- /.kokoro/trampoline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/trampoline.sh -------------------------------------------------------------------------------- /.kokoro/trampoline_v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.kokoro/trampoline_v2.sh -------------------------------------------------------------------------------- /.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.mocharc.js -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.nycrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.readme-partials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.readme-partials.yaml -------------------------------------------------------------------------------- /.repo-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.repo-metadata.json -------------------------------------------------------------------------------- /.trampolinerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/.trampolinerc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/SECURITY.md -------------------------------------------------------------------------------- /linkinator.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/linkinator.config.json -------------------------------------------------------------------------------- /owlbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/owlbot.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/package.json -------------------------------------------------------------------------------- /protos/google/cloud/bigquery/storage/v1/annotations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/google/cloud/bigquery/storage/v1/annotations.proto -------------------------------------------------------------------------------- /protos/google/cloud/bigquery/storage/v1/arrow.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/google/cloud/bigquery/storage/v1/arrow.proto -------------------------------------------------------------------------------- /protos/google/cloud/bigquery/storage/v1/avro.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/google/cloud/bigquery/storage/v1/avro.proto -------------------------------------------------------------------------------- /protos/google/cloud/bigquery/storage/v1/protobuf.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/google/cloud/bigquery/storage/v1/protobuf.proto -------------------------------------------------------------------------------- /protos/google/cloud/bigquery/storage/v1/storage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/google/cloud/bigquery/storage/v1/storage.proto -------------------------------------------------------------------------------- /protos/google/cloud/bigquery/storage/v1/stream.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/google/cloud/bigquery/storage/v1/stream.proto -------------------------------------------------------------------------------- /protos/google/cloud/bigquery/storage/v1/table.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/google/cloud/bigquery/storage/v1/table.proto -------------------------------------------------------------------------------- /protos/google/cloud/bigquery/storage/v1alpha/metastore_partition.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/google/cloud/bigquery/storage/v1alpha/metastore_partition.proto -------------------------------------------------------------------------------- /protos/google/cloud/bigquery/storage/v1alpha/partition.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/google/cloud/bigquery/storage/v1alpha/partition.proto -------------------------------------------------------------------------------- /protos/google/cloud/bigquery/storage/v1beta/metastore_partition.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/google/cloud/bigquery/storage/v1beta/metastore_partition.proto -------------------------------------------------------------------------------- /protos/google/cloud/bigquery/storage/v1beta/partition.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/google/cloud/bigquery/storage/v1beta/partition.proto -------------------------------------------------------------------------------- /protos/google/cloud/bigquery/storage/v1beta1/arrow.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/google/cloud/bigquery/storage/v1beta1/arrow.proto -------------------------------------------------------------------------------- /protos/google/cloud/bigquery/storage/v1beta1/avro.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/google/cloud/bigquery/storage/v1beta1/avro.proto -------------------------------------------------------------------------------- /protos/google/cloud/bigquery/storage/v1beta1/read_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/google/cloud/bigquery/storage/v1beta1/read_options.proto -------------------------------------------------------------------------------- /protos/google/cloud/bigquery/storage/v1beta1/storage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/google/cloud/bigquery/storage/v1beta1/storage.proto -------------------------------------------------------------------------------- /protos/google/cloud/bigquery/storage/v1beta1/table_reference.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/google/cloud/bigquery/storage/v1beta1/table_reference.proto -------------------------------------------------------------------------------- /protos/protos.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/protos.d.ts -------------------------------------------------------------------------------- /protos/protos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/protos.js -------------------------------------------------------------------------------- /protos/protos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/protos/protos.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/renovate.json -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/append_rows_buffered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/append_rows_buffered.js -------------------------------------------------------------------------------- /samples/append_rows_json_writer_committed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/append_rows_json_writer_committed.js -------------------------------------------------------------------------------- /samples/append_rows_json_writer_default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/append_rows_json_writer_default.js -------------------------------------------------------------------------------- /samples/append_rows_pending.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/append_rows_pending.js -------------------------------------------------------------------------------- /samples/append_rows_proto2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/append_rows_proto2.js -------------------------------------------------------------------------------- /samples/append_rows_table_to_proto2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/append_rows_table_to_proto2.js -------------------------------------------------------------------------------- /samples/customer_record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/customer_record.json -------------------------------------------------------------------------------- /samples/customer_record.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/customer_record.proto -------------------------------------------------------------------------------- /samples/customer_record_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/customer_record_pb.js -------------------------------------------------------------------------------- /samples/generated/v1/big_query_read.create_read_session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1/big_query_read.create_read_session.js -------------------------------------------------------------------------------- /samples/generated/v1/big_query_read.read_rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1/big_query_read.read_rows.js -------------------------------------------------------------------------------- /samples/generated/v1/big_query_read.split_read_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1/big_query_read.split_read_stream.js -------------------------------------------------------------------------------- /samples/generated/v1/big_query_write.append_rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1/big_query_write.append_rows.js -------------------------------------------------------------------------------- /samples/generated/v1/big_query_write.batch_commit_write_streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1/big_query_write.batch_commit_write_streams.js -------------------------------------------------------------------------------- /samples/generated/v1/big_query_write.create_write_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1/big_query_write.create_write_stream.js -------------------------------------------------------------------------------- /samples/generated/v1/big_query_write.finalize_write_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1/big_query_write.finalize_write_stream.js -------------------------------------------------------------------------------- /samples/generated/v1/big_query_write.flush_rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1/big_query_write.flush_rows.js -------------------------------------------------------------------------------- /samples/generated/v1/big_query_write.get_write_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1/big_query_write.get_write_stream.js -------------------------------------------------------------------------------- /samples/generated/v1/snippet_metadata.google.cloud.bigquery.storage.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1/snippet_metadata.google.cloud.bigquery.storage.v1.json -------------------------------------------------------------------------------- /samples/generated/v1/snippet_metadata_google.cloud.bigquery.storage.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1/snippet_metadata_google.cloud.bigquery.storage.v1.json -------------------------------------------------------------------------------- /samples/generated/v1alpha/metastore_partition_service.batch_create_metastore_partitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1alpha/metastore_partition_service.batch_create_metastore_partitions.js -------------------------------------------------------------------------------- /samples/generated/v1alpha/metastore_partition_service.batch_delete_metastore_partitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1alpha/metastore_partition_service.batch_delete_metastore_partitions.js -------------------------------------------------------------------------------- /samples/generated/v1alpha/metastore_partition_service.batch_update_metastore_partitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1alpha/metastore_partition_service.batch_update_metastore_partitions.js -------------------------------------------------------------------------------- /samples/generated/v1alpha/metastore_partition_service.list_metastore_partitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1alpha/metastore_partition_service.list_metastore_partitions.js -------------------------------------------------------------------------------- /samples/generated/v1alpha/metastore_partition_service.stream_metastore_partitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1alpha/metastore_partition_service.stream_metastore_partitions.js -------------------------------------------------------------------------------- /samples/generated/v1alpha/snippet_metadata_google.cloud.bigquery.storage.v1alpha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1alpha/snippet_metadata_google.cloud.bigquery.storage.v1alpha.json -------------------------------------------------------------------------------- /samples/generated/v1beta/metastore_partition_service.batch_create_metastore_partitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1beta/metastore_partition_service.batch_create_metastore_partitions.js -------------------------------------------------------------------------------- /samples/generated/v1beta/metastore_partition_service.batch_delete_metastore_partitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1beta/metastore_partition_service.batch_delete_metastore_partitions.js -------------------------------------------------------------------------------- /samples/generated/v1beta/metastore_partition_service.batch_update_metastore_partitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1beta/metastore_partition_service.batch_update_metastore_partitions.js -------------------------------------------------------------------------------- /samples/generated/v1beta/metastore_partition_service.list_metastore_partitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1beta/metastore_partition_service.list_metastore_partitions.js -------------------------------------------------------------------------------- /samples/generated/v1beta/metastore_partition_service.stream_metastore_partitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1beta/metastore_partition_service.stream_metastore_partitions.js -------------------------------------------------------------------------------- /samples/generated/v1beta/snippet_metadata_google.cloud.bigquery.storage.v1beta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1beta/snippet_metadata_google.cloud.bigquery.storage.v1beta.json -------------------------------------------------------------------------------- /samples/generated/v1beta1/big_query_storage.batch_create_read_session_streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1beta1/big_query_storage.batch_create_read_session_streams.js -------------------------------------------------------------------------------- /samples/generated/v1beta1/big_query_storage.create_read_session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1beta1/big_query_storage.create_read_session.js -------------------------------------------------------------------------------- /samples/generated/v1beta1/big_query_storage.finalize_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1beta1/big_query_storage.finalize_stream.js -------------------------------------------------------------------------------- /samples/generated/v1beta1/big_query_storage.read_rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1beta1/big_query_storage.read_rows.js -------------------------------------------------------------------------------- /samples/generated/v1beta1/big_query_storage.split_read_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1beta1/big_query_storage.split_read_stream.js -------------------------------------------------------------------------------- /samples/generated/v1beta1/snippet_metadata.google.cloud.bigquery.storage.v1beta1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1beta1/snippet_metadata.google.cloud.bigquery.storage.v1beta1.json -------------------------------------------------------------------------------- /samples/generated/v1beta1/snippet_metadata_google.cloud.bigquery.storage.v1beta1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/generated/v1beta1/snippet_metadata_google.cloud.bigquery.storage.v1beta1.json -------------------------------------------------------------------------------- /samples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/package.json -------------------------------------------------------------------------------- /samples/quickstart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/quickstart.js -------------------------------------------------------------------------------- /samples/sample_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/sample_data.json -------------------------------------------------------------------------------- /samples/sample_data.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/sample_data.proto -------------------------------------------------------------------------------- /samples/sample_data_pb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/sample_data_pb.js -------------------------------------------------------------------------------- /samples/test/quickstart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/test/quickstart.js -------------------------------------------------------------------------------- /samples/test/writeClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/test/writeClient.js -------------------------------------------------------------------------------- /samples/testdata/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/testdata/messages.json -------------------------------------------------------------------------------- /samples/testdata/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/samples/testdata/messages.proto -------------------------------------------------------------------------------- /src/adapt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/adapt/index.ts -------------------------------------------------------------------------------- /src/adapt/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/adapt/options.ts -------------------------------------------------------------------------------- /src/adapt/proto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/adapt/proto.ts -------------------------------------------------------------------------------- /src/adapt/proto_mappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/adapt/proto_mappings.ts -------------------------------------------------------------------------------- /src/adapt/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/adapt/schema.ts -------------------------------------------------------------------------------- /src/adapt/schema_mappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/adapt/schema_mappings.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/managedwriter/encoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/managedwriter/encoder.ts -------------------------------------------------------------------------------- /src/managedwriter/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/managedwriter/error.ts -------------------------------------------------------------------------------- /src/managedwriter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/managedwriter/index.ts -------------------------------------------------------------------------------- /src/managedwriter/json_writer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/managedwriter/json_writer.ts -------------------------------------------------------------------------------- /src/managedwriter/pending_write.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/managedwriter/pending_write.ts -------------------------------------------------------------------------------- /src/managedwriter/stream_connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/managedwriter/stream_connection.ts -------------------------------------------------------------------------------- /src/managedwriter/stream_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/managedwriter/stream_types.ts -------------------------------------------------------------------------------- /src/managedwriter/writer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/managedwriter/writer.ts -------------------------------------------------------------------------------- /src/managedwriter/writer_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/managedwriter/writer_client.ts -------------------------------------------------------------------------------- /src/protobuf/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/protobuf/index.ts -------------------------------------------------------------------------------- /src/reader/arrow_reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/reader/arrow_reader.ts -------------------------------------------------------------------------------- /src/reader/arrow_transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/reader/arrow_transform.ts -------------------------------------------------------------------------------- /src/reader/data_format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/reader/data_format.ts -------------------------------------------------------------------------------- /src/reader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/reader/index.ts -------------------------------------------------------------------------------- /src/reader/read_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/reader/read_client.ts -------------------------------------------------------------------------------- /src/reader/read_session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/reader/read_session.ts -------------------------------------------------------------------------------- /src/reader/read_stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/reader/read_stream.ts -------------------------------------------------------------------------------- /src/reader/table_reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/reader/table_reader.ts -------------------------------------------------------------------------------- /src/util/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/util/logger.ts -------------------------------------------------------------------------------- /src/v1/big_query_read_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1/big_query_read_client.ts -------------------------------------------------------------------------------- /src/v1/big_query_read_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1/big_query_read_client_config.json -------------------------------------------------------------------------------- /src/v1/big_query_read_proto_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1/big_query_read_proto_list.json -------------------------------------------------------------------------------- /src/v1/big_query_write_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1/big_query_write_client.ts -------------------------------------------------------------------------------- /src/v1/big_query_write_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1/big_query_write_client_config.json -------------------------------------------------------------------------------- /src/v1/big_query_write_proto_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1/big_query_write_proto_list.json -------------------------------------------------------------------------------- /src/v1/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1/gapic_metadata.json -------------------------------------------------------------------------------- /src/v1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1/index.ts -------------------------------------------------------------------------------- /src/v1alpha/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1alpha/gapic_metadata.json -------------------------------------------------------------------------------- /src/v1alpha/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1alpha/index.ts -------------------------------------------------------------------------------- /src/v1alpha/metastore_partition_service_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1alpha/metastore_partition_service_client.ts -------------------------------------------------------------------------------- /src/v1alpha/metastore_partition_service_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1alpha/metastore_partition_service_client_config.json -------------------------------------------------------------------------------- /src/v1alpha/metastore_partition_service_proto_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1alpha/metastore_partition_service_proto_list.json -------------------------------------------------------------------------------- /src/v1beta/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1beta/gapic_metadata.json -------------------------------------------------------------------------------- /src/v1beta/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1beta/index.ts -------------------------------------------------------------------------------- /src/v1beta/metastore_partition_service_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1beta/metastore_partition_service_client.ts -------------------------------------------------------------------------------- /src/v1beta/metastore_partition_service_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1beta/metastore_partition_service_client_config.json -------------------------------------------------------------------------------- /src/v1beta/metastore_partition_service_proto_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1beta/metastore_partition_service_proto_list.json -------------------------------------------------------------------------------- /src/v1beta1/big_query_storage_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1beta1/big_query_storage_client.ts -------------------------------------------------------------------------------- /src/v1beta1/big_query_storage_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1beta1/big_query_storage_client_config.json -------------------------------------------------------------------------------- /src/v1beta1/big_query_storage_proto_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1beta1/big_query_storage_proto_list.json -------------------------------------------------------------------------------- /src/v1beta1/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1beta1/gapic_metadata.json -------------------------------------------------------------------------------- /src/v1beta1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/src/v1beta1/index.ts -------------------------------------------------------------------------------- /system-test/fixtures/sample/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/system-test/fixtures/sample/src/index.js -------------------------------------------------------------------------------- /system-test/fixtures/sample/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/system-test/fixtures/sample/src/index.ts -------------------------------------------------------------------------------- /system-test/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/system-test/install.ts -------------------------------------------------------------------------------- /system-test/managed_writer_client_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/system-test/managed_writer_client_test.ts -------------------------------------------------------------------------------- /system-test/reader_client_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/system-test/reader_client_test.ts -------------------------------------------------------------------------------- /system-test/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/system-test/util.ts -------------------------------------------------------------------------------- /test/adapt/proto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/test/adapt/proto.ts -------------------------------------------------------------------------------- /test/adapt/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/test/adapt/schema.ts -------------------------------------------------------------------------------- /test/gapic_big_query_read_v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/test/gapic_big_query_read_v1.ts -------------------------------------------------------------------------------- /test/gapic_big_query_storage_v1beta1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/test/gapic_big_query_storage_v1beta1.ts -------------------------------------------------------------------------------- /test/gapic_big_query_write_v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/test/gapic_big_query_write_v1.ts -------------------------------------------------------------------------------- /test/gapic_metastore_partition_service_v1alpha.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/test/gapic_metastore_partition_service_v1alpha.ts -------------------------------------------------------------------------------- /test/gapic_metastore_partition_service_v1beta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/test/gapic_metastore_partition_service_v1beta.ts -------------------------------------------------------------------------------- /test/reader/arrow_transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/test/reader/arrow_transform.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/nodejs-bigquery-storage/HEAD/webpack.config.js --------------------------------------------------------------------------------