@ironcode/vas-lib 0.0.35 → 0.0.37

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,7 +22,11 @@ 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);
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);
26
30
  /**
27
31
  * @param {VasFieldDto} fileDto
28
32
  * @return {VasFieldModel}
@@ -7,6 +7,6 @@ export interface GeoLocation {
7
7
  lon: number;
8
8
  lat: number;
9
9
  };
10
- timestamp: number;
10
+ timestamp: string;
11
11
  }
12
12
  export declare const getEmptyGeoLocation: () => GeoLocation;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ironcode/vas-lib",
3
- "version": "0.0.35",
3
+ "version": "0.0.37",
4
4
  "peerDependencies": {
5
5
  "angular2-uuid": "^1.1.1",
6
6
  "moment": "^2.0.0"