akeyless-client-commons 1.0.70 → 1.0.71
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.
package/dist/components/index.js
CHANGED
|
@@ -1048,7 +1048,9 @@ var addAuditRecord = /*#__PURE__*/ function() {
|
|
|
1048
1048
|
user: user ? {
|
|
1049
1049
|
id: user.id,
|
|
1050
1050
|
name: "".concat(user.first_name || "", " ").concat(user.last_name || "").trim(),
|
|
1051
|
-
clients: user.clients
|
|
1051
|
+
clients: user.clients,
|
|
1052
|
+
email: user.email,
|
|
1053
|
+
phone_number: user.phone_number
|
|
1052
1054
|
} : null
|
|
1053
1055
|
};
|
|
1054
1056
|
return [
|
|
@@ -847,7 +847,9 @@ var addAuditRecord = /*#__PURE__*/ function() {
|
|
|
847
847
|
user: user ? {
|
|
848
848
|
id: user.id,
|
|
849
849
|
name: "".concat(user.first_name || "", " ").concat(user.last_name || "").trim(),
|
|
850
|
-
clients: user.clients
|
|
850
|
+
clients: user.clients,
|
|
851
|
+
email: user.email,
|
|
852
|
+
phone_number: user.phone_number
|
|
851
853
|
} : null
|
|
852
854
|
};
|
|
853
855
|
return [
|
package/dist/helpers/index.d.mts
CHANGED
|
@@ -143,6 +143,8 @@ declare const addAuditRecord: (action: string, entity: string, details: TObject<
|
|
|
143
143
|
id: string;
|
|
144
144
|
name: string;
|
|
145
145
|
clients: string[];
|
|
146
|
+
email: string;
|
|
147
|
+
phone_number: string;
|
|
146
148
|
};
|
|
147
149
|
}>;
|
|
148
150
|
declare const validateUserStatusAndPermissions: (user: NxUser, app: AppName) => TObject<TObject<boolean>>;
|
package/dist/helpers/index.d.ts
CHANGED
|
@@ -143,6 +143,8 @@ declare const addAuditRecord: (action: string, entity: string, details: TObject<
|
|
|
143
143
|
id: string;
|
|
144
144
|
name: string;
|
|
145
145
|
clients: string[];
|
|
146
|
+
email: string;
|
|
147
|
+
phone_number: string;
|
|
146
148
|
};
|
|
147
149
|
}>;
|
|
148
150
|
declare const validateUserStatusAndPermissions: (user: NxUser, app: AppName) => TObject<TObject<boolean>>;
|
package/dist/helpers/index.js
CHANGED
|
@@ -1741,7 +1741,9 @@ var addAuditRecord = /*#__PURE__*/ function() {
|
|
|
1741
1741
|
user: user ? {
|
|
1742
1742
|
id: user.id,
|
|
1743
1743
|
name: "".concat(user.first_name || "", " ").concat(user.last_name || "").trim(),
|
|
1744
|
-
clients: user.clients
|
|
1744
|
+
clients: user.clients,
|
|
1745
|
+
email: user.email,
|
|
1746
|
+
phone_number: user.phone_number
|
|
1745
1747
|
} : null
|
|
1746
1748
|
};
|
|
1747
1749
|
return [
|
package/dist/helpers/index.mjs
CHANGED
|
@@ -1422,7 +1422,9 @@ var addAuditRecord = /*#__PURE__*/ function() {
|
|
|
1422
1422
|
user: user ? {
|
|
1423
1423
|
id: user.id,
|
|
1424
1424
|
name: "".concat(user.first_name || "", " ").concat(user.last_name || "").trim(),
|
|
1425
|
-
clients: user.clients
|
|
1425
|
+
clients: user.clients,
|
|
1426
|
+
email: user.email,
|
|
1427
|
+
phone_number: user.phone_number
|
|
1426
1428
|
} : null
|
|
1427
1429
|
};
|
|
1428
1430
|
return [
|