@azure/data-tables 13.2.3-alpha.20230814.1 → 13.2.3-alpha.20230908.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -3539,19 +3539,14 @@ class TableServiceClient {
3539
3539
  this.url = url;
3540
3540
  const credential = isCredential(credentialOrOptions) ? credentialOrOptions : undefined;
3541
3541
  const clientOptions = (!isCredential(credentialOrOptions) ? credentialOrOptions : options) || {};
3542
- clientOptions.endpoint = clientOptions.endpoint || this.url;
3543
- const internalPipelineOptions = Object.assign(Object.assign({}, clientOptions), {
3544
- loggingOptions: {
3542
+ const internalPipelineOptions = Object.assign(Object.assign({}, clientOptions), { endpoint: clientOptions.endpoint || this.url, loggingOptions: {
3545
3543
  logger: logger.info,
3546
3544
  additionalAllowedHeaderNames: [...TablesLoggingAllowedHeaderNames],
3547
- },
3548
- deserializationOptions: {
3545
+ }, deserializationOptions: {
3549
3546
  parseXML: coreXml.parseXML,
3550
- },
3551
- serializationOptions: {
3547
+ }, serializationOptions: {
3552
3548
  stringifyXML: coreXml.stringifyXML,
3553
- },
3554
- });
3549
+ } });
3555
3550
  const client = new GeneratedClient(this.url, internalPipelineOptions);
3556
3551
  client.pipeline.addPolicy(tablesSecondaryEndpointPolicy);
3557
3552
  if (coreAuth.isNamedKeyCredential(credential)) {
@@ -4457,8 +4452,7 @@ class TableClient {
4457
4452
  this.credential = credential;
4458
4453
  this.clientOptions = (!isCredential(credentialOrOptions) ? credentialOrOptions : options) || {};
4459
4454
  this.allowInsecureConnection = (_a = this.clientOptions.allowInsecureConnection) !== null && _a !== void 0 ? _a : false;
4460
- this.clientOptions.endpoint = this.clientOptions.endpoint || this.url;
4461
- const internalPipelineOptions = Object.assign(Object.assign({}, this.clientOptions), { loggingOptions: {
4455
+ const internalPipelineOptions = Object.assign(Object.assign({}, this.clientOptions), { endpoint: this.clientOptions.endpoint || this.url, loggingOptions: {
4462
4456
  logger: logger.info,
4463
4457
  additionalAllowedHeaderNames: [...TablesLoggingAllowedHeaderNames],
4464
4458
  }, deserializationOptions: {