11// Copyright (c) Microsoft Corporation.
22// Licensed under the MIT license.
33
4+ import "@azure/core-paging" ;
45import {
56 CreateTableEntityResponse ,
67 DeleteTableEntityOptions ,
@@ -25,8 +26,12 @@ import {
2526 UpdateEntityResponse ,
2627 UpsertEntityResponse
2728} from "./generatedModels" ;
28- import { TableQueryEntitiesOptionalParams } from "./generated/models" ;
29- import { getClientParamsFromConnectionString } from "./utils/connectionString" ;
29+ import {
30+ FullOperationResponse ,
31+ InternalClientPipelineOptions ,
32+ OperationOptions
33+ } from "@azure/core-client" ;
34+ import { GeneratedClient , TableDeleteEntityOptionalParams } from "./generated" ;
3035import {
3136 NamedKeyCredential ,
3237 SASCredential ,
@@ -35,10 +40,8 @@ import {
3540 isSASCredential ,
3641 isTokenCredential
3742} from "@azure/core-auth" ;
38- import { tablesNamedKeyCredentialPolicy } from "./tablesNamedCredentialPolicy" ;
39- import "@azure/core-paging" ;
40- import { PagedAsyncIterableIterator } from "@azure/core-paging" ;
41- import { GeneratedClient , TableDeleteEntityOptionalParams } from "./generated" ;
43+ import { STORAGE_SCOPE , TablesLoggingAllowedHeaderNames } from "./utils/constants" ;
44+ import { decodeContinuationToken , encodeContinuationToken } from "./utils/continuationToken" ;
4245import {
4346 deserialize ,
4447 deserializeObjectsArray ,
@@ -47,28 +50,25 @@ import {
4750 serializeQueryOptions ,
4851 serializeSignedIdentifiers
4952} from "./serialization" ;
50- import { Table } from "./generated/operationsInterfaces" ;
51- import { STORAGE_SCOPE , TablesLoggingAllowedHeaderNames } from "./utils/constants" ;
52- import {
53- FullOperationResponse ,
54- InternalClientPipelineOptions ,
55- OperationOptions
56- } from "@azure/core-client" ;
57- import { logger } from "./logger" ;
58- import { createSpan } from "./utils/tracing" ;
59- import { SpanStatusCode } from "@azure/core-tracing" ;
53+ import { parseXML , stringifyXML } from "@azure/core-xml" ;
6054import { InternalTableTransaction } from "./TableTransaction" ;
6155import { ListEntitiesResponse } from "./utils/internalModels" ;
62- import { Uuid } from "./utils/uuid" ;
63- import { parseXML , stringifyXML } from "@azure/core-xml" ;
56+ import { PagedAsyncIterableIterator } from "@azure/core-paging" ;
6457import { Pipeline } from "@azure/core-rest-pipeline" ;
65- import { isCredential } from "./utils/isCredential" ;
66- import { tablesSASTokenPolicy } from "./tablesSASTokenPolicy" ;
67- import { isCosmosEndpoint } from "./utils/isCosmosEndpoint" ;
58+ import { SpanStatusCode } from "@azure/core-tracing" ;
59+ import { Table } from "./generated/operationsInterfaces" ;
60+ import { TableQueryEntitiesOptionalParams } from "./generated/models" ;
61+ import { Uuid } from "./utils/uuid" ;
6862import { cosmosPatchPolicy } from "./cosmosPathPolicy" ;
69- import { decodeContinuationToken , encodeContinuationToken } from "./utils/continuationToken " ;
63+ import { createSpan } from "./utils/tracing " ;
7064import { escapeQuotes } from "./odata" ;
65+ import { getClientParamsFromConnectionString } from "./utils/connectionString" ;
7166import { handleTableAlreadyExists } from "./utils/errorHelpers" ;
67+ import { isCosmosEndpoint } from "./utils/isCosmosEndpoint" ;
68+ import { isCredential } from "./utils/isCredential" ;
69+ import { logger } from "./logger" ;
70+ import { tablesNamedKeyCredentialPolicy } from "./tablesNamedCredentialPolicy" ;
71+ import { tablesSASTokenPolicy } from "./tablesSASTokenPolicy" ;
7272
7373/**
7474 * A TableClient represents a Client to the Azure Tables service allowing you
0 commit comments