evo360-types 1.1.12 → 1.1.13
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.
- package/dist/types/shared/index.d.ts +17 -1
- package/package.json +1 -1
|
@@ -1,4 +1,20 @@
|
|
|
1
|
-
export * from "./fb_collections";
|
|
1
|
+
//export * from "./fb_collections";
|
|
2
|
+
|
|
3
|
+
//Applications
|
|
4
|
+
export const APPS_COLLECTION = "apps";
|
|
5
|
+
|
|
6
|
+
//logins
|
|
7
|
+
export const LOGINS_COLLECTION = "logins";
|
|
8
|
+
|
|
9
|
+
//users
|
|
10
|
+
export const USERS_COLLECTION = "users";
|
|
11
|
+
|
|
12
|
+
//config
|
|
13
|
+
export const CONFIG_COLLECTION = "config";
|
|
14
|
+
|
|
15
|
+
//actions
|
|
16
|
+
export const ACTIONS_COLLECTION = "actions";
|
|
17
|
+
|
|
2
18
|
// ----- FirestoreTypes
|
|
3
19
|
// Definir o tipo unificado para DocumentReference
|
|
4
20
|
export interface FirestoreDocumentReference<> {
|