Skip to content

Commit 5e6a7cf

Browse files
committed
merge es-db-search to master
1 parent 63b8b9a commit 5e6a7cf

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

build.savant

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
savantVersion = "1.0.0"
1717

18-
project(group: "io.fusionauth", name: "fusionauth-typescript-client", version: "1.15.8", licenses: ["ApacheV2_0"]) {
18+
project(group: "io.fusionauth", name: "fusionauth-typescript-client", version: "1.16.0", licenses: ["ApacheV2_0"]) {
1919
workflow {
2020
standard()
2121
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fusionauth/typescript-client",
3-
"version": "1.15.8",
3+
"version": "1.16.0",
44
"description": "A typescript implementation of the FusionAuth client.",
55
"main": "build/index.js",
66
"types": "build/index.d.ts",

src/FusionAuthClient.ts

+26
Original file line numberDiff line numberDiff line change
@@ -3942,6 +3942,8 @@ export interface EmailAddress {
39423942
* @author Brian Pontarelli
39433943
*/
39443944
export interface EmailConfiguration {
3945+
defaultFromEmail?: string;
3946+
defaultFromName?: string;
39453947
forgotPasswordEmailTemplateId?: UUID;
39463948
host?: string;
39473949
password?: string;
@@ -4139,6 +4141,7 @@ export enum EventType {
41394141
UserReactivate = "user.reactivate",
41404142
UserAction = "user.action",
41414143
JWTRefreshTokenRevoke = "jwt.refresh-token.revoke",
4144+
JWTRefresh = "jwt.refresh",
41424145
JWTPublicKeyUpdate = "jwt.public-key.update",
41434146
UserLoginSuccess = "user.login.success",
41444147
UserLoginFailed = "user.login.failed",
@@ -4702,6 +4705,19 @@ export interface JWTPublicKeyUpdateEvent extends BaseEvent {
47024705
applicationIds?: Array<UUID>;
47034706
}
47044707

4708+
/**
4709+
* Models the JWT Refresh Event. This event will be fired when a JWT is "refreshed" (generated) using a Refresh Token.
4710+
*
4711+
* @author Daniel DeGroff
4712+
*/
4713+
export interface JWTRefreshEvent extends BaseEvent {
4714+
applicationId?: UUID;
4715+
original?: string;
4716+
refreshToken?: string;
4717+
token?: string;
4718+
userId?: UUID;
4719+
}
4720+
47054721
/**
47064722
* Models the Refresh Token Revoke Event (and can be converted to JSON). This event might be for a single token, a user
47074723
* or an entire application.
@@ -5347,6 +5363,7 @@ export interface RecentLoginResponse {
53475363
*/
53485364
export interface RefreshRequest {
53495365
refreshToken?: string;
5366+
token?: string;
53505367
}
53515368

53525369
/**
@@ -5413,6 +5430,7 @@ export interface RegistrationRequest {
54135430
*/
54145431
export interface RegistrationResponse {
54155432
registration?: UserRegistration;
5433+
token?: string;
54165434
user?: User;
54175435
}
54185436

@@ -5614,6 +5632,13 @@ export interface SystemConfigurationResponse {
56145632
systemConfiguration?: SystemConfiguration;
56155633
}
56165634

5635+
/**
5636+
* @author Daniel DeGroff
5637+
*/
5638+
export interface SystemLogsExportRequest extends BaseExportRequest {
5639+
lastNBytes?: number;
5640+
}
5641+
56175642
export interface Templates {
56185643
emailComplete?: string;
56195644
emailSend?: string;
@@ -6325,6 +6350,7 @@ export interface UserRequest {
63256350
* @author Brian Pontarelli
63266351
*/
63276352
export interface UserResponse {
6353+
token?: string;
63286354
user?: User;
63296355
}
63306356

0 commit comments

Comments
 (0)