@ironcode/vas-lib 3.0.0-alpha.8 → 3.0.0-alpha.9

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.
@@ -19,6 +19,9 @@ export interface VasJobBaseDto extends VasRestrictedAccountObjectDto {
19
19
  pendingFields: number;
20
20
  childModified: string;
21
21
  version: number;
22
+ followUpDate: string;
23
+ followUpStatus: string;
24
+ followUpNote: string;
22
25
  geoLocation: GeoLocation;
23
26
  files: Array<VasFileDto>;
24
27
  jobEmails: Array<VasJobEmailDto>;
@@ -41,6 +41,9 @@ export declare abstract class VasJobBaseModel<FType extends Record<string, Field
41
41
  pendingFields: number;
42
42
  childModified: string;
43
43
  version: number;
44
+ followUpDate: string;
45
+ followUpStatus: string;
46
+ followUpNote: string;
44
47
  geoLocation: GeoLocation;
45
48
  files: Array<VasFileDto>;
46
49
  fields: FType;
@@ -49,7 +52,7 @@ export declare abstract class VasJobBaseModel<FType extends Record<string, Field
49
52
  reports: Array<VasReportDto>;
50
53
  tasks: Array<VasTaskDto>;
51
54
  instruction: VasInstructionDto | null;
52
- constructor(id: string, created: string, serverCreated: string, createdBy: string, modified: string, serverModified: string, modifiedBy: string, createdByName: string, modifiedByName: string, account: string, accessGroup: string, reference: string, jobDate: string, jobStatus: string, jobStatusLastUpdate: string, jobType: string, assigneeId: string, formId: string, timeZoneOffset: number, pendingFields: number, childModified: string, version: number, geoLocation: GeoLocation, files: Array<VasFileDto>, fields: FType, jobEmails: Array<VasJobEmailDto>, notes: Array<VasNoteDto>, reports: Array<VasReportDto>, tasks: Array<VasTaskDto>, instruction: VasInstructionDto | null);
55
+ constructor(id: string, created: string, serverCreated: string, createdBy: string, modified: string, serverModified: string, modifiedBy: string, createdByName: string, modifiedByName: string, account: string, accessGroup: string, reference: string, jobDate: string, jobStatus: string, jobStatusLastUpdate: string, jobType: string, assigneeId: string, formId: string, timeZoneOffset: number, pendingFields: number, childModified: string, version: number, followUpDate: string, followUpStatus: string, followUpNote: string, geoLocation: GeoLocation, files: Array<VasFileDto>, fields: FType, jobEmails: Array<VasJobEmailDto>, notes: Array<VasNoteDto>, reports: Array<VasReportDto>, tasks: Array<VasTaskDto>, instruction: VasInstructionDto | null);
53
56
  get createdByDisplayName(): string;
54
57
  get modifiedByDisplayName(): string;
55
58
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ironcode/vas-lib",
3
- "version": "3.0.0-alpha.8",
3
+ "version": "3.0.0-alpha.9",
4
4
  "peerDependencies": {
5
5
  "angular2-uuid": "^1.1.1",
6
6
  "moment": "^2.0.0",