@azure/arm-managedapplications 30.0.0-alpha.20210806.1 → 30.0.0-alpha.20210930.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/CHANGELOG.md +18 -0
- package/README.md +2 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/esm/applicationClientContext.js +1 -1
- package/package.json +2 -2
- package/src/applicationClientContext.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
# Release History
|
|
2
|
+
|
|
3
|
+
## 30.0.0-beta.3 (Unreleased)
|
|
4
|
+
|
|
5
|
+
### Features Added
|
|
6
|
+
|
|
7
|
+
### Breaking Changes
|
|
8
|
+
|
|
9
|
+
### Bugs Fixed
|
|
10
|
+
|
|
11
|
+
### Other Changes
|
|
12
|
+
|
|
13
|
+
## 30.0.0-beta.2 (2021-09-06)
|
|
14
|
+
|
|
15
|
+
**Bug Fixes**
|
|
16
|
+
|
|
17
|
+
- fix homepage issues
|
|
18
|
+
|
|
1
19
|
## 30.0.0-beta.1 (2021-07-15)
|
|
2
20
|
|
|
3
21
|
This is the first preview for the new version of the `@azure/arm-managedapplications` package that follows the new [guidelines for TypeScript SDKs](https://azure.github.io/azure-sdk/typescript_introduction.html) for Azure services.
|
package/README.md
CHANGED
|
@@ -47,7 +47,8 @@ Set the values of the client ID, tenant ID, and client secret of the AAD applica
|
|
|
47
47
|
```javascript
|
|
48
48
|
const { ApplicationClient } = require("@azure/arm-managedapplications");
|
|
49
49
|
const { DefaultAzureCredential } = require("@azure/identity");
|
|
50
|
-
const
|
|
50
|
+
const subscriptionId = "00000000-0000-0000-0000-000000000000";
|
|
51
|
+
const client = new ApplicationClient(new DefaultAzureCredential(), subscriptionId);
|
|
51
52
|
```
|
|
52
53
|
|
|
53
54
|
## Key concepts
|
package/dist/index.js
CHANGED
|
@@ -2689,7 +2689,7 @@ class ApplicationClientContext extends coreClient.ServiceClient {
|
|
|
2689
2689
|
requestContentType: "application/json; charset=utf-8",
|
|
2690
2690
|
credential: credentials
|
|
2691
2691
|
};
|
|
2692
|
-
const packageDetails = `azsdk-js-arm-managedapplications/30.0.0-beta.
|
|
2692
|
+
const packageDetails = `azsdk-js-arm-managedapplications/30.0.0-beta.2`;
|
|
2693
2693
|
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
2694
2694
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
|
2695
2695
|
: `${packageDetails}`;
|