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.
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -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
package/src/typeDefinitions.ts
CHANGED
|
@@ -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 = {
|