@epilot/erp-integration-client 0.20.1 → 0.20.2

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/openapi.d.ts CHANGED
@@ -29,7 +29,7 @@ declare namespace Components {
29
29
  /**
30
30
  * The time bucket interval used for aggregation
31
31
  */
32
- interval: "5m" | "30m" | "1h" | "1d";
32
+ interval: "5m" | "10m" | "30m" | "1h" | "3h" | "1d";
33
33
  /**
34
34
  * Start date of the time series
35
35
  */
@@ -514,7 +514,7 @@ declare namespace Components {
514
514
  * example:
515
515
  * 1h
516
516
  */
517
- interval: "5m" | "30m" | "1h" | "1d";
517
+ interval: "5m" | "10m" | "30m" | "1h" | "3h" | "1d";
518
518
  /**
519
519
  * Filter by event direction. Defaults to both.
520
520
  * example:
@@ -2949,6 +2949,7 @@ export interface OperationMethods {
2949
2949
  *
2950
2950
  * Get time-series aggregated event counts for monitoring charts.
2951
2951
  * Returns pre-bucketed counts at configurable intervals for both inbound and outbound events.
2952
+ * Maximum of 200 buckets per request. Returns 400 if the time range and interval would exceed this limit.
2952
2953
  *
2953
2954
  */
2954
2955
  'getMonitoringTimeSeries'(
@@ -3367,6 +3368,7 @@ export interface PathsDictionary {
3367
3368
  *
3368
3369
  * Get time-series aggregated event counts for monitoring charts.
3369
3370
  * Returns pre-bucketed counts at configurable intervals for both inbound and outbound events.
3371
+ * Maximum of 200 buckets per request. Returns 400 if the time range and interval would exceed this limit.
3370
3372
  *
3371
3373
  */
3372
3374
  'post'(
package/dist/openapi.json CHANGED
@@ -2060,7 +2060,7 @@
2060
2060
  "post": {
2061
2061
  "operationId": "getMonitoringTimeSeries",
2062
2062
  "summary": "getMonitoringTimeSeries",
2063
- "description": "Get time-series aggregated event counts for monitoring charts.\nReturns pre-bucketed counts at configurable intervals for both inbound and outbound events.\n",
2063
+ "description": "Get time-series aggregated event counts for monitoring charts.\nReturns pre-bucketed counts at configurable intervals for both inbound and outbound events.\nMaximum of 200 buckets per request. Returns 400 if the time range and interval would exceed this limit.\n",
2064
2064
  "tags": [
2065
2065
  "monitoring",
2066
2066
  "integrations"
@@ -4554,8 +4554,10 @@
4554
4554
  "type": "string",
4555
4555
  "enum": [
4556
4556
  "5m",
4557
+ "10m",
4557
4558
  "30m",
4558
4559
  "1h",
4560
+ "3h",
4559
4561
  "1d"
4560
4562
  ],
4561
4563
  "description": "The time bucket interval for aggregation",
@@ -5085,8 +5087,10 @@
5085
5087
  "type": "string",
5086
5088
  "enum": [
5087
5089
  "5m",
5090
+ "10m",
5088
5091
  "30m",
5089
5092
  "1h",
5093
+ "3h",
5090
5094
  "1d"
5091
5095
  ],
5092
5096
  "description": "The time bucket interval used for aggregation"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/erp-integration-client",
3
- "version": "0.20.1",
3
+ "version": "0.20.2",
4
4
  "description": "Client library for ePilot ERP Integration API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",