@studyportals/sp-lurch-interface 3.1.3-2 → 3.1.3-3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@studyportals/sp-lurch-interface",
3
- "version": "3.1.3-2",
3
+ "version": "3.1.3-3",
4
4
  "description": "Contains Data Transfer Objects required or provided by Lurch through its interface.",
5
5
  "scripts": {
6
6
  "test": "npm run test-u-o",
@@ -9,8 +9,8 @@ export declare class InputBatchDto implements IInputBatch {
9
9
  readonly targetIntakeStageType: number;
10
10
  readonly inputSize: number;
11
11
  readonly matchesCount: number;
12
- readonly uniqueStudentsCount: number;
12
+ readonly uniqueStudentsCount: number | null;
13
13
  readonly representativeIdentity: string;
14
14
  readonly __i_input_batch__: true;
15
- constructor(identity: string, creationTimeIso: string, status: number, organisationIdentity: string, intakeMonth: number, intakeYear: number, targetIntakeStageType: number, inputSize: number, matchesCount: number, uniqueStudentsCount: number, representativeIdentity: string);
15
+ constructor(identity: string, creationTimeIso: string, status: number, organisationIdentity: string, intakeMonth: number, intakeYear: number, targetIntakeStageType: number, inputSize: number, matchesCount: number, uniqueStudentsCount: number | null, representativeIdentity: string);
16
16
  }
@@ -1 +1 @@
1
- {"version":3,"file":"input-batch-dto.class.js","sourceRoot":"","sources":["../../../src/input-batches/input-batch-dto.class.ts"],"names":[],"mappings":";;;AAGA,MAAa,aAAa;IAGzB,YACiB,QAAgB,EAChB,eAAuB,EACvB,MAAc,EACd,oBAA4B,EAC5B,WAAmB,EACnB,UAAkB,EAClB,qBAA6B,EAC7B,SAAiB,EACjB,YAAoB,EACpB,mBAA2B,EAC3B,sBAA8B;QAV9B,aAAQ,GAAR,QAAQ,CAAQ;QAChB,oBAAe,GAAf,eAAe,CAAQ;QACvB,WAAM,GAAN,MAAM,CAAQ;QACd,yBAAoB,GAApB,oBAAoB,CAAQ;QAC5B,gBAAW,GAAX,WAAW,CAAQ;QACnB,eAAU,GAAV,UAAU,CAAQ;QAClB,0BAAqB,GAArB,qBAAqB,CAAQ;QAC7B,cAAS,GAAT,SAAS,CAAQ;QACjB,iBAAY,GAAZ,YAAY,CAAQ;QACpB,wBAAmB,GAAnB,mBAAmB,CAAQ;QAC3B,2BAAsB,GAAtB,sBAAsB,CAAQ;QAb/B,sBAAiB,GAAS,IAAI,CAAC;IAc3C,CAAC;CACL;AAhBD,sCAgBC"}
1
+ {"version":3,"file":"input-batch-dto.class.js","sourceRoot":"","sources":["../../../src/input-batches/input-batch-dto.class.ts"],"names":[],"mappings":";;;AAGA,MAAa,aAAa;IAGzB,YACiB,QAAgB,EAChB,eAAuB,EACvB,MAAc,EACd,oBAA4B,EAC5B,WAAmB,EACnB,UAAkB,EAClB,qBAA6B,EAC7B,SAAiB,EACjB,YAAoB,EACpB,mBAAkC,EAClC,sBAA8B;QAV9B,aAAQ,GAAR,QAAQ,CAAQ;QAChB,oBAAe,GAAf,eAAe,CAAQ;QACvB,WAAM,GAAN,MAAM,CAAQ;QACd,yBAAoB,GAApB,oBAAoB,CAAQ;QAC5B,gBAAW,GAAX,WAAW,CAAQ;QACnB,eAAU,GAAV,UAAU,CAAQ;QAClB,0BAAqB,GAArB,qBAAqB,CAAQ;QAC7B,cAAS,GAAT,SAAS,CAAQ;QACjB,iBAAY,GAAZ,YAAY,CAAQ;QACpB,wBAAmB,GAAnB,mBAAmB,CAAe;QAClC,2BAAsB,GAAtB,sBAAsB,CAAQ;QAb/B,sBAAiB,GAAS,IAAI,CAAC;IAc3C,CAAC;CACL;AAhBD,sCAgBC"}
@@ -9,6 +9,6 @@ export interface IInputBatch {
9
9
  readonly targetIntakeStageType: number;
10
10
  readonly inputSize: number;
11
11
  readonly matchesCount: number;
12
- readonly uniqueStudentsCount: number;
12
+ readonly uniqueStudentsCount: number | null;
13
13
  readonly representativeIdentity: string;
14
14
  }