@databutton/firebase-types 1.81.5 → 1.81.6

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.
@@ -127,22 +127,12 @@ export type RestoreCommitResponse = {
127
127
  componentsRestored: ComponentWithCodeBlock[];
128
128
  componentsSkipped: ComponentWithCodeBlock[];
129
129
  };
130
- export interface MessageToCopy {
131
- id?: string;
132
- timestamp?: string | number;
133
- role?: string;
134
- content?: string;
135
- externalRef?: string;
136
- source?: string;
137
- name?: string;
138
- [key: string]: string | number | boolean | null | undefined;
139
- }
140
130
  export type CloneAppRequest = {
141
131
  projectId: string;
142
132
  newAppName?: string;
143
133
  addUsersAsCollaborators?: string[];
144
134
  commitId?: string;
145
- messagesToCopy?: MessageToCopy[];
135
+ messageId?: string;
146
136
  };
147
137
  export type DeactivateUserRequest = null;
148
138
  export type DeactivateUserResponse = {
@@ -150,10 +140,6 @@ export type DeactivateUserResponse = {
150
140
  };
151
141
  export type CloneAppResponse = {
152
142
  projectUrl: string;
153
- messageCopyingPerformed?: boolean;
154
- messagesCopiedCount?: number;
155
- messagesFailedCount?: number;
156
- newThreadId?: string;
157
143
  };
158
144
  export type GetSignedDownloadUrlRequest = {
159
145
  projectId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.81.5",
3
+ "version": "1.81.6",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {