placementt-core 1.400.710 → 1.400.711
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
|
@@ -46,7 +46,7 @@ export type StudentPlacementData = {
|
|
|
46
46
|
placementId?: string;
|
|
47
47
|
providerContactId?: string;
|
|
48
48
|
geoHash?: string;
|
|
49
|
-
statusType: "draft" | "submitted" | "active" | "completed" | "withdrawn" | "requested";
|
|
49
|
+
statusType: "draft" | "submitted" | "active" | "completed" | "withdrawn" | "requested" | "rejected";
|
|
50
50
|
questions: PlacementQuestions;
|
|
51
51
|
staffRoles: string[];
|
|
52
52
|
sector: string;
|
|
@@ -840,13 +840,6 @@ 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
|
-
};
|
|
850
843
|
} & Address;
|
|
851
844
|
export type ExternalActivity = {
|
|
852
845
|
title?: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -48,7 +48,7 @@ export type StudentPlacementData = {
|
|
|
48
48
|
placementId?: string,
|
|
49
49
|
providerContactId?: string,
|
|
50
50
|
geoHash?: string,
|
|
51
|
-
statusType: "draft"|"submitted"|"active"|"completed"|"withdrawn"|"requested",
|
|
51
|
+
statusType: "draft"|"submitted"|"active"|"completed"|"withdrawn"|"requested"|"rejected",
|
|
52
52
|
questions: PlacementQuestions,
|
|
53
53
|
staffRoles: string[],
|
|
54
54
|
sector: string,
|
|
@@ -840,14 +840,7 @@ export type InstituteData = {
|
|
|
840
840
|
publicEventsDescription?: Descendant[],
|
|
841
841
|
onboarding?: boolean,
|
|
842
842
|
deactivated?: boolean,
|
|
843
|
-
isTest?: boolean
|
|
844
|
-
cohortFilters?: {
|
|
845
|
-
[key: string]: {
|
|
846
|
-
k: string;
|
|
847
|
-
e?: WhereFilterOp;
|
|
848
|
-
v: unknown;
|
|
849
|
-
}[] | undefined
|
|
850
|
-
}
|
|
843
|
+
isTest?: boolean
|
|
851
844
|
}&Address;
|
|
852
845
|
|
|
853
846
|
export type ExternalActivity = {
|