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