UNPKG

the-moby-effect

Version:
22 lines 1.01 kB
import * as Schema from "effect/Schema"; import * as MobyIdentifiers from "../schemas/id.js"; import * as MobyNumber from "../schemas/number.js"; export class ImageHistoryResponseItem extends /*#__PURE__*/Schema.Class("ImageHistoryResponseItem")({ Comment: Schema.String, Created: /*#__PURE__*/MobyNumber.BigIntFromWireString.check(/*#__PURE__*/Schema.isBetweenBigInt({ minimum: -(2n ** 63n), maximum: 2n ** 63n - 1n })), CreatedBy: Schema.String, Id: MobyIdentifiers.ImageIdentifier, Size: /*#__PURE__*/MobyNumber.BigIntFromWireString.check(/*#__PURE__*/Schema.isBetweenBigInt({ minimum: -(2n ** 63n), maximum: 2n ** 63n - 1n })), Tags: /*#__PURE__*/Schema.NullOr(/*#__PURE__*/Schema.Array(Schema.String)) }, { identifier: "ImageHistoryResponseItem", title: "image.HistoryResponseItem", documentation: "https://pkg.go.dev/github.com/docker/docker@v28.4.0+incompatible/api/types/image#HistoryResponseItem" }) {} //# sourceMappingURL=ImageHistoryResponseItem.generated.js.map