@databutton/firebase-types 1.71.0 → 1.71.2
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.
|
@@ -9,6 +9,7 @@ export var CollectionName;
|
|
|
9
9
|
CollectionName["CHECKPOINTS"] = "checkpoints";
|
|
10
10
|
CollectionName["CODE_BLOCKS"] = "code-blocks";
|
|
11
11
|
CollectionName["CODE_BLOCK_VERSIONS"] = "versions";
|
|
12
|
+
CollectionName["COMMIT_REQUESTS"] = "commit-requests";
|
|
12
13
|
CollectionName["CUSTOMERS"] = "customers";
|
|
13
14
|
CollectionName["DATAFILES"] = "datafiles";
|
|
14
15
|
CollectionName["DATAFRAMES"] = "dataframes";
|
|
@@ -450,6 +450,11 @@ export interface MultipageAppDeploymentDeprecated {
|
|
|
450
450
|
requirementsRef: string | null;
|
|
451
451
|
projectEventRef: string | null;
|
|
452
452
|
}
|
|
453
|
+
export interface CommitRequest {
|
|
454
|
+
createdBy: PerformedBy;
|
|
455
|
+
parentId: string | null;
|
|
456
|
+
message: string;
|
|
457
|
+
}
|
|
453
458
|
export interface FullDeploymentRequest {
|
|
454
459
|
createdBy: PerformedBy;
|
|
455
460
|
deploymentUrl?: string | null;
|