@azure/arm-impactreporting 1.0.0-alpha.20250410.1 → 1.0.0-alpha.20250505.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 +3 -3
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.20250505.1",
|
|
4
4
|
"description": "A generated SDK for ImpactClient.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18.0.0"
|
|
@@ -98,9 +98,9 @@
|
|
|
98
98
|
"integration-test:node": "echo skipped",
|
|
99
99
|
"lint": "echo skipped",
|
|
100
100
|
"lint:fix": "echo skipped",
|
|
101
|
-
"minify": "
|
|
101
|
+
"minify": "echo skipped",
|
|
102
102
|
"pack": "npm pack 2>&1",
|
|
103
|
-
"test": "npm run clean && dev-tool run build-package && npm run unit-test:node &&
|
|
103
|
+
"test": "npm run clean && dev-tool run build-package && npm run unit-test:node && npm run unit-test:browser && npm run integration-test",
|
|
104
104
|
"test:browser": "npm run clean && npm run build:test && npm run unit-test:browser && npm run integration-test:browser",
|
|
105
105
|
"test:node": "npm run clean && dev-tool run build-package && npm run unit-test:node && npm run integration-test:node",
|
|
106
106
|
"unit-test": "npm run unit-test:node && npm run unit-test:browser",
|