@connectedxm/admin 1.4.10 → 1.4.11
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.mts +6 -13
- package/dist/index.d.ts +6 -13
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -266,30 +266,23 @@ interface BaseAPILog {
|
|
|
266
266
|
status: "success" | "failure";
|
|
267
267
|
statusCode: number;
|
|
268
268
|
response: string | null;
|
|
269
|
+
path: string;
|
|
270
|
+
method: string;
|
|
271
|
+
deviceType: string | null;
|
|
272
|
+
ipaddress: string;
|
|
273
|
+
country: string;
|
|
274
|
+
createdAt: string;
|
|
269
275
|
}
|
|
270
276
|
interface APILog extends BaseAPILog {
|
|
271
|
-
id: string;
|
|
272
|
-
account: BaseAccount | null;
|
|
273
|
-
user: BaseUser | null;
|
|
274
|
-
source: "admin" | "client";
|
|
275
|
-
status: "success" | "failure";
|
|
276
|
-
statusCode: number;
|
|
277
|
-
response: string | null;
|
|
278
277
|
headers: object | null;
|
|
279
|
-
method: string;
|
|
280
|
-
path: string;
|
|
281
278
|
params: object | null;
|
|
282
279
|
query: object | null;
|
|
283
280
|
body: object | null;
|
|
284
|
-
ipaddress: string;
|
|
285
|
-
country: string;
|
|
286
|
-
createdAt: string;
|
|
287
281
|
updatedAt: string;
|
|
288
282
|
architecture: string | null;
|
|
289
283
|
browser: string | null;
|
|
290
284
|
browserVersion: string | null;
|
|
291
285
|
deviceModel: string | null;
|
|
292
|
-
deviceType: string | null;
|
|
293
286
|
deviceVendor: string | null;
|
|
294
287
|
engine: string | null;
|
|
295
288
|
engineVersion: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -266,30 +266,23 @@ interface BaseAPILog {
|
|
|
266
266
|
status: "success" | "failure";
|
|
267
267
|
statusCode: number;
|
|
268
268
|
response: string | null;
|
|
269
|
+
path: string;
|
|
270
|
+
method: string;
|
|
271
|
+
deviceType: string | null;
|
|
272
|
+
ipaddress: string;
|
|
273
|
+
country: string;
|
|
274
|
+
createdAt: string;
|
|
269
275
|
}
|
|
270
276
|
interface APILog extends BaseAPILog {
|
|
271
|
-
id: string;
|
|
272
|
-
account: BaseAccount | null;
|
|
273
|
-
user: BaseUser | null;
|
|
274
|
-
source: "admin" | "client";
|
|
275
|
-
status: "success" | "failure";
|
|
276
|
-
statusCode: number;
|
|
277
|
-
response: string | null;
|
|
278
277
|
headers: object | null;
|
|
279
|
-
method: string;
|
|
280
|
-
path: string;
|
|
281
278
|
params: object | null;
|
|
282
279
|
query: object | null;
|
|
283
280
|
body: object | null;
|
|
284
|
-
ipaddress: string;
|
|
285
|
-
country: string;
|
|
286
|
-
createdAt: string;
|
|
287
281
|
updatedAt: string;
|
|
288
282
|
architecture: string | null;
|
|
289
283
|
browser: string | null;
|
|
290
284
|
browserVersion: string | null;
|
|
291
285
|
deviceModel: string | null;
|
|
292
|
-
deviceType: string | null;
|
|
293
286
|
deviceVendor: string | null;
|
|
294
287
|
engine: string | null;
|
|
295
288
|
engineVersion: string | null;
|