Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit f1ccf53

Browse files
committed
chore: move imports to point at new testproxy protos
1 parent 028fd49 commit f1ccf53

16 files changed

Lines changed: 16 additions & 16 deletions

testproxy/services/bulk-mutate-rows.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import * as grpc from '@grpc/grpc-js';
1616

1717
import {normalizeCallback, ClientImplMaker, getTableInfo} from './utils';
18-
import {google} from '../../protos/protos';
18+
import {google} from '../protos/protos';
1919
import {PartialFailureError} from '../../src';
2020
type IMutateRowsRequest = google.bigtable.testproxy.IMutateRowsRequest;
2121
type IMutateRowsResult = google.bigtable.testproxy.IMutateRowsResult;

testproxy/services/check-and-mutate-row.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import * as grpc from '@grpc/grpc-js';
1717
import {ClientImplMaker, getTableInfo, normalizeCallback} from './utils';
1818
import {createFlatMutationsListWithFnInverse} from './utils/request/createFlatMutationsList';
1919
import {mutationParseInverse} from './utils/request/mutateInverse';
20-
import {google} from '../../protos/protos';
20+
import {google} from '../protos/protos';
2121
import {RawFilter} from '../../src';
2222
import {GoogleError} from 'google-gax';
2323
type ICheckAndMutateRowRequest =

testproxy/services/close-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
import {google} from '../../protos/protos';
15+
import {google} from '../protos/protos';
1616
import {ClientImplMaker, normalizeCallback} from './utils';
1717
import {deleteBigtableClient} from './utils/bigtable-client';
1818
type ICloseClientRequest = google.bigtable.testproxy.ICloseClientRequest;

testproxy/services/create-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// limitations under the License.
1414

1515
import {ClientImplMaker, normalizeCallback} from './utils';
16-
import {google} from '../../protos/protos';
16+
import {google} from '../protos/protos';
1717

1818
import * as grpc from '@grpc/grpc-js';
1919
import {Bigtable} from '../../src';

testproxy/services/execute-query.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import {
2222
import {ClientImplMaker, normalizeCallback} from './utils';
2323
import {ExecuteQueryOptions} from '../../src/instance';
2424

25-
import {google} from '../../protos/protos';
25+
import {google} from '../protos/protos';
2626
type IExecuteQueryRequest = google.bigtable.testproxy.IExecuteQueryRequest;
2727
type IExecuteQueryResult = google.bigtable.testproxy.IExecuteQueryResult;
2828
type ExecuteQueryParameters = ExecuteQueryOptions['parameters'];

testproxy/services/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import {removeClient} from './remove-client';
2525
import {sampleRowKeys} from './sample-row-keys';
2626
import {executeQuery} from './execute-query';
2727

28-
import {google} from '../../protos/protos';
28+
import {google} from '../protos/protos';
2929
import {handleUnaryCall} from '@grpc/grpc-js';
3030
type CloudBigtableV2TestProxy =
3131
google.bigtable.testproxy.CloudBigtableV2TestProxy;

testproxy/services/mutate-row.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import * as grpc from '@grpc/grpc-js';
1616
import {GoogleError} from 'google-gax';
17-
import {google} from '../../protos/protos';
17+
import {google} from '../protos/protos';
1818
type IMutateRowRequest = google.bigtable.testproxy.IMutateRowRequest;
1919
type IMutateRowResult = google.bigtable.testproxy.IMutateRowResult;
2020

testproxy/services/read-modify-write-row.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import * as grpc from '@grpc/grpc-js';
1616
import {GoogleError} from 'google-gax';
1717

18-
import {google} from '../../protos/protos';
18+
import {google} from '../protos/protos';
1919
type IReadModifyWriteRowRequest =
2020
google.bigtable.testproxy.IReadModifyWriteRowRequest;
2121
type IRowResult = google.bigtable.testproxy.IRowResult;

testproxy/services/read-row.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import * as grpc from '@grpc/grpc-js';
1616

17-
import {google} from '../../protos/protos';
17+
import {google} from '../protos/protos';
1818
type IReadRowRequest = google.bigtable.testproxy.IReadRowRequest;
1919
type IRowResult = google.bigtable.testproxy.IRowResult;
2020

testproxy/services/read-rows.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import * as grpc from '@grpc/grpc-js';
1616
import {GoogleError} from 'google-gax';
1717

18-
import {google} from '../../protos/protos';
18+
import {google} from '../protos/protos';
1919
type IReadRowsRequest = google.bigtable.testproxy.IReadRowsRequest;
2020
type IReadRowsRequestV2 = google.bigtable.v2.IReadRowsRequest;
2121
type IRowsResult = google.bigtable.testproxy.IRowsResult;

0 commit comments

Comments
 (0)