@databutton/firebase-types 1.75.30 → 1.75.32
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.
|
@@ -49,7 +49,6 @@ export declare enum CollectionName {
|
|
|
49
49
|
SEQUENCES = "sequences",
|
|
50
50
|
SHORT_URLS = "short-urls",
|
|
51
51
|
STATIC_ASSETS = "static-assets",
|
|
52
|
-
SLACK_SUPPORT_CHANNELS = "slack-support-channels",
|
|
53
52
|
THEMES = "themes",
|
|
54
53
|
THREADS = "threads",
|
|
55
54
|
UPGRADE_REQUESTS = "upgrade-requests",
|
|
@@ -131,9 +130,6 @@ export declare enum ThirdPartyServiceCategory {
|
|
|
131
130
|
export declare enum UiComponentTag {
|
|
132
131
|
PROVIDER = "provider"
|
|
133
132
|
}
|
|
134
|
-
export declare enum ProjectMigration {
|
|
135
|
-
ADD_APP_PROVIDER = "add-app-provider"
|
|
136
|
-
}
|
|
137
133
|
export declare enum CodeComponentType {
|
|
138
134
|
FRONTEND = "frontend",
|
|
139
135
|
BACKEND = "backend",
|
|
@@ -50,7 +50,6 @@ export var CollectionName;
|
|
|
50
50
|
CollectionName["SEQUENCES"] = "sequences";
|
|
51
51
|
CollectionName["SHORT_URLS"] = "short-urls";
|
|
52
52
|
CollectionName["STATIC_ASSETS"] = "static-assets";
|
|
53
|
-
CollectionName["SLACK_SUPPORT_CHANNELS"] = "slack-support-channels";
|
|
54
53
|
CollectionName["THEMES"] = "themes";
|
|
55
54
|
CollectionName["THREADS"] = "threads";
|
|
56
55
|
CollectionName["UPGRADE_REQUESTS"] = "upgrade-requests";
|
|
@@ -139,10 +138,6 @@ export var UiComponentTag;
|
|
|
139
138
|
(function (UiComponentTag) {
|
|
140
139
|
UiComponentTag["PROVIDER"] = "provider";
|
|
141
140
|
})(UiComponentTag = UiComponentTag || (UiComponentTag = {}));
|
|
142
|
-
export var ProjectMigration;
|
|
143
|
-
(function (ProjectMigration) {
|
|
144
|
-
ProjectMigration["ADD_APP_PROVIDER"] = "add-app-provider";
|
|
145
|
-
})(ProjectMigration = ProjectMigration || (ProjectMigration = {}));
|
|
146
141
|
export var CodeComponentType;
|
|
147
142
|
(function (CodeComponentType) {
|
|
148
143
|
CodeComponentType["FRONTEND"] = "frontend";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { Timestamp } from "firebase/firestore";
|
|
2
2
|
import type { JsonObject, Primitive } from "type-fest";
|
|
3
|
-
import type { ProjectMigration
|
|
3
|
+
import type { ProjectMigration } from "../internal/enums.js";
|
|
4
|
+
import type { TaskPriority, ThirdPartyAuthName, ThirdPartyDatabaseName, ThirdPartyPaymentsName, ThirdPartyServiceCategory, ThirdPartyStorageName, UiComponentTag } from "./enums.js";
|
|
4
5
|
/**
|
|
5
6
|
* Types here should reflect data format stored in firestore and
|
|
6
7
|
* either be backwards-compatible or migrated when needed
|