placementt-core 1.400.732 → 1.400.733

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.
@@ -842,6 +842,13 @@ export type InstituteData = {
842
842
  onboarding?: boolean;
843
843
  deactivated?: boolean;
844
844
  isTest?: boolean;
845
+ cohortFilters?: {
846
+ [key: string]: {
847
+ k: string;
848
+ e?: WhereFilterOp;
849
+ v: unknown;
850
+ }[];
851
+ };
845
852
  } & Address;
846
853
  export type ExternalActivity = {
847
854
  title?: string;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.732",
5
+ "version": "1.400.733",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -842,7 +842,13 @@ export type InstituteData = {
842
842
  publicEventsDescription?: Descendant[],
843
843
  onboarding?: boolean,
844
844
  deactivated?: boolean,
845
- isTest?: boolean
845
+ isTest?: boolean,
846
+ cohortFilters?: {
847
+ [key: string]: {
848
+ k: string;
849
+ e?: WhereFilterOp;
850
+ v: unknown;
851
+ }[],}
846
852
  }&Address;
847
853
 
848
854
  export type ExternalActivity = {