@databutton/firebase-types 1.152.0 → 1.153.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.
@@ -95,6 +95,7 @@ export declare enum CollectionName {
95
95
  CONTEXT_FILES = "context-files",
96
96
  TOOL_CONFIGS = "tool-configs",
97
97
  PERFORMANCE_METRIC_CONFIGS = "performance-metric-configs",
98
+ DISPLAY_STRINGS = "display-strings",
98
99
  TASKS = "tasks",
99
100
  TOKEN_USAGE_ENTRIES = "entries",
100
101
  COMPUTE_HOUR_USAGE = "compute-hour-usage",
@@ -96,6 +96,7 @@ export var CollectionName;
96
96
  CollectionName["CONTEXT_FILES"] = "context-files";
97
97
  CollectionName["TOOL_CONFIGS"] = "tool-configs";
98
98
  CollectionName["PERFORMANCE_METRIC_CONFIGS"] = "performance-metric-configs";
99
+ CollectionName["DISPLAY_STRINGS"] = "display-strings";
99
100
  CollectionName["TASKS"] = "tasks";
100
101
  CollectionName["TOKEN_USAGE_ENTRIES"] = "entries";
101
102
  CollectionName["COMPUTE_HOUR_USAGE"] = "compute-hour-usage";
@@ -2803,6 +2803,11 @@ export interface PerformanceMetricConfig {
2803
2803
  createdBy: PerformedBy;
2804
2804
  lastUpdatedBy: PerformedBy;
2805
2805
  }
2806
+ export interface DisplayString {
2807
+ value: string;
2808
+ updatedBy: PerformedBy;
2809
+ updatedAt: Timestamp;
2810
+ }
2806
2811
  export interface AgentImprovement {
2807
2812
  createdBy: PerformedBy;
2808
2813
  createdAt: Timestamp;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.152.0",
3
+ "version": "1.153.0",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {