@pulumi/auth0 2.22.0 → 2.23.0
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/branding.d.ts +2 -2
- package/client.d.ts +112 -19
- package/client.js +73 -0
- package/client.js.map +1 -1
- package/connection.d.ts +6 -6
- package/connection.js +1 -1
- package/getClient.d.ts +2 -5
- package/getClient.js.map +1 -1
- package/getConnection.d.ts +1 -1
- package/getGlobalClient.d.ts +2 -7
- package/getGlobalClient.js +0 -2
- package/getGlobalClient.js.map +1 -1
- package/getRole.d.ts +0 -3
- package/getRole.js.map +1 -1
- package/getTenant.d.ts +0 -12
- package/globalClient.d.ts +42 -23
- package/globalClient.js +0 -2
- package/globalClient.js.map +1 -1
- package/hook.d.ts +3 -1
- package/hook.js +3 -1
- package/hook.js.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +7 -2
- package/index.js.map +1 -1
- package/organizationMember.d.ts +18 -6
- package/organizationMember.js.map +1 -1
- package/package.json +2 -2
- package/pages.d.ts +124 -0
- package/pages.js +93 -0
- package/pages.js.map +1 -0
- package/resourceServer.d.ts +18 -6
- package/resourceServer.js.map +1 -1
- package/role.d.ts +15 -6
- package/role.js.map +1 -1
- package/rule.d.ts +2 -0
- package/rule.js +2 -0
- package/rule.js.map +1 -1
- package/tenant.d.ts +72 -12
- package/tenant.js.map +1 -1
- package/triggerBinding.d.ts +0 -4
- package/triggerBinding.js +0 -4
- package/triggerBinding.js.map +1 -1
- package/types/input.d.ts +48 -4
- package/types/output.d.ts +47 -6
- package/user.d.ts +21 -8
- package/user.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -334,7 +334,7 @@ export interface BrandingThemeWidget {
|
|
|
334
334
|
}
|
|
335
335
|
export interface BrandingUniversalLogin {
|
|
336
336
|
/**
|
|
337
|
-
* The
|
|
337
|
+
* The html template for the New Universal Login Experience.
|
|
338
338
|
*/
|
|
339
339
|
body: string;
|
|
340
340
|
}
|
|
@@ -868,7 +868,7 @@ export interface ConnectionOptions {
|
|
|
868
868
|
*/
|
|
869
869
|
twilioToken?: string;
|
|
870
870
|
/**
|
|
871
|
-
* Value can be `backChannel` or `frontChannel`.
|
|
871
|
+
* Value can be `backChannel` or `frontChannel`. Front Channel will use OIDC protocol with `response_mode=form_post` and `response_type=id_token`. Back Channel will use `response_type=code`.
|
|
872
872
|
*/
|
|
873
873
|
type?: string;
|
|
874
874
|
/**
|
|
@@ -966,7 +966,7 @@ export interface EmailCredentials {
|
|
|
966
966
|
*/
|
|
967
967
|
apiKey?: string;
|
|
968
968
|
/**
|
|
969
|
-
* API User for your email service.
|
|
969
|
+
* API User for your email service. This field is not accepted by the API any more so it will be removed in a future major version.
|
|
970
970
|
*
|
|
971
971
|
* @deprecated This field is not accepted by the API any more so it will be removed soon.
|
|
972
972
|
*/
|
|
@@ -1642,9 +1642,6 @@ export interface GetTenantFlag {
|
|
|
1642
1642
|
mfaShowFactorListOnEnrollment: boolean;
|
|
1643
1643
|
noDiscloseEnterpriseConnections: boolean;
|
|
1644
1644
|
revokeRefreshTokenGrant: boolean;
|
|
1645
|
-
/**
|
|
1646
|
-
* Configuration settings for Universal Login.
|
|
1647
|
-
*/
|
|
1648
1645
|
universalLogin: boolean;
|
|
1649
1646
|
useScopeDescriptionsForConsent: boolean;
|
|
1650
1647
|
}
|
|
@@ -2111,6 +2108,50 @@ export interface OrganizationConnectionsEnabledConnection {
|
|
|
2111
2108
|
*/
|
|
2112
2109
|
connectionId: string;
|
|
2113
2110
|
}
|
|
2111
|
+
export interface PagesChangePassword {
|
|
2112
|
+
/**
|
|
2113
|
+
* Indicates whether to use the custom Reset Password HTML (`true`) or the default Auth0 page (`false`).
|
|
2114
|
+
*/
|
|
2115
|
+
enabled: boolean;
|
|
2116
|
+
/**
|
|
2117
|
+
* Customized content for the Reset Password page. HTML format with supported [Liquid syntax](https://github.com/Shopify/liquid/wiki/Liquid-for-Designers).
|
|
2118
|
+
*/
|
|
2119
|
+
html: string;
|
|
2120
|
+
}
|
|
2121
|
+
export interface PagesError {
|
|
2122
|
+
/**
|
|
2123
|
+
* Customized content for the Error page. HTML format with supported [Liquid syntax](https://github.com/Shopify/liquid/wiki/Liquid-for-Designers).
|
|
2124
|
+
*/
|
|
2125
|
+
html?: string;
|
|
2126
|
+
/**
|
|
2127
|
+
* Indicates whether to show the link to logs as part of the default error page.
|
|
2128
|
+
*/
|
|
2129
|
+
showLogLink: boolean;
|
|
2130
|
+
/**
|
|
2131
|
+
* URL to redirect to when an error occurs, instead of showing the default error page.
|
|
2132
|
+
*/
|
|
2133
|
+
url?: string;
|
|
2134
|
+
}
|
|
2135
|
+
export interface PagesGuardianMfa {
|
|
2136
|
+
/**
|
|
2137
|
+
* Indicates whether to use the custom Guardian MFA HTML (`true`) or the default Auth0 page (`false`).
|
|
2138
|
+
*/
|
|
2139
|
+
enabled: boolean;
|
|
2140
|
+
/**
|
|
2141
|
+
* Customized content for the Guardian MFA page. HTML format with supported [Liquid syntax](https://github.com/Shopify/liquid/wiki/Liquid-for-Designers).
|
|
2142
|
+
*/
|
|
2143
|
+
html: string;
|
|
2144
|
+
}
|
|
2145
|
+
export interface PagesLogin {
|
|
2146
|
+
/**
|
|
2147
|
+
* Indicates whether to use the custom Login page HTML (`true`) or the default Auth0 page (`false`).
|
|
2148
|
+
*/
|
|
2149
|
+
enabled: boolean;
|
|
2150
|
+
/**
|
|
2151
|
+
* Customized content for the Login page. HTML format with supported [Liquid syntax](https://github.com/Shopify/liquid/wiki/Liquid-for-Designers).
|
|
2152
|
+
*/
|
|
2153
|
+
html: string;
|
|
2154
|
+
}
|
|
2114
2155
|
export interface ResourceServerScope {
|
|
2115
2156
|
/**
|
|
2116
2157
|
* Description of the permission (scope).
|
package/user.d.ts
CHANGED
|
@@ -89,7 +89,9 @@ export declare class User extends pulumi.CustomResource {
|
|
|
89
89
|
*/
|
|
90
90
|
readonly password: pulumi.Output<string | undefined>;
|
|
91
91
|
/**
|
|
92
|
-
* List of API permissions granted to the user.
|
|
92
|
+
* List of API permissions granted to the user. Reading permissions through this attribute is deprecated and it will be removed in a future major version. Use the `auth0.User` data source instead.
|
|
93
|
+
*
|
|
94
|
+
* @deprecated Reading permissions through this attribute is deprecated and it will be removed in a future major version. Use the `auth0_user` data source instead.
|
|
93
95
|
*/
|
|
94
96
|
readonly permissions: pulumi.Output<outputs.UserPermission[]>;
|
|
95
97
|
/**
|
|
@@ -105,9 +107,12 @@ export declare class User extends pulumi.CustomResource {
|
|
|
105
107
|
*/
|
|
106
108
|
readonly picture: pulumi.Output<string>;
|
|
107
109
|
/**
|
|
108
|
-
* Set of IDs of roles assigned to the user.
|
|
110
|
+
* Set of IDs of roles assigned to the user. Managing roles through this attribute is deprecated and it will be removed in
|
|
111
|
+
* a future major version. Migrate to the `auth0_user_roles` or the `auth0_user_role` resource to manage user roles
|
|
112
|
+
* instead. Check the [MIGRATION
|
|
113
|
+
* GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#user-roles) on how to do that.
|
|
109
114
|
*
|
|
110
|
-
* @deprecated Managing roles through this attribute is deprecated and it will be
|
|
115
|
+
* @deprecated Managing roles through this attribute is deprecated and it will be removed in a future major version. Migrate to the `auth0_user_roles` or the `auth0_user_role` resource to manage user roles instead. Check the [MIGRATION GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#user-roles) on how to do that.
|
|
111
116
|
*/
|
|
112
117
|
readonly roles: pulumi.Output<string[] | undefined>;
|
|
113
118
|
/**
|
|
@@ -180,7 +185,9 @@ export interface UserState {
|
|
|
180
185
|
*/
|
|
181
186
|
password?: pulumi.Input<string>;
|
|
182
187
|
/**
|
|
183
|
-
* List of API permissions granted to the user.
|
|
188
|
+
* List of API permissions granted to the user. Reading permissions through this attribute is deprecated and it will be removed in a future major version. Use the `auth0.User` data source instead.
|
|
189
|
+
*
|
|
190
|
+
* @deprecated Reading permissions through this attribute is deprecated and it will be removed in a future major version. Use the `auth0_user` data source instead.
|
|
184
191
|
*/
|
|
185
192
|
permissions?: pulumi.Input<pulumi.Input<inputs.UserPermission>[]>;
|
|
186
193
|
/**
|
|
@@ -196,9 +203,12 @@ export interface UserState {
|
|
|
196
203
|
*/
|
|
197
204
|
picture?: pulumi.Input<string>;
|
|
198
205
|
/**
|
|
199
|
-
* Set of IDs of roles assigned to the user.
|
|
206
|
+
* Set of IDs of roles assigned to the user. Managing roles through this attribute is deprecated and it will be removed in
|
|
207
|
+
* a future major version. Migrate to the `auth0_user_roles` or the `auth0_user_role` resource to manage user roles
|
|
208
|
+
* instead. Check the [MIGRATION
|
|
209
|
+
* GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#user-roles) on how to do that.
|
|
200
210
|
*
|
|
201
|
-
* @deprecated Managing roles through this attribute is deprecated and it will be
|
|
211
|
+
* @deprecated Managing roles through this attribute is deprecated and it will be removed in a future major version. Migrate to the `auth0_user_roles` or the `auth0_user_role` resource to manage user roles instead. Check the [MIGRATION GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#user-roles) on how to do that.
|
|
202
212
|
*/
|
|
203
213
|
roles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
204
214
|
/**
|
|
@@ -275,9 +285,12 @@ export interface UserArgs {
|
|
|
275
285
|
*/
|
|
276
286
|
picture?: pulumi.Input<string>;
|
|
277
287
|
/**
|
|
278
|
-
* Set of IDs of roles assigned to the user.
|
|
288
|
+
* Set of IDs of roles assigned to the user. Managing roles through this attribute is deprecated and it will be removed in
|
|
289
|
+
* a future major version. Migrate to the `auth0_user_roles` or the `auth0_user_role` resource to manage user roles
|
|
290
|
+
* instead. Check the [MIGRATION
|
|
291
|
+
* GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#user-roles) on how to do that.
|
|
279
292
|
*
|
|
280
|
-
* @deprecated Managing roles through this attribute is deprecated and it will be
|
|
293
|
+
* @deprecated Managing roles through this attribute is deprecated and it will be removed in a future major version. Migrate to the `auth0_user_roles` or the `auth0_user_role` resource to manage user roles instead. Check the [MIGRATION GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#user-roles) on how to do that.
|
|
281
294
|
*/
|
|
282
295
|
roles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
283
296
|
/**
|
package/user.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.js","sourceRoot":"","sources":["../user.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,MAAa,IAAK,SAAQ,MAAM,CAAC,cAAc;IAC3C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiB,EAAE,IAAmC;QAC/G,OAAO,IAAI,IAAI,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC3D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,IAAI,CAAC,YAAY,CAAC;IACrD,CAAC;
|
|
1
|
+
{"version":3,"file":"user.js","sourceRoot":"","sources":["../user.ts"],"names":[],"mappings":"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"}
|