nb-js-client 0.0.47 → 0.0.49
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/index.d.ts +2 -1
- package/dist/types/user-log.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -809,11 +809,12 @@ interface Restriction {
|
|
|
809
809
|
interface UsersLog {
|
|
810
810
|
create_date: string;
|
|
811
811
|
service_name: string;
|
|
812
|
-
|
|
812
|
+
user_id: number;
|
|
813
813
|
event_type: string;
|
|
814
814
|
action: string;
|
|
815
815
|
resource: string;
|
|
816
816
|
description: string;
|
|
817
|
+
ip: string;
|
|
817
818
|
}
|
|
818
819
|
|
|
819
820
|
interface StorageTrashElement {
|
package/dist/types/user-log.d.ts
CHANGED