@azure/communication-identity 1.4.0-alpha.20250730.1 → 1.4.0-alpha.20250825.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/package.json
CHANGED
|
@@ -1,32 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/communication-identity",
|
|
3
|
-
"version": "1.4.0-alpha.
|
|
3
|
+
"version": "1.4.0-alpha.20250825.1",
|
|
4
4
|
"description": "SDK for Azure Communication service which facilitates user token administration.",
|
|
5
5
|
"sdk-type": "client",
|
|
6
6
|
"main": "./dist/commonjs/index.js",
|
|
7
7
|
"module": "./dist/esm/index.js",
|
|
8
8
|
"types": "./dist/commonjs/index.d.ts",
|
|
9
|
-
"scripts": {
|
|
10
|
-
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
11
|
-
"build:samples": "echo skipped.",
|
|
12
|
-
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
13
|
-
"clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log",
|
|
14
|
-
"execute:js-samples": "dev-tool samples run dist-samples/javascript",
|
|
15
|
-
"execute:samples": "dev-tool samples run samples-dev",
|
|
16
|
-
"execute:ts-samples": "dev-tool samples run dist-samples/typescript/dist/dist-samples/typescript/src/",
|
|
17
|
-
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
18
|
-
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
19
|
-
"generate:client": "autorest --typescript ./swagger/README.md",
|
|
20
|
-
"lint": "eslint package.json src test",
|
|
21
|
-
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|
|
22
|
-
"pack": "npm pack 2>&1",
|
|
23
|
-
"test": "npm run test:node && npm run test:browser",
|
|
24
|
-
"test:browser": "npm run clean && dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --browser",
|
|
25
|
-
"test:node": "dev-tool run test:vitest",
|
|
26
|
-
"test:node:esm": "dev-tool run test:vitest --esm",
|
|
27
|
-
"test:watch": "npm run test -- --watch --reporter min",
|
|
28
|
-
"update-snippets": "dev-tool run update-snippets"
|
|
29
|
-
},
|
|
30
9
|
"//metadata": {
|
|
31
10
|
"constantPaths": [
|
|
32
11
|
{
|
|
@@ -96,22 +75,22 @@
|
|
|
96
75
|
"tslib": "^2.8.1"
|
|
97
76
|
},
|
|
98
77
|
"devDependencies": {
|
|
99
|
-
"@azure
|
|
100
|
-
"@azure-tools/test-recorder": ">=4.1.0-alpha <4.1.0-alphb",
|
|
101
|
-
"@azure-tools/test-utils-vitest": ">=1.0.0-alpha <1.0.0-alphb",
|
|
102
|
-
"@azure/core-util": "^1.6.1",
|
|
103
|
-
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
104
|
-
"@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
|
|
105
|
-
"@azure/identity": "^4.5.0",
|
|
78
|
+
"@azure/identity": "4.11.1",
|
|
106
79
|
"@azure/msal-node": "^2.16.1",
|
|
107
|
-
"@types/node": "^20.
|
|
108
|
-
"@vitest/browser": "^3.
|
|
109
|
-
"@vitest/coverage-istanbul": "^3.
|
|
80
|
+
"@types/node": "^20.19.0",
|
|
81
|
+
"@vitest/browser": "^3.2.3",
|
|
82
|
+
"@vitest/coverage-istanbul": "^3.2.3",
|
|
110
83
|
"dotenv": "^16.0.0",
|
|
111
|
-
"eslint": "^9.
|
|
112
|
-
"playwright": "^1.
|
|
113
|
-
"typescript": "~5.8.
|
|
114
|
-
"vitest": "^3.
|
|
84
|
+
"eslint": "^9.33.0",
|
|
85
|
+
"playwright": "^1.50.1",
|
|
86
|
+
"typescript": "~5.8.3",
|
|
87
|
+
"vitest": "^3.2.3",
|
|
88
|
+
"@azure-tools/test-credential": "^2.1.1",
|
|
89
|
+
"@azure-tools/test-utils-vitest": "^2.0.0",
|
|
90
|
+
"@azure/dev-tool": "^1.0.0",
|
|
91
|
+
"@azure/eslint-plugin-azure-sdk": "^3.0.0",
|
|
92
|
+
"@azure/core-util": "^1.13.1",
|
|
93
|
+
"@azure-tools/test-recorder": "^4.1.0"
|
|
115
94
|
},
|
|
116
95
|
"type": "module",
|
|
117
96
|
"tshy": {
|
|
@@ -151,5 +130,25 @@
|
|
|
151
130
|
"default": "./dist/commonjs/index.js"
|
|
152
131
|
}
|
|
153
132
|
}
|
|
133
|
+
},
|
|
134
|
+
"scripts": {
|
|
135
|
+
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
136
|
+
"build:samples": "tsc -p tsconfig.samples.json",
|
|
137
|
+
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
138
|
+
"clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log",
|
|
139
|
+
"execute:js-samples": "dev-tool samples run dist-samples/javascript",
|
|
140
|
+
"execute:samples": "dev-tool samples run samples-dev",
|
|
141
|
+
"execute:ts-samples": "dev-tool samples run dist-samples/typescript/dist/dist-samples/typescript/src/",
|
|
142
|
+
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
143
|
+
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
144
|
+
"generate:client": "autorest --typescript ./swagger/README.md",
|
|
145
|
+
"lint": "eslint package.json src test",
|
|
146
|
+
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|
|
147
|
+
"pack": "pnpm pack 2>&1",
|
|
148
|
+
"test": "npm run test:node && npm run test:browser",
|
|
149
|
+
"test:browser": "npm run clean && dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --browser",
|
|
150
|
+
"test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest",
|
|
151
|
+
"test:watch": "npm run test -- --watch --reporter min",
|
|
152
|
+
"update-snippets": "dev-tool run update-snippets"
|
|
154
153
|
}
|
|
155
|
-
}
|
|
154
|
+
}
|