@stoker-platform/types 0.5.1 → 0.5.3

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/types/app.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stoker-platform/types",
3
- "version": "0.5.1",
3
+ "version": "0.5.3",
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.19",
25
+ "@fullcalendar/core": "^6.1.20",
26
26
  "@google-cloud/storage": "^7.18.0",
27
- "firebase": "^12.6.0",
27
+ "firebase": "^12.7.0",
28
28
  "firebase-admin": "^13.6.0"
29
29
  }
30
30
  }
package/src/types/app.ts CHANGED
@@ -345,6 +345,7 @@ export interface WebUtilities {
345
345
  export interface NodeUtilities {
346
346
  getMode: () => "development" | "production"
347
347
  getTenant: () => string
348
+ setTenant: (tenantId: string) => void
348
349
  getTimezone: () => string
349
350
  getGlobalConfigModule: () => GlobalConfig
350
351
  getCustomizationFile: (collection: string, schema: CollectionsSchema) => CollectionCustomization