Skip to content

Commit 0aa4a59

Browse files
committed
Custom email provider implementation
1 parent e8b6347 commit 0aa4a59

29 files changed

+4004
-992
lines changed

src/deprecations.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import {
77
EmailProviderUpdateCredentials,
88
ClientCreateOidcLogout,
99
ClientOidcLogout,
10-
ClientUpdateOidcLogout,
1110
PostOrganizations201ResponseEnabledConnectionsInnerConnection,
1211
} from './management/__generated/models/index.js';
1312

@@ -40,9 +39,13 @@ export type ClientCreateOidcBackchannelLogout = ClientCreateOidcLogout;
4039
*/
4140
export type ClientOidcBackchannelLogout = ClientOidcLogout;
4241
/**
43-
* @deprecated Use {@link ClientUpdateOidcLogout} instead.
42+
* @deprecated Use {@link ClientCreateOidcLogout} instead.
43+
*/
44+
export type ClientUpdateOidcBackchannelLogout = ClientCreateOidcLogout;
45+
/**
46+
* @deprecated Use {@link ClientCreateOidcLogout} instead.
4447
*/
45-
export type ClientUpdateOidcBackchannelLogout = ClientUpdateOidcLogout;
48+
export type ClientUpdateOidcLogout = ClientCreateOidcLogout;
4649
/**
4750
* @deprecated use {@link PostOrganizations201ResponseEnabledConnectionsInnerConnection} instead.
4851
*/

