@databutton/firebase-types 1.17.10 → 1.17.11

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.
@@ -371,6 +371,7 @@ export interface Project {
371
371
  schema?: "2022-12-07" | "2022-08-22" | null;
372
372
  devxUrl?: string;
373
373
  prodxUrl?: string;
374
+ initialRequirementsHash?: string;
374
375
  deployIsInProgress?: boolean;
375
376
  deployFinishedAt?: Timestamp;
376
377
  deployCurrentDeployedId?: string;
@@ -407,6 +408,7 @@ export interface ProjectTemplate {
407
408
  }[];
408
409
  requirements: {
409
410
  requirementsTxt: string;
411
+ requirementsHash: string;
410
412
  };
411
413
  }
412
414
  export interface Requirements {
@@ -13,7 +13,7 @@ export type CreateOrUpdateProjectTemplateRequest = {
13
13
  };
14
14
  export type CreateProjectRequest = {
15
15
  name: string;
16
- projectTemplateId: string | null;
16
+ projectTemplateId: string;
17
17
  requestSentAt: Timestamp;
18
18
  };
19
19
  export type CreateProjectResponse = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.17.10",
3
+ "version": "1.17.11",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {
@@ -83,7 +83,7 @@
83
83
  "semantic-release": "19.0.5",
84
84
  "ts-jest": "29.0.5",
85
85
  "ts-node": "10.9.1",
86
- "type-fest": "3.5.5",
86
+ "type-fest": "3.5.7",
87
87
  "typescript": "4.9.5"
88
88
  },
89
89
  "repository": {