placementt-core 1.400.675 → 1.400.677
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 +24 -0
- package/package.json +1 -1
- package/src/typeDefinitions.ts +25 -0
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -2365,4 +2365,28 @@ export type ProviderFeedback = {
|
|
|
2365
2365
|
resolved?: boolean;
|
|
2366
2366
|
resolvedDate?: string;
|
|
2367
2367
|
};
|
|
2368
|
+
export type DfESchoolContact = {
|
|
2369
|
+
urn: number;
|
|
2370
|
+
affiliation: string;
|
|
2371
|
+
contact?: string;
|
|
2372
|
+
email?: string;
|
|
2373
|
+
linkedIn?: string;
|
|
2374
|
+
phone?: number;
|
|
2375
|
+
method: string;
|
|
2376
|
+
city: string;
|
|
2377
|
+
doesWex?: boolean;
|
|
2378
|
+
notes?: string;
|
|
2379
|
+
group?: string | false;
|
|
2380
|
+
url: string;
|
|
2381
|
+
potential: string;
|
|
2382
|
+
role: string;
|
|
2383
|
+
sixthForm?: boolean;
|
|
2384
|
+
capacity: string;
|
|
2385
|
+
street: string;
|
|
2386
|
+
postal_code: string;
|
|
2387
|
+
generalPhone: number;
|
|
2388
|
+
headteacher: string;
|
|
2389
|
+
type: string;
|
|
2390
|
+
ofsted: string;
|
|
2391
|
+
};
|
|
2368
2392
|
export {};
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -2325,3 +2325,28 @@ export type ProviderFeedback = {
|
|
|
2325
2325
|
resolved?: boolean,
|
|
2326
2326
|
resolvedDate?: string
|
|
2327
2327
|
}
|
|
2328
|
+
|
|
2329
|
+
export type DfESchoolContact = {
|
|
2330
|
+
urn: number,
|
|
2331
|
+
affiliation: string,
|
|
2332
|
+
contact?: string,
|
|
2333
|
+
email?: string,
|
|
2334
|
+
linkedIn?: string,
|
|
2335
|
+
phone?: number,
|
|
2336
|
+
method: string,
|
|
2337
|
+
city: string,
|
|
2338
|
+
doesWex?: boolean,
|
|
2339
|
+
notes?: string,
|
|
2340
|
+
group?: string|false,
|
|
2341
|
+
url: string,
|
|
2342
|
+
potential: string,
|
|
2343
|
+
role: string,
|
|
2344
|
+
sixthForm?: boolean,
|
|
2345
|
+
capacity: string,
|
|
2346
|
+
street: string,
|
|
2347
|
+
postal_code: string,
|
|
2348
|
+
generalPhone: number,
|
|
2349
|
+
headteacher: string,
|
|
2350
|
+
type: string,
|
|
2351
|
+
ofsted: string,
|
|
2352
|
+
}
|