@vantage-sh/vantage-client 2.7.0 → 2.8.0
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 +11 -0
- package/dist/index.d.ts +11 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -9121,6 +9121,8 @@ interface operations {
|
|
|
9121
9121
|
start_date?: string;
|
|
9122
9122
|
/** @description Return values matching any exact label value. For multi-label metrics, matches values under any label key. */
|
|
9123
9123
|
label_values?: string[];
|
|
9124
|
+
/** @description Sum values by UTC day or month while preserving labels. When omitted, values are returned without aggregation. */
|
|
9125
|
+
date_bin?: "day" | "month";
|
|
9124
9126
|
};
|
|
9125
9127
|
header?: never;
|
|
9126
9128
|
path: {
|
|
@@ -9156,6 +9158,15 @@ interface operations {
|
|
|
9156
9158
|
"application/json": components["schemas"]["BusinessMetricValues"];
|
|
9157
9159
|
};
|
|
9158
9160
|
};
|
|
9161
|
+
/** @description BadRequest */
|
|
9162
|
+
400: {
|
|
9163
|
+
headers: {
|
|
9164
|
+
[name: string]: unknown;
|
|
9165
|
+
};
|
|
9166
|
+
content: {
|
|
9167
|
+
"application/json": components["schemas"]["Errors"];
|
|
9168
|
+
};
|
|
9169
|
+
};
|
|
9159
9170
|
/** @description NotFound */
|
|
9160
9171
|
404: {
|
|
9161
9172
|
headers: {
|
package/dist/index.d.ts
CHANGED
|
@@ -9121,6 +9121,8 @@ interface operations {
|
|
|
9121
9121
|
start_date?: string;
|
|
9122
9122
|
/** @description Return values matching any exact label value. For multi-label metrics, matches values under any label key. */
|
|
9123
9123
|
label_values?: string[];
|
|
9124
|
+
/** @description Sum values by UTC day or month while preserving labels. When omitted, values are returned without aggregation. */
|
|
9125
|
+
date_bin?: "day" | "month";
|
|
9124
9126
|
};
|
|
9125
9127
|
header?: never;
|
|
9126
9128
|
path: {
|
|
@@ -9156,6 +9158,15 @@ interface operations {
|
|
|
9156
9158
|
"application/json": components["schemas"]["BusinessMetricValues"];
|
|
9157
9159
|
};
|
|
9158
9160
|
};
|
|
9161
|
+
/** @description BadRequest */
|
|
9162
|
+
400: {
|
|
9163
|
+
headers: {
|
|
9164
|
+
[name: string]: unknown;
|
|
9165
|
+
};
|
|
9166
|
+
content: {
|
|
9167
|
+
"application/json": components["schemas"]["Errors"];
|
|
9168
|
+
};
|
|
9169
|
+
};
|
|
9159
9170
|
/** @description NotFound */
|
|
9160
9171
|
404: {
|
|
9161
9172
|
headers: {
|