@azure/data-tables 13.0.2-alpha.20220125.1 → 13.1.0-alpha.20220216.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.2-alpha.20220125.1",
3
+ "version": "13.1.0-alpha.20220216.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,20 +24,20 @@
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:browser": "tsc -p . && cross-env ONLY_BROWSER=true rollup -c 2>&1",
28
- "build:node": "tsc -p . && cross-env ONLY_NODE=true rollup -c 2>&1",
27
+ "build:browser": "tsc -p . && dev-tool run bundle",
28
+ "build:node": "tsc -p . && dev-tool run bundle",
29
29
  "build:samples": "echo Obsolete.",
30
- "build:test": "tsc -p . && rollup -c 2>&1",
30
+ "build:test": "tsc -p . && dev-tool run bundle",
31
31
  "build:types": "downlevel-dts types/latest types/3.1",
32
- "build": "npm run clean && tsc -p . && rollup -c 2>&1 && api-extractor run --local && npm run build:types",
32
+ "build": "npm run clean && tsc -p . && dev-tool run bundle && api-extractor run --local && npm run build:types",
33
33
  "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
34
34
  "clean": "rimraf dist dist-* types *.tgz *.log",
35
35
  "execute:samples": "dev-tool samples run samples-dev",
36
36
  "extract-api": "tsc -p . && api-extractor run --local",
37
37
  "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
38
38
  "generate:client": "autorest --typescript ./swagger/README.md",
39
- "integration-test:browser": "karma start --single-run",
40
- "integration-test:node": "nyc mocha -r esm --require source-map-support/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 5000000 --full-trace --exclude \"dist-esm/test/**/browser/**/*.spec.js\" \"dist-esm/test/**/*.spec.js\"",
39
+ "integration-test:browser": "dev-tool run test:browser",
40
+ "integration-test:node": "dev-tool run test:node-js-input -- --timeout 5000000 --exclude 'dist-esm/test/**/browser/*.spec.js' 'dist-esm/test/**/*.spec.js'",
41
41
  "integration-test": "npm run integration-test:node && npm run integration-test:browser",
42
42
  "lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix --fix-type [problem,suggestion]",
43
43
  "lint": "eslint package.json api-extractor.json src test --ext .ts",
@@ -45,8 +45,8 @@
45
45
  "test:browser": "npm run build:test && npm run unit-test:browser && npm run integration-test:browser",
46
46
  "test:node": "npm run build:test && npm run unit-test:node && npm run integration-test:node",
47
47
  "test": "npm run clean && npm run build:test && npm run unit-test",
48
- "unit-test:browser": "karma start --single-run",
49
- "unit-test:node": "mocha -r esm --require ts-node/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 1200000 --full-trace --exclude \"test/**/browser/**/*.spec.ts\" \"test/**/*.spec.ts\"",
48
+ "unit-test:browser": "dev-tool run test:browser",
49
+ "unit-test:node": "dev-tool run test:node-ts-input -- --timeout 1200000 --exclude 'test/**/browser/*.spec.ts' 'test/**/*.spec.ts'",
50
50
  "unit-test": "npm run unit-test:node && npm run unit-test:browser"
51
51
  },
52
52
  "files": [
@@ -81,7 +81,7 @@
81
81
  "@azure/core-paging": "^1.1.1",
82
82
  "@azure/core-xml": "^1.0.0",
83
83
  "@azure/logger": "^1.0.0",
84
- "@azure/core-tracing": "1.0.0-preview.13",
84
+ "@azure/core-tracing": "1.0.0-preview.14",
85
85
  "tslib": "^2.2.0",
86
86
  "uuid": "^8.3.0"
87
87
  },
@@ -89,11 +89,6 @@
89
89
  "@azure/identity": "^2.0.1",
90
90
  "@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
91
91
  "@microsoft/api-extractor": "^7.18.11",
92
- "@rollup/plugin-commonjs": "11.0.2",
93
- "@rollup/plugin-json": "^4.0.0",
94
- "@rollup/plugin-multi-entry": "^3.0.0",
95
- "@rollup/plugin-node-resolve": "^8.0.0",
96
- "@rollup/plugin-replace": "^2.2.0",
97
92
  "@types/chai": "^4.1.6",
98
93
  "@types/mocha": "^7.0.2",
99
94
  "@types/node": "^12.0.0",
@@ -121,18 +116,13 @@
121
116
  "prettier": "^2.5.1",
122
117
  "nyc": "^15.0.0",
123
118
  "rimraf": "^3.0.0",
124
- "rollup": "^1.16.3",
125
- "rollup-plugin-sourcemaps": "^0.4.2",
126
- "rollup-plugin-terser": "^5.1.1",
127
- "rollup-plugin-visualizer": "^4.0.4",
128
119
  "sinon": "^9.0.2",
129
120
  "typescript": "~4.2.0",
130
121
  "util": "^0.12.1",
131
122
  "dotenv": "^8.2.0",
132
- "@azure-tools/test-recorder": "^1.0.0",
123
+ "@azure-tools/test-recorder": ">=2.0.0-alpha <2.0.0-alphb",
124
+ "@azure-tools/test-credential": ">=1.0.0-alpha <1.0.0-alphb",
133
125
  "@azure/test-utils": ">=1.0.0-alpha <1.0.0-alphb",
134
- "rollup-plugin-shim": "^1.0.0",
135
- "@rollup/plugin-inject": "^4.0.0",
136
126
  "ts-node": "^10.0.0"
137
127
  },
138
128
  "//sampleConfiguration": {
@@ -154,6 +144,10 @@
154
144
  {
155
145
  "path": "swagger/README.md",
156
146
  "prefix": "package-version"
147
+ },
148
+ {
149
+ "path": "src/utils/tracing.ts",
150
+ "prefix": "packageVersion"
157
151
  }
158
152
  ]
159
153
  }
@@ -381,6 +381,7 @@ export declare class TableClient {
381
381
  */
382
382
  pipeline: Pipeline;
383
383
  private table;
384
+ private generatedClient;
384
385
  private credential?;
385
386
  private transactionClient?;
386
387
  private clientOptions;
@@ -419,6 +419,7 @@ export declare class TableClient {
419
419
  */
420
420
  pipeline: Pipeline;
421
421
  private table;
422
+ private generatedClient;
422
423
  private credential?;
423
424
  private transactionClient?;
424
425
  private clientOptions;