the-moby-effect
Version:
Moby/Docker API client built using effect-ts
71 lines (69 loc) • 2.93 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.VolumeId = exports.TaskId = exports.ServiceId = exports.SecretId = exports.PluginId = exports.NodeId = exports.NetworkId = exports.ImageId = exports.ExecId = exports.ContainerId = exports.ConfigId = void 0;
var Schema = _interopRequireWildcard(require("effect/Schema"));
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
/**
* Id schemas.
*
* @since 1.0.0
*/
/**
* @since 1.0.0
* @category Id Schemas
*/
const ConfigId = exports.ConfigId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("ConfigId"));
/**
* @since 1.0.0
* @category Id Schemas
*/
const ContainerId = exports.ContainerId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("ContainerId"));
/**
* @since 1.0.0
* @category Id Schemas
*/
const ExecId = exports.ExecId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("ExecId"));
/**
* @since 1.0.0
* @category Id Schemas
*/
const ImageId = exports.ImageId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("ImageId"));
/**
* @since 1.0.0
* @category Id Schemas
*/
const NetworkId = exports.NetworkId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("NetworkId"));
/**
* @since 1.0.0
* @category Id Schemas
*/
const NodeId = exports.NodeId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("NodeId"));
/**
* @since 1.0.0
* @category Id Schemas
*/
const PluginId = exports.PluginId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("PluginId"));
/**
* @since 1.0.0
* @category Id Schemas
*/
const SecretId = exports.SecretId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("SecretId"));
/**
* @since 1.0.0
* @category Id Schemas
*/
const ServiceId = exports.ServiceId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("ServiceId"));
/**
* @since 1.0.0
* @category Id Schemas
*/
const TaskId = exports.TaskId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("TaskId"));
/**
* @since 1.0.0
* @category Id Schemas
*/
const VolumeId = exports.VolumeId = /*#__PURE__*/Schema.String.pipe(/*#__PURE__*/Schema.brand("VolumeId"));
//# sourceMappingURL=id.js.map