@databutton/firebase-types 1.12.57 → 1.12.58

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.
@@ -254,6 +254,28 @@ export interface Project {
254
254
  deployCurrentDeployedId?: string;
255
255
  deployLastDeploymentSuccess?: boolean;
256
256
  }
257
+ export interface ProjectTemplate {
258
+ createdBy: PerformedBy;
259
+ basedOnProjectId: string;
260
+ name: string;
261
+ description: string | null;
262
+ apps: {
263
+ name: string;
264
+ code: string;
265
+ }[];
266
+ jobs: {
267
+ name: string;
268
+ code: string;
269
+ }[];
270
+ modules: {
271
+ name: string;
272
+ code: string;
273
+ }[];
274
+ requirements: {
275
+ dbtnControlledRequirementsTxt: string;
276
+ requirementsTxt: string;
277
+ };
278
+ }
257
279
  export interface Requirements {
258
280
  createdBy: PerformedBy;
259
281
  prevRequirementsId: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.12.57",
3
+ "version": "1.12.58",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {