@azure/eventgrid 4.6.0-alpha.20220110.2 → 4.7.0-alpha.20220207.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
@@ -3,7 +3,7 @@
3
3
  "sdk-type": "client",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "An isomorphic client library for the Azure Event Grid service.",
6
- "version": "4.6.0-alpha.20220110.2",
6
+ "version": "4.7.0-alpha.20220207.2",
7
7
  "keywords": [
8
8
  "node",
9
9
  "azure",
@@ -60,11 +60,11 @@
60
60
  },
61
61
  "scripts": {
62
62
  "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
63
- "build:browser": "tsc -p . && cross-env ONLY_BROWSER=true rollup -c 2>&1",
64
- "build:node": "tsc -p . && cross-env ONLY_NODE=true rollup -c 2>&1",
63
+ "build:browser": "tsc -p . && dev-tool run bundle",
64
+ "build:node": "tsc -p . && dev-tool run bundle",
65
65
  "build:samples": "echo Obsolete",
66
- "build:test": "tsc -p . && rollup -c 2>&1",
67
- "build": "npm run clean && tsc -p . && rollup -c 2>&1 && api-extractor run --local",
66
+ "build:test": "tsc -p . && dev-tool run bundle",
67
+ "build": "npm run clean && tsc -p . && dev-tool run bundle && api-extractor run --local",
68
68
  "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
69
69
  "clean": "rimraf dist dist-browser dist-esm dist-test temp types *.tgz *.log",
70
70
  "execute:samples": "dev-tool samples run samples-dev",
@@ -102,11 +102,6 @@
102
102
  "@azure/test-utils": ">=1.0.0-alpha <1.0.0-alphb",
103
103
  "@azure-tools/test-recorder": "^1.0.0",
104
104
  "@microsoft/api-extractor": "^7.18.11",
105
- "@rollup/plugin-commonjs": "11.0.2",
106
- "@rollup/plugin-json": "^4.0.0",
107
- "@rollup/plugin-multi-entry": "^3.0.0",
108
- "@rollup/plugin-node-resolve": "^8.0.0",
109
- "@rollup/plugin-replace": "^2.2.0",
110
105
  "@types/chai": "^4.1.6",
111
106
  "@types/chai-as-promised": "^7.1.0",
112
107
  "@types/mocha": "^7.0.2",
@@ -136,11 +131,6 @@
136
131
  "nyc": "^15.0.0",
137
132
  "prettier": "^2.5.1",
138
133
  "rimraf": "^3.0.0",
139
- "rollup": "^1.16.3",
140
- "rollup-plugin-shim": "^1.0.0",
141
- "rollup-plugin-sourcemaps": "^0.4.2",
142
- "rollup-plugin-terser": "^5.1.1",
143
- "rollup-plugin-visualizer": "^4.0.4",
144
134
  "sinon": "^9.0.2",
145
135
  "source-map-support": "^0.5.9",
146
136
  "ts-node": "^10.0.0",
@@ -892,7 +892,7 @@ export declare type EventGridPublisherClientOptions = CommonClientOptions;
892
892
  /** Schema of the Data property of an EventGridEvent for a Microsoft.EventHub.CaptureFileCreated event. */
893
893
  export declare interface EventHubCaptureFileCreatedEventData {
894
894
  /** The path to the capture file. */
895
- fileurl: string;
895
+ fileUrl: string;
896
896
  /** The file type of the capture file. */
897
897
  fileType: string;
898
898
  /** The shard ID. */
@@ -2537,7 +2537,7 @@ export declare interface StorageDirectoryDeletedEventData {
2537
2537
  /** The path to the deleted directory. */
2538
2538
  url: string;
2539
2539
  /** Is this event for a recursive delete operation. */
2540
- recursive: boolean;
2540
+ recursive: string;
2541
2541
  /** An opaque string value representing the logical sequence of events for any particular directory name. Users can use standard string comparison to understand the relative sequence of two events on the same directory name. */
2542
2542
  sequencer: string;
2543
2543
  /** The identity of the requester that triggered this event. */