@azure/arm-impactreporting 1.0.0-alpha.20250410.1 → 1.0.0-alpha.20250508.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 +2 -2
- package/dist/commonjs/tsdoc-metadata.json +1 -1
- package/package.json +5 -12
package/README.md
CHANGED
|
@@ -52,7 +52,7 @@ For more information about how to create an Azure AD Application check out [this
|
|
|
52
52
|
Using Node.js and Node-like environments, you can use the `DefaultAzureCredential` class to authenticate the client.
|
|
53
53
|
|
|
54
54
|
```ts snippet:ReadmeSampleCreateClient_Node
|
|
55
|
-
import { ImpactClient } from "
|
|
55
|
+
import { ImpactClient } from "@azure/arm-impactreporting";
|
|
56
56
|
import { DefaultAzureCredential } from "@azure/identity";
|
|
57
57
|
|
|
58
58
|
const subscriptionId = "00000000-0000-0000-0000-000000000000";
|
|
@@ -63,7 +63,7 @@ For browser environments, use the `InteractiveBrowserCredential` from the `@azur
|
|
|
63
63
|
|
|
64
64
|
```ts snippet:ReadmeSampleCreateClient_Browser
|
|
65
65
|
import { InteractiveBrowserCredential } from "@azure/identity";
|
|
66
|
-
import { ImpactClient } from "
|
|
66
|
+
import { ImpactClient } from "@azure/arm-impactreporting";
|
|
67
67
|
|
|
68
68
|
const subscriptionId = "00000000-0000-0000-0000-000000000000";
|
|
69
69
|
const credential = new InteractiveBrowserCredential({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/arm-impactreporting",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.20250508.1",
|
|
4
4
|
"description": "A generated SDK for ImpactClient.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18.0.0"
|
|
@@ -86,26 +86,19 @@
|
|
|
86
86
|
"scripts": {
|
|
87
87
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
88
88
|
"build:samples": "tsc -p tsconfig.samples.json && dev-tool samples publish -f",
|
|
89
|
-
"build:test": "npm run clean && dev-tool run build-package && dev-tool run build-test",
|
|
90
89
|
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"",
|
|
91
90
|
"clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log",
|
|
92
91
|
"execute:samples": "dev-tool samples run samples-dev",
|
|
93
92
|
"extract-api": "dev-tool run vendored rimraf review && dev-tool run vendored mkdirp ./review && dev-tool run extract-api",
|
|
94
93
|
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"",
|
|
95
94
|
"generate:client": "echo skipped",
|
|
96
|
-
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
|
97
|
-
"integration-test:browser": "echo skipped",
|
|
98
|
-
"integration-test:node": "echo skipped",
|
|
99
95
|
"lint": "echo skipped",
|
|
100
96
|
"lint:fix": "echo skipped",
|
|
101
|
-
"minify": "dev-tool run vendored uglifyjs -c -m --comments --source-map \"content='./dist/index.js.map'\" -o ./dist/index.min.js ./dist/index.js",
|
|
102
97
|
"pack": "npm pack 2>&1",
|
|
103
|
-
"test": "npm run
|
|
104
|
-
"test:browser": "
|
|
105
|
-
"test:node": "
|
|
106
|
-
"
|
|
107
|
-
"unit-test:browser": "npm run build:test && dev-tool run test:vitest --browser",
|
|
108
|
-
"unit-test:node": "dev-tool run test:vitest",
|
|
98
|
+
"test": "npm run test:node && npm run test:browser",
|
|
99
|
+
"test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser",
|
|
100
|
+
"test:node": "dev-tool run test:vitest",
|
|
101
|
+
"test:node:esm": "dev-tool run test:vitest --esm",
|
|
109
102
|
"update-snippets": "dev-tool run update-snippets"
|
|
110
103
|
},
|
|
111
104
|
"//sampleConfiguration": {
|