@stoker-platform/types 0.5.68 → 0.5.69
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/package.json +5 -5
- package/src/types/app.ts +1 -4
- package/src/types/schema.ts +1 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stoker-platform/types",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.69",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"main": "src/main.ts",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"npm": "11"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@fullcalendar/core": "^6.1.
|
|
26
|
-
"@google-cloud/storage": "^
|
|
27
|
-
"firebase": "^12.
|
|
28
|
-
"firebase-admin": "^
|
|
25
|
+
"@fullcalendar/core": "^6.1.21",
|
|
26
|
+
"@google-cloud/storage": "^8.0.1",
|
|
27
|
+
"firebase": "^12.18.0",
|
|
28
|
+
"firebase-admin": "^14.3.0"
|
|
29
29
|
}
|
|
30
30
|
}
|
package/src/types/app.ts
CHANGED
|
@@ -35,10 +35,7 @@ import { FirebaseError } from "firebase-admin"
|
|
|
35
35
|
export interface AuthConfig {
|
|
36
36
|
enableMultiFactorAuth: boolean | StokerRole[]
|
|
37
37
|
authPersistenceType:
|
|
38
|
-
| "LOCAL"
|
|
39
|
-
| "SESSION"
|
|
40
|
-
| "NONE"
|
|
41
|
-
| (() => "LOCAL" | "SESSION" | "NONE" | Promise<"LOCAL" | "SESSION" | "NONE">)
|
|
38
|
+
"LOCAL" | "SESSION" | "NONE" | (() => "LOCAL" | "SESSION" | "NONE" | Promise<"LOCAL" | "SESSION" | "NONE">)
|
|
42
39
|
signOutOnPermissionsChange?: boolean
|
|
43
40
|
clearPersistenceOnSignOut?: boolean
|
|
44
41
|
offlinePersistenceType:
|
package/src/types/schema.ts
CHANGED
|
@@ -176,9 +176,7 @@ export interface ParentPropertyEntityParentFilter {
|
|
|
176
176
|
roles: EntityRestrictionRole[]
|
|
177
177
|
}
|
|
178
178
|
export type EntityParentFilter =
|
|
179
|
-
|
|
|
180
|
-
| ParentEntityParentFilter
|
|
181
|
-
| ParentPropertyEntityParentFilter
|
|
179
|
+
IndividualEntityParentFilter | ParentEntityParentFilter | ParentPropertyEntityParentFilter
|
|
182
180
|
|
|
183
181
|
export interface AccessOperations {
|
|
184
182
|
assignable?: boolean | StokerRole[]
|