@azure/data-tables 13.1.2-alpha.20220426.1 → 13.1.2-alpha.20220427.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/CHANGELOG.md CHANGED
@@ -8,6 +8,9 @@
8
8
 
9
9
  ### Bugs Fixed
10
10
 
11
+ - fix react native bundling issue by adding a `react-native` mapping to ESM
12
+ entry point so that dependencies can be loaded asynchronously.
13
+
11
14
  ### Other Changes
12
15
 
13
16
  ## 13.1.1 (2022-04-14)
@@ -27,6 +30,7 @@
27
30
  - Updated our `@azure/core-tracing` dependency to the latest version (1.0.0)
28
31
  - Notable changes include Removal of `@opentelemetry/api` as a transitive dependency and ensuring that the active context is properly propagated.
29
32
  - Customers who would like to continue using OpenTelemetry driven tracing should visit our [OpenTelemetry Instrumentation](https://www.npmjs.com/package/@azure/opentelemetry-instrumentation-azure-sdk) package for instructions.
33
+ - Export NamedKeyCredential [#20935](https://github.com/Azure/azure-sdk-for-js/pull/20935). (A community contribution, courtesy of _[dhensby](https://github.com/dhensby))_
30
34
 
31
35
  ## 13.0.1 (2022-01-12)
32
36
 
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAElC,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AAEtB,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AAC/E,OAAO,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\nexport * from \"./generatedModels\";\nexport * from \"./models\";\nexport * from \"./sas\";\n\nexport { TableServiceClient } from \"./TableServiceClient\";\nexport { TableTransaction } from \"./TableTransaction\";\nexport { TableClient } from \"./TableClient\";\nexport { odata } from \"./odata\";\nexport { AzureNamedKeyCredential, AzureSASCredential } from \"@azure/core-auth\";\nexport { RestError } from \"@azure/core-rest-pipeline\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAElC,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AAEtB,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,uBAAuB,EAAE,kBAAkB,EAAsB,MAAM,kBAAkB,CAAC;AACnG,OAAO,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\nexport * from \"./generatedModels\";\nexport * from \"./models\";\nexport * from \"./sas\";\n\nexport { TableServiceClient } from \"./TableServiceClient\";\nexport { TableTransaction } from \"./TableTransaction\";\nexport { TableClient } from \"./TableClient\";\nexport { odata } from \"./odata\";\nexport { AzureNamedKeyCredential, AzureSASCredential, NamedKeyCredential } from \"@azure/core-auth\";\nexport { RestError } from \"@azure/core-rest-pipeline\";\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/data-tables",
3
- "version": "13.1.2-alpha.20220426.1",
3
+ "version": "13.1.2-alpha.20220427.2",
4
4
  "description": "An isomorphic client library for the Azure Tables service.",
5
5
  "sdk-type": "client",
6
6
  "main": "dist/index.js",
@@ -13,6 +13,9 @@
13
13
  "./dist-esm/src/utils/transactionHeaders.js": "./dist-esm/src/utils/transactionHeaders.browser.js",
14
14
  "./dist-esm/test/public/utils/env.js": "./dist-esm/test/public/utils/env.browser.js"
15
15
  },
16
+ "react-native": {
17
+ "./dist/index.js": "./dist-esm/src/index.js"
18
+ },
16
19
  "types": "types/latest/data-tables.d.ts",
17
20
  "typesVersions": {
18
21
  "<3.6": {
@@ -277,6 +277,7 @@ export declare interface Metrics {
277
277
  /** The retention policy. */
278
278
  retentionPolicy?: RetentionPolicy;
279
279
  }
280
+ export { NamedKeyCredential };
280
281
  /**
281
282
  * Escapes an odata filter expression to avoid errors with quoting string literals.
282
283
  */
@@ -302,6 +302,8 @@ export declare interface Metrics {
302
302
  retentionPolicy?: RetentionPolicy;
303
303
  }
304
304
 
305
+ export { NamedKeyCredential }
306
+
305
307
  /**
306
308
  * Escapes an odata filter expression to avoid errors with quoting string literals.
307
309
  */