@ironcode/vas-lib 1.3.0 → 1.4.0
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/cjs/lib/entity/index.d.ts +2 -0
- package/cjs/lib/entity/index.d.ts.map +1 -1
- package/cjs/lib/entity/index.js +2 -0
- package/cjs/lib/entity/index.js.map +1 -1
- package/cjs/lib/entity/vas-job-email.dto.d.ts +15 -0
- package/cjs/lib/entity/vas-job-email.dto.d.ts.map +1 -0
- package/cjs/lib/entity/vas-job-email.dto.js +3 -0
- package/cjs/lib/entity/vas-job-email.dto.js.map +1 -0
- package/cjs/lib/entity/vas-job-email.model.d.ts +31 -0
- package/cjs/lib/entity/vas-job-email.model.d.ts.map +1 -0
- package/cjs/lib/entity/vas-job-email.model.js +83 -0
- package/cjs/lib/entity/vas-job-email.model.js.map +1 -0
- package/cjs/lib/entity/vas-vehicle.dto.d.ts +1 -0
- package/cjs/lib/entity/vas-vehicle.dto.d.ts.map +1 -1
- package/cjs/lib/entity/vas-vehicle.dto.js.map +1 -1
- package/cjs/lib/entity/vas-vehicle.model.d.ts +2 -1
- package/cjs/lib/entity/vas-vehicle.model.d.ts.map +1 -1
- package/cjs/lib/entity/vas-vehicle.model.js +7 -4
- package/cjs/lib/entity/vas-vehicle.model.js.map +1 -1
- package/esm2020/lib/entity/index.mjs +3 -1
- package/esm2020/lib/entity/vas-job-email.dto.mjs +2 -0
- package/esm2020/lib/entity/vas-job-email.model.mjs +79 -0
- package/esm2020/lib/entity/vas-vehicle.dto.mjs +1 -1
- package/esm2020/lib/entity/vas-vehicle.model.mjs +8 -5
- package/fesm2015/ironcode-vas-lib.mjs +86 -5
- package/fesm2015/ironcode-vas-lib.mjs.map +1 -1
- package/fesm2020/ironcode-vas-lib.mjs +86 -5
- package/fesm2020/ironcode-vas-lib.mjs.map +1 -1
- package/lib/entity/index.d.ts +2 -0
- package/lib/entity/vas-job-email.dto.d.ts +14 -0
- package/lib/entity/vas-job-email.model.d.ts +30 -0
- package/lib/entity/vas-vehicle.dto.d.ts +1 -0
- package/lib/entity/vas-vehicle.model.d.ts +2 -1
- package/package.json +1 -1
package/lib/entity/index.d.ts
CHANGED
|
@@ -34,6 +34,8 @@ export * from './vas-instruction-provider.dto';
|
|
|
34
34
|
export * from './vas-instruction-provider.model';
|
|
35
35
|
export * from './vas-job-data.dto';
|
|
36
36
|
export * from './vas-job-data.model';
|
|
37
|
+
export * from './vas-job-email.dto';
|
|
38
|
+
export * from './vas-job-email.model';
|
|
37
39
|
export * from './vas-job.dto';
|
|
38
40
|
export * from './vas-job.model';
|
|
39
41
|
export * from './vas-job-status.dto';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { VasJobDataDto } from './vas-job-data.dto';
|
|
2
|
+
export interface VasJobEmailDto extends VasJobDataDto {
|
|
3
|
+
body: string;
|
|
4
|
+
cc: Array<string>;
|
|
5
|
+
files: Array<string>;
|
|
6
|
+
message: string;
|
|
7
|
+
recipients: Array<string>;
|
|
8
|
+
replyTo: string;
|
|
9
|
+
reports: Array<string>;
|
|
10
|
+
sender: string;
|
|
11
|
+
sentTime: string;
|
|
12
|
+
subject: string;
|
|
13
|
+
succeeded: boolean;
|
|
14
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { VasJobDataModel } from './vas-job-data.model';
|
|
2
|
+
import { VasJobEmailDto } from './vas-job-email.dto';
|
|
3
|
+
export declare class VasJobEmailModel extends VasJobDataModel {
|
|
4
|
+
id: string;
|
|
5
|
+
created: string;
|
|
6
|
+
serverCreated: string;
|
|
7
|
+
createdBy: string;
|
|
8
|
+
modified: string;
|
|
9
|
+
serverModified: string;
|
|
10
|
+
modifiedBy: string;
|
|
11
|
+
createdByName: string;
|
|
12
|
+
modifiedByName: string;
|
|
13
|
+
account: string;
|
|
14
|
+
job: string;
|
|
15
|
+
body: string;
|
|
16
|
+
cc: Array<string>;
|
|
17
|
+
files: Array<string>;
|
|
18
|
+
message: string;
|
|
19
|
+
recipients: Array<string>;
|
|
20
|
+
replyTo: string;
|
|
21
|
+
reports: Array<string>;
|
|
22
|
+
sender: string;
|
|
23
|
+
sentTime: string;
|
|
24
|
+
subject: string;
|
|
25
|
+
succeeded: boolean;
|
|
26
|
+
constructor(id: string, created: string, serverCreated: string, createdBy: string, modified: string, serverModified: string, modifiedBy: string, createdByName: string, modifiedByName: string, account: string, job: string, body: string, cc: Array<string>, files: Array<string>, message: string, recipients: Array<string>, replyTo: string, reports: Array<string>, sender: string, sentTime: string, subject: string, succeeded: boolean);
|
|
27
|
+
static fromDto(dto: Partial<VasJobEmailDto>): VasJobEmailModel;
|
|
28
|
+
toDto(): VasJobEmailDto;
|
|
29
|
+
toApiDto(options?: any): Record<string, any>;
|
|
30
|
+
}
|
|
@@ -14,7 +14,8 @@ export declare class VasVehicleModel extends VasAccountObjectModel {
|
|
|
14
14
|
registration: string;
|
|
15
15
|
make: string;
|
|
16
16
|
model: string;
|
|
17
|
-
|
|
17
|
+
archived: boolean;
|
|
18
|
+
constructor(id: string, created: string, serverCreated: string, createdBy: string, modified: string, serverModified: string, modifiedBy: string, createdByName: string, modifiedByName: string, account: string, registration: string, make: string, model: string, archived: boolean);
|
|
18
19
|
static fromDto(dto: Partial<VasVehicleDto>): VasVehicleModel;
|
|
19
20
|
toDto(): VasVehicleDto;
|
|
20
21
|
toApiDto(options?: any): Record<string, string | number | boolean>;
|