@azure/notification-hubs 1.2.1-alpha.20240417.1 → 1.2.1-alpha.20240419.1
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/dist/api/notification-hubs.d.ts +1438 -0
- package/dist/models/notification-hubs.d.ts +2610 -0
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/notification-hubs",
|
|
3
|
-
"version": "1.2.1-alpha.
|
|
3
|
+
"version": "1.2.1-alpha.20240419.1",
|
|
4
4
|
"description": "Azure Notification Hubs SDK for JavaScript",
|
|
5
5
|
"sdk-type": "client",
|
|
6
6
|
"main": "./dist/commonjs/index.js",
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"audit": "node ../../../common/scripts/rush-audit.js && rimraf -G node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
|
|
19
19
|
"build:samples": "echo Obsolete",
|
|
20
20
|
"build:test": "tshy && dev-tool run build-test",
|
|
21
|
-
"build": "npm run build:test &&
|
|
21
|
+
"build": "npm run build:test && dev-tool run extract-api",
|
|
22
22
|
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
|
|
23
23
|
"clean": "rimraf --glob dist dist-* temp types *.tgz *.log",
|
|
24
24
|
"execute:samples": "dev-tool samples run samples-dev",
|
|
25
|
-
"extract-api": "tshy &&
|
|
25
|
+
"extract-api": "tshy && dev-tool run extract-api",
|
|
26
26
|
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
27
27
|
"integration-test:browser": "npm run build:test && dev-tool run test:vitest --browser -- -c vitest.browser.int.config.ts",
|
|
28
28
|
"integration-test:node": "dev-tool run test:vitest -- -c vitest.int.config.ts",
|