@authenty/authapi-types 1.0.15 → 1.0.16
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 +3 -5
- package/package.json +1 -1
- package/src/index.ts +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -433,11 +433,9 @@ export declare namespace AuthApi {
|
|
|
433
433
|
}
|
|
434
434
|
namespace logs {
|
|
435
435
|
type POST_SEARCH = {
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
available: boolean;
|
|
440
|
-
};
|
|
436
|
+
logs: objects.LogEntry[];
|
|
437
|
+
pagination: auxiliarTypes.PaginationInfo;
|
|
438
|
+
available: boolean;
|
|
441
439
|
};
|
|
442
440
|
namespace status {
|
|
443
441
|
type GET = {
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -464,11 +464,11 @@ export namespace AuthApi {
|
|
|
464
464
|
|
|
465
465
|
export namespace logs {
|
|
466
466
|
|
|
467
|
-
export type POST_SEARCH = {
|
|
467
|
+
export type POST_SEARCH = {
|
|
468
468
|
logs: objects.LogEntry[];
|
|
469
469
|
pagination: auxiliarTypes.PaginationInfo;
|
|
470
470
|
available: boolean;
|
|
471
|
-
}
|
|
471
|
+
};
|
|
472
472
|
export namespace status {
|
|
473
473
|
export type GET = {
|
|
474
474
|
saveToFile: boolean;
|