@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 CHANGED
@@ -433,11 +433,9 @@ export declare namespace AuthApi {
433
433
  }
434
434
  namespace logs {
435
435
  type POST_SEARCH = {
436
- data: {
437
- logs: objects.LogEntry[];
438
- pagination: auxiliarTypes.PaginationInfo;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@authenty/authapi-types",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "Shared types for Authenty API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
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 = { data: {
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;