From 6061284cf3075c6237a097a79c0ff1e0cc05827b Mon Sep 17 00:00:00 2001 From: Daniel Bruce Date: Fri, 19 Sep 2025 13:32:34 -0400 Subject: [PATCH 1/2] Export GCRuleMaker properly --- src/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index fddb52150..8b217c9cb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -39,6 +39,7 @@ import { import {google} from '../protos/protos'; import {ServiceError} from 'google-gax'; import * as v2 from './v2'; +import {GCRuleMaker} from './gc-rule-maker'; import {PassThrough, Duplex} from 'stream'; import grpcGcpModule = require('grpc-gcp'); import {ClusterUtils} from './utils/cluster'; @@ -1138,6 +1139,7 @@ module.exports = Bigtable; module.exports.v2 = v2; module.exports.Bigtable = Bigtable; module.exports.SqlTypes = SqlTypes; +module.exports.GCRuleMaker = GCRuleMaker; export {v2}; export {protos}; @@ -1363,5 +1365,5 @@ export { WaitForReplicationCallback, WaitForReplicationResponse, } from './table'; -export {GCRuleMaker} from './gc-rule-maker'; +export {GCRuleMaker}; export {SqlTypes}; From 3bcc2abd997d5fcf6fc030eeaa3750935e1344d0 Mon Sep 17 00:00:00 2001 From: Daniel Bruce Date: Fri, 19 Sep 2025 13:32:34 -0400 Subject: [PATCH 2/2] fix: Export GCRuleMaker properly --- src/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index fddb52150..8b217c9cb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -39,6 +39,7 @@ import { import {google} from '../protos/protos'; import {ServiceError} from 'google-gax'; import * as v2 from './v2'; +import {GCRuleMaker} from './gc-rule-maker'; import {PassThrough, Duplex} from 'stream'; import grpcGcpModule = require('grpc-gcp'); import {ClusterUtils} from './utils/cluster'; @@ -1138,6 +1139,7 @@ module.exports = Bigtable; module.exports.v2 = v2; module.exports.Bigtable = Bigtable; module.exports.SqlTypes = SqlTypes; +module.exports.GCRuleMaker = GCRuleMaker; export {v2}; export {protos}; @@ -1363,5 +1365,5 @@ export { WaitForReplicationCallback, WaitForReplicationResponse, } from './table'; -export {GCRuleMaker} from './gc-rule-maker'; +export {GCRuleMaker}; export {SqlTypes};