@pulumi/auth0 3.2.0-alpha.1706743387 → 3.2.0-alpha.1706825663
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/config/vars.d.ts +2 -2
- package/package.json +1 -1
- package/types/input.d.ts +3 -0
- package/types/output.d.ts +1125 -0
package/config/vars.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Your Auth0 [management api access
|
|
3
3
|
* token](https://auth0.com/docs/security/tokens/access-tokens/management-api-access-tokens). It can also be sourced from
|
|
4
|
-
* the `AUTH0_API_TOKEN` environment variable. It can be used instead of `
|
|
5
|
-
* specified, `
|
|
4
|
+
* the `AUTH0_API_TOKEN` environment variable. It can be used instead of `clientId` + `clientSecret`. If both are
|
|
5
|
+
* specified, `apiToken` will be used over `clientId` + `clientSecret` fields.
|
|
6
6
|
*/
|
|
7
7
|
export declare const apiToken: string | undefined;
|
|
8
8
|
/**
|
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -1532,6 +1532,9 @@ export interface ConnectionOptionsValidationUsername {
|
|
|
1532
1532
|
min?: pulumi.Input<number>;
|
|
1533
1533
|
}
|
|
1534
1534
|
export interface CustomDomainVerification {
|
|
1535
|
+
/**
|
|
1536
|
+
* Verification methods for the domain.
|
|
1537
|
+
*/
|
|
1535
1538
|
methods?: pulumi.Input<any[]>;
|
|
1536
1539
|
}
|
|
1537
1540
|
export interface EmailProviderCredentials {
|