@databutton/firebase-types 1.74.15 → 1.74.16
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.
|
@@ -131,4 +131,8 @@ export var ThirdPartyServiceCategory;
|
|
|
131
131
|
ThirdPartyServiceCategory["PAYMENTS"] = "payments";
|
|
132
132
|
ThirdPartyServiceCategory["STORAGE"] = "storage";
|
|
133
133
|
})(ThirdPartyServiceCategory = ThirdPartyServiceCategory || (ThirdPartyServiceCategory = {}));
|
|
134
|
+
export var UiFileTag;
|
|
135
|
+
(function (UiFileTag) {
|
|
136
|
+
UiFileTag["PROVIDER"] = "provider";
|
|
137
|
+
})(UiFileTag = UiFileTag || (UiFileTag = {}));
|
|
134
138
|
//# sourceMappingURL=enums.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Timestamp } from "firebase/firestore";
|
|
2
2
|
import type { JsonObject, Primitive } from "type-fest";
|
|
3
|
-
import type { ThirdPartyAuthName, ThirdPartyDatabaseName, ThirdPartyPaymentsName, ThirdPartyServiceCategory, ThirdPartyStorageName } from "./enums.js";
|
|
3
|
+
import type { ThirdPartyAuthName, ThirdPartyDatabaseName, ThirdPartyPaymentsName, ThirdPartyServiceCategory, ThirdPartyStorageName, UiFileTag } from "./enums.js";
|
|
4
4
|
/**
|
|
5
5
|
* Types here should reflect data format stored in firestore and
|
|
6
6
|
* either be backwards-compatible or migrated when needed
|
|
@@ -310,6 +310,7 @@ export interface UiFile {
|
|
|
310
310
|
createdBy: PerformedBy;
|
|
311
311
|
markedForDeletionBy: PerformedBy | null;
|
|
312
312
|
codeBlockRef: string;
|
|
313
|
+
tags?: UiFileTag[];
|
|
313
314
|
}
|
|
314
315
|
export declare enum StepState {
|
|
315
316
|
TODO = "todo",
|