@databutton/firebase-types 1.146.1 → 1.148.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.
@@ -2765,5 +2765,6 @@ export interface AgentImprovement {
2765
2765
  deploymentCommitId: string | null;
2766
2766
  sessionId: string | null;
2767
2767
  taskId: string | null;
2768
+ discussionSessionId: string | null;
2768
2769
  }
2769
2770
  export {};
@@ -273,6 +273,13 @@ export type TransferOwnershipRequest = {
273
273
  export type TransferOwnershipResponse = {
274
274
  success: boolean;
275
275
  };
276
+ export type MoveProjectToTeamRequest = {
277
+ projectId: string;
278
+ targetAccountId: string;
279
+ };
280
+ export type MoveProjectToTeamResponse = {
281
+ success: boolean;
282
+ };
276
283
  export type CreateNeonTransferRequest = {
277
284
  projectId: string;
278
285
  ttlSeconds?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.146.1",
3
+ "version": "1.148.0",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {