tering-serieuze-types 1.13.0 → 1.14.1

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/dist/index.js CHANGED
@@ -248,6 +248,9 @@ __decorateClass([
248
248
  __decorateClass([
249
249
  (0, import_swagger6.ApiProperty)({ type: String, example: "1475909a5bbe100" })
250
250
  ], Jingle.prototype, "hash", 2);
251
+ __decorateClass([
252
+ (0, import_swagger6.ApiProperty)({ type: Number, example: 1599223250, description: "Timestamp in seconds" })
253
+ ], Jingle.prototype, "mtime", 2);
251
254
  var JingleFolder = class {
252
255
  };
253
256
  __decorateClass([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tering-serieuze-types",
3
- "version": "1.13.0",
3
+ "version": "1.14.1",
4
4
  "description": "Tering serieuze types",
5
5
  "author": "Frank",
6
6
  "repository": {
package/src/jingle.ts CHANGED
@@ -12,6 +12,9 @@ export class Jingle {
12
12
 
13
13
  @ApiProperty({ type: String, example: '1475909a5bbe100' })
14
14
  hash: string;
15
+
16
+ @ApiProperty({ type: Number, example: 1599223250, description: 'Timestamp in seconds' })
17
+ mtime: number;
15
18
  }
16
19
 
17
20
  export class JingleFolder {