@azure/data-tables 13.0.1-alpha.20220103.2 → 13.0.1-alpha.20220111.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/data-tables",
3
- "version": "13.0.1-alpha.20220103.2",
3
+ "version": "13.0.1-alpha.20220111.2",
4
4
  "description": "An isomorphic client library for the Azure Tables service.",
5
5
  "sdk-type": "client",
6
6
  "main": "dist/index.js",
@@ -102,7 +102,7 @@
102
102
  "@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
103
103
  "chai": "^4.2.0",
104
104
  "cross-env": "^7.0.2",
105
- "downlevel-dts": "~0.4.0",
105
+ "downlevel-dts": "^0.8.0",
106
106
  "eslint": "^7.15.0",
107
107
  "inherits": "^2.0.3",
108
108
  "karma": "^6.2.0",
@@ -125,7 +125,10 @@ export declare interface CorsRule {
125
125
  /**
126
126
  * Represents the Create or Delete Entity operation to be included in a Transaction request
127
127
  */
128
- export declare type CreateDeleteEntityAction = ["create" | "delete", TableEntity];
128
+ export declare type CreateDeleteEntityAction = [
129
+ "create" | "delete",
130
+ TableEntity
131
+ ];
129
132
  /**
130
133
  * Contains response data for the createEntity operation.
131
134
  */
@@ -1307,7 +1310,14 @@ export declare type TransactionAction = CreateDeleteEntityAction | UpdateEntityA
1307
1310
  /**
1308
1311
  * Represents the Update or Upsert Entity operation to be included in a Transaction request
1309
1312
  */
1310
- export declare type UpdateEntityAction = ["update" | "upsert", TableEntity] | ["update" | "upsert", TableEntity, "Merge" | "Replace"];
1313
+ export declare type UpdateEntityAction = [
1314
+ "update" | "upsert",
1315
+ TableEntity
1316
+ ] | [
1317
+ "update" | "upsert",
1318
+ TableEntity,
1319
+ "Merge" | "Replace"
1320
+ ];
1311
1321
  /** Contains response data for the updateEntity operation. */
1312
1322
  export declare type UpdateEntityResponse = TableUpdateEntityHeaders;
1313
1323
  /**