Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #1064

Merged
merged 3 commits into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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