@azure/web-pubsub-client 1.0.4-alpha.20251015.2 → 1.0.4-alpha.20251027.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/README.md +1 -1
- package/dist/commonjs/tsdoc-metadata.json +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -38,7 +38,7 @@ npm install @azure/web-pubsub-client
|
|
|
38
38
|
|
|
39
39
|
### 2. Connect with your Web PubSub resource
|
|
40
40
|
|
|
41
|
-
A client uses a Client Access URL to connect and authenticate with the service, which follows a pattern of `wss://<service_name>.webpubsub.azure.com/client/hubs/<hub_name>?access_token=<token>`. A client can have a few ways to obtain the Client Access URL. For this quick start, you can copy and paste one from Azure Portal shown below. (For production, your clients usually get the Client Access URL
|
|
41
|
+
A client uses a Client Access URL to connect and authenticate with the service, which follows a pattern of `wss://<service_name>.webpubsub.azure.com/client/hubs/<hub_name>?access_token=<token>`. A client can have a few ways to obtain the Client Access URL. For this quick start, you can copy and paste one from Azure Portal shown below. (For production, your clients usually get the Client Access URL generated on your application server. [See details below](#use-negotiation-server-to-generate-client-access-url) )
|
|
42
42
|
|
|
43
43
|

|
|
44
44
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/web-pubsub-client",
|
|
3
|
-
"version": "1.0.4-alpha.
|
|
3
|
+
"version": "1.0.4-alpha.20251027.1",
|
|
4
4
|
"description": "Azure Web PubSub Client",
|
|
5
5
|
"sdk-type": "client",
|
|
6
6
|
"main": "./dist/commonjs/index.js",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/web-pubsub/web-pubsub-client/README.md",
|
|
29
29
|
"sideEffects": false,
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@azure/abort-controller": "
|
|
32
|
-
"@azure/core-util": "
|
|
33
|
-
"@azure/logger": "
|
|
31
|
+
"@azure/abort-controller": ">=2.1.3-alpha <2.1.3-alphb",
|
|
32
|
+
"@azure/core-util": ">=1.13.1-alpha <1.13.1-alphb",
|
|
33
|
+
"@azure/logger": ">=1.3.1-alpha <1.3.1-alphb",
|
|
34
34
|
"buffer": "^6.0.0",
|
|
35
35
|
"events": "^3.3.0",
|
|
36
36
|
"tslib": "^2.8.1",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@azure/identity": "4.11.1",
|
|
41
|
-
"@azure/web-pubsub": "
|
|
41
|
+
"@azure/web-pubsub": ">=1.2.0-alpha <1.2.0-alphb",
|
|
42
42
|
"@types/node": "^20.19.0",
|
|
43
43
|
"@types/ws": "^8.18.1",
|
|
44
44
|
"@vitest/browser": "^3.2.3",
|