src/management/__generated/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import {
55
ActionsManager,
66
AnomalyManager,
77
AttackProtectionManager,
8-
BlacklistsManager,
98
BrandingManager,
109
ClientGrantsManager,
1110
ClientsManager,
@@ -46,7 +45,6 @@ export abstract class ManagementClientBase {
4645
public readonly actions = new ActionsManager(this.configuration);
4746
public readonly anomaly = new AnomalyManager(this.configuration);
4847
public readonly attackProtection = new AttackProtectionManager(this.configuration);
49-
public readonly blacklists = new BlacklistsManager(this.configuration);
5048
public readonly branding = new BrandingManager(this.configuration);
5149
public readonly clientGrants = new ClientGrantsManager(this.configuration);
5250
public readonly clients = new ClientsManager(this.configuration);

src/management/__generated/managers/actions-manager.ts

Lines changed: 11 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ const { BaseAPI } = runtime;
3636
*/
3737
export class ActionsManager extends BaseAPI {
3838
/**
39-
* Deletes an action and all of its associated versions. An action must be unbound from all triggers
40-
* before it can be deleted.
39+
* Deletes an action and all of its associated versions. An action must be unbound from all triggers before it can be deleted.
4140
*
4241
* Delete an action
4342
*
@@ -99,8 +98,7 @@ export class ActionsManager extends BaseAPI {
9998
}
10099

101100
/**
102-
* Retrieve a specific version of an action. An action version is created whenever
103-
* an action is deployed. An action version is immutable, once created.
101+
* Retrieve a specific version of an action. An action version is created whenever an action is deployed. An action version is immutable, once created.
104102
*
105103
* Get a specific version of an action
106104
*
@@ -126,8 +124,7 @@ export class ActionsManager extends BaseAPI {
126124
}
127125

128126
/**
129-
* Retrieve all of an action's versions. An action version is created whenever
130-
* an action is deployed. An action version is immutable, once created.
127+
* Retrieve all of an action's versions. An action version is created whenever an action is deployed. An action version is immutable, once created.
131128
*
132129
* Get an action's versions
133130
*
@@ -216,9 +213,7 @@ export class ActionsManager extends BaseAPI {
216213
}
217214

218215
/**
219-
* Retrieve the actions that are bound to a trigger. Once an action is created and deployed, it must be
220-
* attached (i.e. bound) to a trigger so that it will be executed as part of a flow. The list of actions returned
221-
* reflects the order in which they will be executed during the appropriate flow.
216+
* Retrieve the actions that are bound to a trigger. Once an action is created and deployed, it must be attached (i.e. bound) to a trigger so that it will be executed as part of a flow. The list of actions returned reflects the order in which they will be executed during the appropriate flow.
222217
*
223218
* Get trigger bindings
224219
*
@@ -257,8 +252,7 @@ export class ActionsManager extends BaseAPI {
257252
}
258253

259254
/**
260-
* Retrieve information about a specific execution of a trigger. Relevant execution IDs will be included in tenant logs
261-
* generated as part of that authentication flow. Executions will only be stored for 10 days after their creation.
255+
* Retrieve information about a specific execution of a trigger. Relevant execution IDs will be included in tenant logs generated as part of that authentication flow. Executions will only be stored for 10 days after their creation.
262256
*
263257
* Get an execution
264258
*
@@ -285,8 +279,7 @@ export class ActionsManager extends BaseAPI {
285279
}
286280

287281
/**
288-
* Retrieve the set of triggers currently available within actions. A trigger is an extensibility point to which actions
289-
* can be bound.
282+
* Retrieve the set of triggers currently available within actions. A trigger is an extensibility point to which actions can be bound.
290283
*
291284
* Get triggers
292285
*
@@ -305,8 +298,7 @@ export class ActionsManager extends BaseAPI {
305298
}
306299

307300
/**
308-
* Update an existing action. If this action is currently bound to a trigger, updating it will <strong>not</strong> affect
309-
* any user flows until the action is deployed.
301+
* Update an existing action. If this action is currently bound to a trigger, updating it will <strong>not</strong> affect any user flows until the action is deployed.
310302
*
311303
* Update an action
312304
*
@@ -340,10 +332,7 @@ export class ActionsManager extends BaseAPI {
340332
}
341333

342334
/**
343-
* Update the actions that are bound (i.e. attached) to a trigger. Once an action is created and deployed, it must be
344-
* attached (i.e. bound) to a trigger so that it will be executed as part of a flow. The order in which the actions are
345-
* provided will determine the order in which they are executed.
346-
*
335+
* Update the actions that are bound (i.e. attached) to a trigger. Once an action is created and deployed, it must be attached (i.e. bound) to a trigger so that it will be executed as part of a flow. The order in which the actions are provided will determine the order in which they are executed.
347336
* Update trigger bindings
348337
*
349338
* @throws {RequiredError}
@@ -376,8 +365,7 @@ export class ActionsManager extends BaseAPI {
376365
}
377366

378367
/**
379-
* Create an action. Once an action is created, it must be deployed, and then
380-
* bound to a trigger before it will be executed as part of a flow.
368+
* Create an action. Once an action is created, it must be deployed, and then bound to a trigger before it will be executed as part of a flow.
381369
*
382370
* Create an action
383371
*
@@ -405,8 +393,7 @@ export class ActionsManager extends BaseAPI {
405393
}
406394

407395
/**
408-
* Deploy an action. Deploying an action will create a new immutable version of the action. If the action is
409-
* currently bound to a trigger, then the system will begin executing the newly deployed version of the action immediately. Otherwise, the action will only be executed as a part of a flow once it is bound to that flow.
396+
* Deploy an action. Deploying an action will create a new immutable version of the action. If the action is currently bound to a trigger, then the system will begin executing the newly deployed version of the action immediately. Otherwise, the action will only be executed as a part of a flow once it is bound to that flow.
410397
*
411398
* Deploy an action
412399
*
@@ -433,9 +420,7 @@ export class ActionsManager extends BaseAPI {
433420
}
434421

435422
/**
436-
* Performs the equivalent of a roll-back of an action to an earlier, specified version. Creates a new, deployed
437-
* action version that is identical to the specified version. If this action is currently bound to a trigger, the
438-
* system will begin executing the newly-created version immediately.
423+
* Performs the equivalent of a roll-back of an action to an earlier, specified version. Creates a new, deployed action version that is identical to the specified version. If this action is currently bound to a trigger, the system will begin executing the newly-created version immediately.
439424
*
440425
* Roll back to a previous action version
441426
*

src/management/__generated/managers/anomaly-manager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const { BaseAPI } = runtime;
99
*/
1010
export class AnomalyManager extends BaseAPI {
1111
/**
12-
* Unblock an IP address currently blocked by the <a href="https://auth0.com/docs/configure/attack-protection/suspicious-ip-throttling">Suspicious IP Throttling</a> due to multiple suspicious attempts.
12+
* Remove a block imposed by <a href="https://auth0.com/docs/configure/attack-protection/suspicious-ip-throttling">Suspicious IP Throttling</a> for the given IP address.
1313
* Remove the blocked IP address
1414
*
1515
* @throws {RequiredError}
@@ -35,7 +35,7 @@ export class AnomalyManager extends BaseAPI {
3535
}
3636

3737
/**
38-
* Check if a given IP address is blocked via the <a href="https://auth0.com/docs/configure/attack-protection/suspicious-ip-throttling">Suspicious IP Throttling</a> due to multiple suspicious attempts.
38+
* Check if the given IP address is blocked via the <a href="https://auth0.com/docs/configure/attack-protection/suspicious-ip-throttling">Suspicious IP Throttling</a> due to multiple suspicious attempts.
3939
* Check if an IP address is blocked
4040
*
4141
* @throws {RequiredError}

src/management/__generated/managers/attack-protection-manager.ts

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ const { BaseAPI } = runtime;
1616
*/
1717
export class AttackProtectionManager extends BaseAPI {
1818
/**
19-
* Get breached password detection settings
19+
* Retrieve details of the Breached Password Detection configuration of your tenant.
20+
* Get Breached Password Detection settings
2021
*
2122
* @throws {RequiredError}
2223
*/
@@ -35,7 +36,8 @@ export class AttackProtectionManager extends BaseAPI {
3536
}
3637

3738
/**
38-
* Get the brute force configuration
39+
* Retrieve details of the Brute-force Protection configuration of your tenant.
40+
* Get Brute-force settings
3941
*
4042
* @throws {RequiredError}
4143
*/
@@ -54,7 +56,8 @@ export class AttackProtectionManager extends BaseAPI {
5456
}
5557

5658
/**
57-
* Get the suspicious IP throttling configuration
59+
* Retrieve details of the Suspicious IP Throttling configuration of your tenant.
60+
* Get Suspicious IP Throttling settings
5861
*
5962
* @throws {RequiredError}
6063
*/
@@ -73,7 +76,8 @@ export class AttackProtectionManager extends BaseAPI {
7376
}
7477

7578
/**
76-
* Update breached password detection settings
79+
* Update details of the Breached Password Detection configuration of your tenant.
80+
* Update Breached Password Detection settings
7781
*
7882
* @throws {RequiredError}
7983
*/
@@ -99,7 +103,8 @@ export class AttackProtectionManager extends BaseAPI {
99103
}
100104

101105
/**
102-
* Update the brute force configuration
106+
* Update the Brute-force Protection configuration of your tenant.
107+
* Update Brute-force settings
103108
*
104109
* @throws {RequiredError}
105110
*/
@@ -125,7 +130,8 @@ export class AttackProtectionManager extends BaseAPI {
125130
}
126131

127132
/**
128-
* Update the suspicious IP throttling configuration
133+
* Update the details of the Suspicious IP Throttling configuration of your tenant.
134+
* Update Suspicious IP Throttling settings
129135
*
130136
* @throws {RequiredError}
131137
*/

src/management/__generated/managers/blacklists-manager.ts

Lines changed: 0 additions & 67 deletions
This file was deleted.

0 commit comments

Comments
 (0)