@distilled.cloud/cloudflare 0.22.4 → 0.23.1
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/lib/services/workers.d.ts +9 -9
- package/lib/services/workers.d.ts.map +1 -1
- package/lib/services/workers.js +166 -156
- package/lib/services/workers.js.map +1 -1
- package/package.json +2 -2
- package/src/services/workers.ts +224 -208
|
@@ -2104,12 +2104,12 @@ export interface QueryObservabilityTelemetryResponse {
|
|
|
2104
2104
|
granularity: number;
|
|
2105
2105
|
query: {
|
|
2106
2106
|
id: string;
|
|
2107
|
-
adhoc
|
|
2108
|
-
created
|
|
2109
|
-
createdBy
|
|
2110
|
-
description
|
|
2111
|
-
name
|
|
2112
|
-
parameters
|
|
2107
|
+
adhoc?: boolean | null;
|
|
2108
|
+
created?: string | null;
|
|
2109
|
+
createdBy?: string | null;
|
|
2110
|
+
description?: string | null;
|
|
2111
|
+
name?: string | null;
|
|
2112
|
+
parameters?: {
|
|
2113
2113
|
calculations?: {
|
|
2114
2114
|
operator: "uniq" | "count" | "max" | "min" | "sum" | "avg" | "median" | "p001" | "p01" | "p05" | "p10" | "p25" | "p75" | "p90" | "p95" | "p99" | "p999" | "stddev" | "variance" | "COUNT_DISTINCT" | "COUNT" | "MAX" | "MIN" | "SUM" | "AVG" | "MEDIAN" | "P001" | "P01" | "P05" | "P10" | "P25" | "P75" | "P90" | "P95" | "P99" | "P999" | "STDDEV" | "VARIANCE" | (string & {});
|
|
2115
2115
|
alias?: string | null;
|
|
@@ -2148,9 +2148,9 @@ export interface QueryObservabilityTelemetryResponse {
|
|
|
2148
2148
|
value: string;
|
|
2149
2149
|
order?: "asc" | "desc" | (string & {}) | null;
|
|
2150
2150
|
} | null;
|
|
2151
|
-
};
|
|
2152
|
-
updated
|
|
2153
|
-
updatedBy
|
|
2151
|
+
} | null;
|
|
2152
|
+
updated?: string | null;
|
|
2153
|
+
updatedBy?: string | null;
|
|
2154
2154
|
};
|
|
2155
2155
|
status: "STARTED" | "COMPLETED" | (string & {});
|
|
2156
2156
|
timeframe: {
|