Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies (#1064)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: catherine meng <[email protected]>
  • Loading branch information
renovate[bot] and MCatherine1994 authored Jan 8, 2024
1 parent 8d510c0 commit d12913f
Show file tree
Hide file tree
Showing 20 changed files with 3,020 additions and 17,361 deletions.
2 changes: 1 addition & 1 deletion client-code-gen/app-access-control-openapi.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


/**
* An enumeration.
*
* @export
* @enum {string}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ export interface FamApplicationRole {
* @type {string}
* @memberof FamApplicationRole
*/
'role_purpose'?: string;
'role_purpose'?: string | null;
/**
*
* @type {number}
* @memberof FamApplicationRole
*/
'parent_role_id'?: number;
'parent_role_id'?: number | null;
/**
*
* @type {number}
Expand All @@ -55,7 +55,7 @@ export interface FamApplicationRole {
* @type {string}
* @memberof FamApplicationRole
*/
'forest_client_number'?: string;
'forest_client_number'?: string | null;
/**
*
* @type {string}
Expand All @@ -73,7 +73,7 @@ export interface FamApplicationRole {
* @type {FamForestClientCreate}
* @memberof FamApplicationRole
*/
'client_number'?: FamForestClientCreate;
'client_number'?: FamForestClientCreate | null;
/**
*
* @type {number}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export interface FamApplicationUserRoleAssignmentGet {
* @type {number}
* @memberof FamApplicationUserRoleAssignmentGet
*/
'application_id'?: number;
'application_id'?: number | null;
/**
*
* @type {FamUserOnlyName}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ export interface FamApplication {
* @type {number}
* @memberof FamApplication
*/
'application_client_id'?: number;
'application_client_id'?: number | null;
/**
*
* @type {AppEnv}
* @memberof FamApplication
*/
'app_environment'?: AppEnv;
'app_environment'?: AppEnv | null;
/**
*
* @type {number}
Expand All @@ -70,13 +70,13 @@ export interface FamApplication {
* @type {string}
* @memberof FamApplication
*/
'update_user'?: string;
'update_user'?: string | null;
/**
*
* @type {string}
* @memberof FamApplication
*/
'update_date'?: string;
'update_date'?: string | null;
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


/**
* An enumeration.
*
* @export
* @enum {string}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export interface FamForestClient {
* @type {string}
* @memberof FamForestClient
*/
'client_name'?: string;
'client_name'?: string | null;
/**
*
* @type {string}
Expand All @@ -40,6 +40,6 @@ export interface FamForestClient {
* @type {FamForestClientStatus}
* @memberof FamForestClient
*/
'status'?: FamForestClientStatus;
'status'?: FamForestClientStatus | null;
}

Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ export interface FamRoleWithClient {
* @type {string}
* @memberof FamRoleWithClient
*/
'role_purpose'?: string;
'role_purpose'?: string | null;
/**
*
* @type {number}
* @memberof FamRoleWithClient
*/
'parent_role_id'?: number;
'parent_role_id'?: number | null;
/**
*
* @type {number}
Expand All @@ -58,7 +58,7 @@ export interface FamRoleWithClient {
* @type {string}
* @memberof FamRoleWithClient
*/
'forest_client_number'?: string;
'forest_client_number'?: string | null;
/**
*
* @type {string}
Expand All @@ -76,7 +76,7 @@ export interface FamRoleWithClient {
* @type {FamForestClient}
* @memberof FamRoleWithClient
*/
'client_number'?: FamForestClient;
'client_number'?: FamForestClient | null;
/**
*
* @type {number}
Expand All @@ -88,7 +88,7 @@ export interface FamRoleWithClient {
* @type {FamRoleMin}
* @memberof FamRoleWithClient
*/
'parent_role'?: FamRoleMin;
'parent_role'?: FamRoleMin | null;
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export interface FamUserOnlyName {
* @type {string}
* @memberof FamUserOnlyName
*/
'cognito_user_id'?: string;
'cognito_user_id'?: string | null;
/**
*
* @type {string}
Expand All @@ -49,7 +49,7 @@ export interface FamUserOnlyName {
* @type {string}
* @memberof FamUserOnlyName
*/
'user_guid'?: string;
'user_guid'?: string | null;
/**
*
* @type {string}
Expand All @@ -61,7 +61,7 @@ export interface FamUserOnlyName {
* @type {string}
* @memberof FamUserOnlyName
*/
'update_user'?: string;
'update_user'?: string | null;
/**
*
* @type {FamUserType}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export interface FamUserRoleAssignmentCreate {
* @type {string}
* @memberof FamUserRoleAssignmentCreate
*/
'forest_client_number'?: string;
'forest_client_number'?: string | null;
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ export interface IdimProxyIdirInfo {
* @type {string}
* @memberof IdimProxyIdirInfo
*/
'userId'?: string;
'userId'?: string | null;
/**
*
* @type {string}
* @memberof IdimProxyIdirInfo
*/
'displayName'?: string;
'displayName'?: string | null;
}

Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


/**
* An enumeration.
*
* @export
* @enum {string}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


/**
* An enumeration.
*
* @export
* @enum {string}
*/
Expand Down
Loading

0 comments on commit d12913f

Please sign in to comment.