tering-serieuze-types 1.24.1 → 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 +6 -0
- package/package.json +1 -1
- package/src/k8s.ts +6 -0
package/dist/index.js
CHANGED
|
@@ -379,6 +379,12 @@ __decorateClass([
|
|
|
379
379
|
__decorateClass([
|
|
380
380
|
(0, import_swagger8.ApiProperty)({ type: Number })
|
|
381
381
|
], Pod.prototype, "memory", 2);
|
|
382
|
+
__decorateClass([
|
|
383
|
+
(0, import_swagger8.ApiProperty)({ type: Date, nullable: true })
|
|
384
|
+
], Pod.prototype, "createdAt", 2);
|
|
385
|
+
__decorateClass([
|
|
386
|
+
(0, import_swagger8.ApiProperty)({ type: String })
|
|
387
|
+
], Pod.prototype, "node", 2);
|
|
382
388
|
var DeletePodDto = class extends (0, import_swagger8.PickType)(Pod, ["name"]) {
|
|
383
389
|
};
|
|
384
390
|
|
package/package.json
CHANGED
package/src/k8s.ts
CHANGED
|
@@ -18,6 +18,12 @@ export class Pod {
|
|
|
18
18
|
|
|
19
19
|
@ApiProperty({ type: Number })
|
|
20
20
|
memory: number;
|
|
21
|
+
|
|
22
|
+
@ApiProperty({ type: Date, nullable: true })
|
|
23
|
+
createdAt?: Date;
|
|
24
|
+
|
|
25
|
+
@ApiProperty({ type: String })
|
|
26
|
+
node: string;
|
|
21
27
|
}
|
|
22
28
|
|
|
23
29
|
export class DeletePodDto extends PickType(Pod, ['name'] as const) {}
|