@distilled.cloud/cloudflare 0.23.0 → 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.
@@ -2104,12 +2104,12 @@ export interface QueryObservabilityTelemetryResponse {
2104
2104
  granularity: number;
2105
2105
  query: {
2106
2106
  id: string;
2107
- adhoc: boolean;
2108
- created: string;
2109
- createdBy: string;
2110
- description: string | null;
2111
- name: string;
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: string;
2153
- updatedBy: string;
2151
+ } | null;
2152
+ updated?: string | null;
2153
+ updatedBy?: string | null;
2154
2154
  };
2155
2155
  status: "STARTED" | "COMPLETED" | (string & {});
2156
2156
  timeframe: {