@pulumi/auth0 3.8.0 → 3.8.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/connection.d.ts CHANGED
@@ -391,7 +391,7 @@ import * as outputs from "./types/output";
391
391
  * clientId: "123456",
392
392
  * clientSecret: "123456",
393
393
  * strategyVersion: 2,
394
- * userIdAttribute: "userName",
394
+ * userIdAttribute: "oid",
395
395
  * appId: "app-id-123",
396
396
  * tenantDomain: "example.onmicrosoft.com",
397
397
  * domain: "example.onmicrosoft.com",
package/connection.js CHANGED
@@ -395,7 +395,7 @@ const utilities = require("./utilities");
395
395
  * clientId: "123456",
396
396
  * clientSecret: "123456",
397
397
  * strategyVersion: 2,
398
- * userIdAttribute: "userName",
398
+ * userIdAttribute: "oid",
399
399
  * appId: "app-id-123",
400
400
  * tenantDomain: "example.onmicrosoft.com",
401
401
  * domain: "example.onmicrosoft.com",
package/getForm.d.ts CHANGED
@@ -10,7 +10,7 @@ import * as outputs from "./types/output";
10
10
  * import * as auth0 from "@pulumi/auth0";
11
11
  *
12
12
  * // An Auth0 form loaded using its ID.
13
- * const myFormData = auth0.getFlow({
13
+ * const myFormData = auth0.getForm({
14
14
  * id: "ap_31LxRJphZF1Kqzf2zBgmgA",
15
15
  * });
16
16
  * ```
@@ -76,7 +76,7 @@ export interface GetFormResult {
76
76
  * import * as auth0 from "@pulumi/auth0";
77
77
  *
78
78
  * // An Auth0 form loaded using its ID.
79
- * const myFormData = auth0.getFlow({
79
+ * const myFormData = auth0.getForm({
80
80
  * id: "ap_31LxRJphZF1Kqzf2zBgmgA",
81
81
  * });
82
82
  * ```
package/getForm.js CHANGED
@@ -15,7 +15,7 @@ const utilities = require("./utilities");
15
15
  * import * as auth0 from "@pulumi/auth0";
16
16
  *
17
17
  * // An Auth0 form loaded using its ID.
18
- * const myFormData = auth0.getFlow({
18
+ * const myFormData = auth0.getForm({
19
19
  * id: "ap_31LxRJphZF1Kqzf2zBgmgA",
20
20
  * });
21
21
  * ```
@@ -37,7 +37,7 @@ exports.getForm = getForm;
37
37
  * import * as auth0 from "@pulumi/auth0";
38
38
  *
39
39
  * // An Auth0 form loaded using its ID.
40
- * const myFormData = auth0.getFlow({
40
+ * const myFormData = auth0.getForm({
41
41
  * id: "ap_31LxRJphZF1Kqzf2zBgmgA",
42
42
  * });
43
43
  * ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/auth0",
3
- "version": "3.8.0",
3
+ "version": "3.8.1",
4
4
  "description": "A Pulumi package for creating and managing auth0 cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "auth0",
26
- "version": "3.8.0"
26
+ "version": "3.8.1"
27
27
  }
28
28
  }