@databutton/firebase-types 1.65.20 → 1.65.21

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.
@@ -26,6 +26,7 @@ export declare enum CollectionName {
26
26
  MULTIPAGE_APPS = "multipage-apps",
27
27
  NOTEBOOKS = "notebooks",
28
28
  PAGES = "pages",
29
+ PATCH_ATTEMPTS = "patch-attempts",
29
30
  PROFILES = "profiles",
30
31
  PROJECT_APPBUTLERS = "project-appbutlers",
31
32
  PROJECT_DEPLOYMENTS = "deployments",
@@ -27,6 +27,7 @@ export var CollectionName;
27
27
  CollectionName["MULTIPAGE_APPS"] = "multipage-apps";
28
28
  CollectionName["NOTEBOOKS"] = "notebooks";
29
29
  CollectionName["PAGES"] = "pages";
30
+ CollectionName["PATCH_ATTEMPTS"] = "patch-attempts";
30
31
  CollectionName["PROFILES"] = "profiles";
31
32
  CollectionName["PROJECT_APPBUTLERS"] = "project-appbutlers";
32
33
  CollectionName["PROJECT_DEPLOYMENTS"] = "deployments";
@@ -1098,4 +1098,15 @@ export interface ComputeHourUsageRecord {
1098
1098
  secondsUsedForHour: number;
1099
1099
  appbutlerId: string;
1100
1100
  }
1101
+ export interface PatchAttempt {
1102
+ projectId: string;
1103
+ changeRequestId: string;
1104
+ attempt: number;
1105
+ changeRequest: string;
1106
+ codeBefore: string;
1107
+ agentResponse: string | null;
1108
+ patch: string | null;
1109
+ codeAfter: string | null;
1110
+ success: boolean;
1111
+ }
1101
1112
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.65.20",
3
+ "version": "1.65.21",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {