placementt-core 1.400.709 → 1.400.710
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/lib/typeDefinitions.d.ts
CHANGED
|
@@ -840,6 +840,13 @@ export type InstituteData = {
|
|
|
840
840
|
onboarding?: boolean;
|
|
841
841
|
deactivated?: boolean;
|
|
842
842
|
isTest?: boolean;
|
|
843
|
+
cohortFilters?: {
|
|
844
|
+
[key: string]: {
|
|
845
|
+
k: string;
|
|
846
|
+
e?: WhereFilterOp;
|
|
847
|
+
v: unknown;
|
|
848
|
+
}[] | undefined;
|
|
849
|
+
};
|
|
843
850
|
} & Address;
|
|
844
851
|
export type ExternalActivity = {
|
|
845
852
|
title?: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -840,7 +840,14 @@ export type InstituteData = {
|
|
|
840
840
|
publicEventsDescription?: Descendant[],
|
|
841
841
|
onboarding?: boolean,
|
|
842
842
|
deactivated?: boolean,
|
|
843
|
-
isTest?: boolean
|
|
843
|
+
isTest?: boolean,
|
|
844
|
+
cohortFilters?: {
|
|
845
|
+
[key: string]: {
|
|
846
|
+
k: string;
|
|
847
|
+
e?: WhereFilterOp;
|
|
848
|
+
v: unknown;
|
|
849
|
+
}[] | undefined
|
|
850
|
+
}
|
|
844
851
|
}&Address;
|
|
845
852
|
|
|
846
853
|
export type ExternalActivity = {
|