@ironcode/vas-lib 0.0.36 → 0.0.38

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.
@@ -14,4 +14,9 @@ export interface VasFileDto extends VasJobDataDto {
14
14
  sequence: number;
15
15
  config: string;
16
16
  url: string;
17
+ uri: string;
18
+ message: string;
19
+ status: string;
20
+ controlPath: string;
17
21
  }
22
+ export declare function isFileDto(object: any): object is VasFileDto;
@@ -22,11 +22,12 @@ export declare class VasFileModel extends VasJobDataModel {
22
22
  sequence: number;
23
23
  config: VasFileDtoConfigDto;
24
24
  url: string;
25
- constructor(id: string, created: string, serverCreated: string, createdBy: string, modified: string, serverModified: string, modifiedBy: string, account: string, job: string, name: string, fileSize: number, mimeType: string, sequence: number, config: VasFileDtoConfigDto, url: string);
26
- /**
27
- * @param {VasFieldDto} fileDto
28
- * @return {VasFieldModel}
29
- */
25
+ controlPath: string;
26
+ message: string;
27
+ status: string;
28
+ uri: string;
29
+ constructor(id: string, created: string, serverCreated: string, createdBy: string, modified: string, serverModified: string, modifiedBy: string, account: string, job: string, name: string, fileSize: number, mimeType: string, sequence: number, config: VasFileDtoConfigDto, url: string, controlPath: string, message: string, status: string, uri: string);
30
+ static empty(): VasFileModel;
30
31
  static fromDto(fileDto: Partial<VasFileDto>): VasFileModel;
31
32
  static parseConfig(config?: string): VasFileDtoConfigDto;
32
33
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ironcode/vas-lib",
3
- "version": "0.0.36",
3
+ "version": "0.0.38",
4
4
  "peerDependencies": {
5
5
  "angular2-uuid": "^1.1.1",
6
6
  "moment": "^2.0.0"