@azure/data-tables 12.2.0-alpha.20211022.1 → 13.0.0-alpha.20211109.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": "12.2.0-alpha.20211022.1",
3
+ "version": "13.0.0-alpha.20211109.2",
4
4
  "description": "An isomorphic client library for the Azure Tables service.",
5
5
  "sdk-type": "client",
6
6
  "main": "dist/index.js",
@@ -24,7 +24,6 @@
24
24
  },
25
25
  "scripts": {
26
26
  "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
27
- "build:autorest": "autorest ./swagger/README.md --typescript",
28
27
  "build:browser": "tsc -p . && cross-env ONLY_BROWSER=true rollup -c 2>&1",
29
28
  "build:node": "tsc -p . && cross-env ONLY_NODE=true rollup -c 2>&1",
30
29
  "build:samples": "echo Obsolete.",
@@ -36,6 +35,7 @@
36
35
  "execute:samples": "dev-tool samples run samples-dev",
37
36
  "extract-api": "tsc -p . && api-extractor run --local",
38
37
  "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
38
+ "generate:client": "autorest --typescript ./swagger/README.md",
39
39
  "integration-test:browser": "karma start --single-run",
40
40
  "integration-test:node": "nyc mocha -r esm --require source-map-support/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 5000000 --full-trace \"dist-esm/test/{,!(browser)/**/}*.spec.js\"",
41
41
  "integration-test": "npm run integration-test:node && npm run integration-test:browser",
@@ -87,7 +87,7 @@
87
87
  "uuid": "^8.3.0"
88
88
  },
89
89
  "devDependencies": {
90
- "@azure/identity": "2.0.0-beta.6",
90
+ "@azure/identity": "^2.0.1",
91
91
  "@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
92
92
  "@microsoft/api-extractor": "^7.18.11",
93
93
  "@rollup/plugin-commonjs": "11.0.2",
@@ -914,6 +914,15 @@ export declare interface TableItem {
914
914
  /** The name of the table. */
915
915
  name?: string;
916
916
  }
917
+ /**
918
+ * Output page type for table query operations
919
+ */
920
+ export declare interface TableItemResultPage extends Array<TableItem> {
921
+ /**
922
+ * Continuation token to get the next TableItem page
923
+ */
924
+ continuationToken?: string;
925
+ }
917
926
  /** Defines headers for Table_mergeEntity operation. */
918
927
  export declare interface TableMergeEntityHeaders {
919
928
  /** If a client request id header is sent in the request, this header will be present in the response with the same value. */
@@ -1165,7 +1174,7 @@ export declare class TableServiceClient {
1165
1174
  * Queries tables under the given account.
1166
1175
  * @param options - The options parameters.
1167
1176
  */
1168
- listTables(options?: ListTableItemsOptions): PagedAsyncIterableIterator<TableItem, TableItem[]>;
1177
+ listTables(options?: ListTableItemsOptions): PagedAsyncIterableIterator<TableItem, TableItemResultPage>;
1169
1178
  private listTablesAll;
1170
1179
  private listTablesPage;
1171
1180
  private _listTables;
@@ -965,6 +965,16 @@ export declare interface TableItem {
965
965
  name?: string;
966
966
  }
967
967
 
968
+ /**
969
+ * Output page type for table query operations
970
+ */
971
+ export declare interface TableItemResultPage extends Array<TableItem> {
972
+ /**
973
+ * Continuation token to get the next TableItem page
974
+ */
975
+ continuationToken?: string;
976
+ }
977
+
968
978
  /** Defines headers for Table_mergeEntity operation. */
969
979
  export declare interface TableMergeEntityHeaders {
970
980
  /** If a client request id header is sent in the request, this header will be present in the response with the same value. */
@@ -1221,7 +1231,7 @@ export declare class TableServiceClient {
1221
1231
  * Queries tables under the given account.
1222
1232
  * @param options - The options parameters.
1223
1233
  */
1224
- listTables(options?: ListTableItemsOptions): PagedAsyncIterableIterator<TableItem, TableItem[]>;
1234
+ listTables(options?: ListTableItemsOptions): PagedAsyncIterableIterator<TableItem, TableItemResultPage>;
1225
1235
  private listTablesAll;
1226
1236
  private listTablesPage;
1227
1237
  private _listTables;
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.18.13"
8
+ "packageVersion": "7.18.17"
9
9
  }
10
10
  ]
11
11
  }