akeyless-client-commons 1.0.64 → 1.0.66

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.
@@ -131,7 +131,7 @@ declare const cleanNxSites: () => Promise<void>;
131
131
  declare const getUserByPhone: (phone: string) => Promise<TObject<any>>;
132
132
  declare const getUserByEmail: (email: string) => Promise<TObject<any>>;
133
133
  declare const getUserByIdentifier: (identifier: string) => Promise<TObject<any>>;
134
- declare const addLoginAudit: (user: any, app: "installer" | "toolbox" | "dashboard", loginBy: "email" | "phone") => Promise<void>;
134
+ declare const addLoginAudit: (user: NxUser | null, app: "installer" | "toolbox" | "dashboard", loginBy: "google" | "phone") => Promise<void>;
135
135
  declare const addAuditRecord: (action: string, entity: string, details: TObject<any>, user?: NxUser | null) => Promise<{
136
136
  action: string;
137
137
  entity: string;
@@ -131,7 +131,7 @@ declare const cleanNxSites: () => Promise<void>;
131
131
  declare const getUserByPhone: (phone: string) => Promise<TObject<any>>;
132
132
  declare const getUserByEmail: (email: string) => Promise<TObject<any>>;
133
133
  declare const getUserByIdentifier: (identifier: string) => Promise<TObject<any>>;
134
- declare const addLoginAudit: (user: any, app: "installer" | "toolbox" | "dashboard", loginBy: "email" | "phone") => Promise<void>;
134
+ declare const addLoginAudit: (user: NxUser | null, app: "installer" | "toolbox" | "dashboard", loginBy: "google" | "phone") => Promise<void>;
135
135
  declare const addAuditRecord: (action: string, entity: string, details: TObject<any>, user?: NxUser | null) => Promise<{
136
136
  action: string;
137
137
  entity: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akeyless-client-commons",
3
- "version": "1.0.64",
3
+ "version": "1.0.66",
4
4
  "scripts": {
5
5
  "build": "tsup",
6
6
  "deploy": "npm run build && npm version patch --no-git-tag-version && npm publish",