@pulumi/azuread 5.47.0 → 5.48.0-alpha.1703039867

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/application.d.ts CHANGED
@@ -15,7 +15,7 @@ import * as outputs from "./types/output";
15
15
  * const example = new azuread.Application("example", {
16
16
  * displayName: "example",
17
17
  * identifierUris: ["api://example-app"],
18
- * logoImage: Buffer.from(fs.readFileSync("/path/to/logo.png"), 'binary').toString('base64'),
18
+ * logoImage: Buffer.from(fs.readFileSync("/path/to/logo.png", 'binary')).toString('base64'),
19
19
  * owners: [current.then(current => current.objectId)],
20
20
  * signInAudience: "AzureADMultipleOrgs",
21
21
  * api: {
package/application.js CHANGED
@@ -19,7 +19,7 @@ const utilities = require("./utilities");
19
19
  * const example = new azuread.Application("example", {
20
20
  * displayName: "example",
21
21
  * identifierUris: ["api://example-app"],
22
- * logoImage: Buffer.from(fs.readFileSync("/path/to/logo.png"), 'binary').toString('base64'),
22
+ * logoImage: Buffer.from(fs.readFileSync("/path/to/logo.png", 'binary')).toString('base64'),
23
23
  * owners: [current.then(current => current.objectId)],
24
24
  * signInAudience: "AzureADMultipleOrgs",
25
25
  * api: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/azuread",
3
- "version": "v5.47.0",
3
+ "version": "v5.48.0-alpha.1703039867+7659e1b3",
4
4
  "description": "A Pulumi package for creating and managing Azure Active Directory (Azure AD) cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",