tering-serieuze-types 1.25.0 → 1.26.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/dist/index.js CHANGED
@@ -382,6 +382,9 @@ __decorateClass([
382
382
  __decorateClass([
383
383
  (0, import_swagger8.ApiProperty)({ type: Date, nullable: true })
384
384
  ], Pod.prototype, "createdAt", 2);
385
+ __decorateClass([
386
+ (0, import_swagger8.ApiProperty)({ type: String })
387
+ ], Pod.prototype, "node", 2);
385
388
  var DeletePodDto = class extends (0, import_swagger8.PickType)(Pod, ["name"]) {
386
389
  };
387
390
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tering-serieuze-types",
3
- "version": "1.25.0",
3
+ "version": "1.26.0",
4
4
  "description": "Tering serieuze types",
5
5
  "author": "Frank",
6
6
  "repository": {
package/src/k8s.ts CHANGED
@@ -21,6 +21,9 @@ export class Pod {
21
21
 
22
22
  @ApiProperty({ type: Date, nullable: true })
23
23
  createdAt?: Date;
24
+
25
+ @ApiProperty({ type: String })
26
+ node: string;
24
27
  }
25
28
 
26
29
  export class DeletePodDto extends PickType(Pod, ['name'] as const) {}