nucleus-core-ts 0.8.56 → 0.8.58
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.
|
@@ -81,7 +81,8 @@ export function SetPasswordForm({ passwordChangeAction, passwordSetAction, isInv
|
|
|
81
81
|
passwordChangeAction.start({
|
|
82
82
|
payload: {
|
|
83
83
|
currentPassword: "",
|
|
84
|
-
newPassword: store.newPassword
|
|
84
|
+
newPassword: store.newPassword,
|
|
85
|
+
confirmPassword: store.confirmPassword
|
|
85
86
|
},
|
|
86
87
|
onAfterHandle,
|
|
87
88
|
onErrorHandle
|
|
@@ -981,7 +981,7 @@ export type LiveMonitoringChangeSettingsPayload = _LiveMonitoringChangeSettingsP
|
|
|
981
981
|
export type LiveMonitoringStreamSnapshot = _LiveMonitoringStreamSnapshot;
|
|
982
982
|
export type LiveMonitoringStreamUpdate = _LiveMonitoringStreamUpdate;
|
|
983
983
|
export type LiveMonitoringLogsResponse = _LiveMonitoringLogsResponse;
|
|
984
|
-
export
|
|
984
|
+
export type MonitoringEndpointDefinitions = {
|
|
985
985
|
MONITORING_HEALTH_CHECK: EndpointDefinition<undefined, {
|
|
986
986
|
status: string;
|
|
987
987
|
timestamp: number;
|
|
@@ -990,7 +990,7 @@ export interface MonitoringEndpointDefinitions {
|
|
|
990
990
|
MONITORING_GET_SETTINGS: EndpointDefinition<undefined, LiveMonitoringSettingsResponse, BaseErrorResponse>;
|
|
991
991
|
MONITORING_CHANGE_SETTINGS: EndpointDefinition<LiveMonitoringChangeSettingsPayload, LiveMonitoringSettingsResponse, BaseErrorResponse>;
|
|
992
992
|
MONITORING_GET_LOGS: EndpointDefinition<undefined, LiveMonitoringLogsResponse, BaseErrorResponse>;
|
|
993
|
-
}
|
|
993
|
+
};
|
|
994
994
|
export declare const MONITORING_ENDPOINT_CONFIGS: {
|
|
995
995
|
healthCheck: {
|
|
996
996
|
key: "MONITORING_HEALTH_CHECK";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nucleus-core-ts",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.58",
|
|
4
4
|
"description": "Production-ready, enterprise-grade TypeScript framework for building multi-tenant APIs",
|
|
5
5
|
"author": "Hidayet Can Özcan <hidayetcan@gmail.com>",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|