attlaz-client 1.9.23 → 1.9.25

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.
@@ -10,7 +10,7 @@ export declare class LogQuery {
10
10
  key: string;
11
11
  values: DataValueValue[];
12
12
  }> | null;
13
- limit: number;
13
+ limit: number | null;
14
14
  startingAfterId: string | null;
15
15
  sort: Array<{
16
16
  field: string;
@@ -7,7 +7,7 @@ class LogQuery {
7
7
  this.hidden = null;
8
8
  this.logLevels = null;
9
9
  this.tags = null;
10
- this.limit = 1000;
10
+ this.limit = null;
11
11
  this.startingAfterId = null;
12
12
  this.logStreamId = logStreamId;
13
13
  }
@@ -1,7 +1,16 @@
1
1
  import { LogLevel } from './LogLevel';
2
2
  import { DataValueValue } from '../DataValue';
3
3
  export declare class LogStreamInformation {
4
- logLevels: Map<LogLevel, number>;
5
- tags: Map<string, (DataValueValue)[]>;
4
+ logLevels: {
5
+ logLevel: LogLevel;
6
+ entries: number;
7
+ }[];
8
+ tags: {
9
+ tag: string;
10
+ values: {
11
+ value: DataValueValue;
12
+ entries: number;
13
+ }[];
14
+ }[];
6
15
  static parse(raw: any): LogStreamInformation;
7
16
  }
@@ -26,7 +26,8 @@ class LogStreamInformation {
26
26
  tags.set(tagKey, values);
27
27
  });
28
28
  }
29
- return { logLevels: logLevels, tags };
29
+ throw new Error('Need update!');
30
+ //return {logLevels: logLevels, tags};
30
31
  }
31
32
  }
32
33
  exports.LogStreamInformation = LogStreamInformation;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "attlaz-client",
3
- "version": "1.9.23",
3
+ "version": "1.9.25",
4
4
  "description": "Javascript Client to access Attlaz API",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",