wrangler 3.82.0 → 3.83.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.
@@ -4,6 +4,7 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
5
5
  var __getProtoOf = Object.getPrototypeOf;
6
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
7
8
  var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
8
9
  var __esm = (fn2, res) => function __init() {
9
10
  return fn2 && (res = (0, fn2[__getOwnPropNames(fn2)[0]])(fn2 = 0)), res;
@@ -33,6 +34,10 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
33
34
  mod
34
35
  ));
35
36
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
37
+ var __publicField = (obj, key, value) => {
38
+ __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
39
+ return value;
40
+ };
36
41
  var __accessCheck = (obj, member, msg) => {
37
42
  if (!member.has(obj))
38
43
  throw TypeError("Cannot " + msg);
@@ -993,7 +998,7 @@ var require_sbmh = __commonJS({
993
998
  "../../node_modules/.pnpm/@fastify+busboy@2.1.1/node_modules/@fastify/busboy/deps/streamsearch/sbmh.js"(exports2, module3) {
994
999
  "use strict";
995
1000
  init_import_meta_url();
996
- var EventEmitter5 = require("node:events").EventEmitter;
1001
+ var EventEmitter4 = require("node:events").EventEmitter;
997
1002
  var inherits = require("node:util").inherits;
998
1003
  function SBMH(needle) {
999
1004
  if (typeof needle === "string") {
@@ -1021,7 +1026,7 @@ var require_sbmh = __commonJS({
1021
1026
  }
1022
1027
  }
1023
1028
  __name(SBMH, "SBMH");
1024
- inherits(SBMH, EventEmitter5);
1029
+ inherits(SBMH, EventEmitter4);
1025
1030
  SBMH.prototype.reset = function() {
1026
1031
  this._lookbehind_size = 0;
1027
1032
  this.matches = 0;
@@ -1167,7 +1172,7 @@ var require_HeaderParser = __commonJS({
1167
1172
  "../../node_modules/.pnpm/@fastify+busboy@2.1.1/node_modules/@fastify/busboy/deps/dicer/lib/HeaderParser.js"(exports2, module3) {
1168
1173
  "use strict";
1169
1174
  init_import_meta_url();
1170
- var EventEmitter5 = require("node:events").EventEmitter;
1175
+ var EventEmitter4 = require("node:events").EventEmitter;
1171
1176
  var inherits = require("node:util").inherits;
1172
1177
  var getLimit = require_getLimit();
1173
1178
  var StreamSearch = require_sbmh();
@@ -1175,7 +1180,7 @@ var require_HeaderParser = __commonJS({
1175
1180
  var RE_CRLF = /\r\n/g;
1176
1181
  var RE_HDR = /^([^:]+):[ \t]?([\x00-\xFF]+)?$/;
1177
1182
  function HeaderParser(cfg) {
1178
- EventEmitter5.call(this);
1183
+ EventEmitter4.call(this);
1179
1184
  cfg = cfg || {};
1180
1185
  const self2 = this;
1181
1186
  this.nread = 0;
@@ -1204,7 +1209,7 @@ var require_HeaderParser = __commonJS({
1204
1209
  });
1205
1210
  }
1206
1211
  __name(HeaderParser, "HeaderParser");
1207
- inherits(HeaderParser, EventEmitter5);
1212
+ inherits(HeaderParser, EventEmitter4);
1208
1213
  HeaderParser.prototype.push = function(data) {
1209
1214
  const r4 = this.ss.push(data);
1210
1215
  if (this.finished) {
@@ -5711,8 +5716,8 @@ var require_dispatcher = __commonJS({
5711
5716
  "../../node_modules/.pnpm/undici@5.28.4/node_modules/undici/lib/dispatcher.js"(exports2, module3) {
5712
5717
  "use strict";
5713
5718
  init_import_meta_url();
5714
- var EventEmitter5 = require("events");
5715
- var Dispatcher2 = class extends EventEmitter5 {
5719
+ var EventEmitter4 = require("events");
5720
+ var Dispatcher2 = class extends EventEmitter4 {
5716
5721
  dispatch() {
5717
5722
  throw new Error("not implemented");
5718
5723
  }
@@ -24155,7 +24160,7 @@ var require_log_update = __commonJS({
24155
24160
  let previousLineCount = 0;
24156
24161
  let previousOutput = "";
24157
24162
  let hasHiddenCursor = false;
24158
- const render7 = /* @__PURE__ */ __name((str) => {
24163
+ const render3 = /* @__PURE__ */ __name((str) => {
24159
24164
  if (!showCursor && !hasHiddenCursor) {
24160
24165
  cli_cursor_1.default.hide();
24161
24166
  hasHiddenCursor = true;
@@ -24168,12 +24173,12 @@ var require_log_update = __commonJS({
24168
24173
  stream2.write(ansi_escapes_1.default.eraseLines(previousLineCount) + output);
24169
24174
  previousLineCount = output.split("\n").length;
24170
24175
  }, "render");
24171
- render7.clear = () => {
24176
+ render3.clear = () => {
24172
24177
  stream2.write(ansi_escapes_1.default.eraseLines(previousLineCount));
24173
24178
  previousOutput = "";
24174
24179
  previousLineCount = 0;
24175
24180
  };
24176
- render7.done = () => {
24181
+ render3.done = () => {
24177
24182
  previousOutput = "";
24178
24183
  previousLineCount = 0;
24179
24184
  if (!showCursor) {
@@ -24181,7 +24186,7 @@ var require_log_update = __commonJS({
24181
24186
  hasHiddenCursor = false;
24182
24187
  }
24183
24188
  };
24184
- return render7;
24189
+ return render3;
24185
24190
  }, "create");
24186
24191
  exports2.default = { create: create2 };
24187
24192
  }
@@ -35201,7 +35206,7 @@ var require_websocket2 = __commonJS({
35201
35206
  "../../node_modules/.pnpm/ws@7.5.6/node_modules/ws/lib/websocket.js"(exports2, module3) {
35202
35207
  "use strict";
35203
35208
  init_import_meta_url();
35204
- var EventEmitter5 = require("events");
35209
+ var EventEmitter4 = require("events");
35205
35210
  var https3 = require("https");
35206
35211
  var http4 = require("http");
35207
35212
  var net3 = require("net");
@@ -35226,7 +35231,7 @@ var require_websocket2 = __commonJS({
35226
35231
  var readyStates = ["CONNECTING", "OPEN", "CLOSING", "CLOSED"];
35227
35232
  var protocolVersions = [8, 13];
35228
35233
  var closeTimeout = 30 * 1e3;
35229
- var WebSocket2 = class extends EventEmitter5 {
35234
+ var WebSocket2 = class extends EventEmitter4 {
35230
35235
  /**
35231
35236
  * Create a new `WebSocket`.
35232
35237
  *
@@ -36109,7 +36114,7 @@ var require_websocket_server = __commonJS({
36109
36114
  "../../node_modules/.pnpm/ws@7.5.6/node_modules/ws/lib/websocket-server.js"(exports2, module3) {
36110
36115
  "use strict";
36111
36116
  init_import_meta_url();
36112
- var EventEmitter5 = require("events");
36117
+ var EventEmitter4 = require("events");
36113
36118
  var http4 = require("http");
36114
36119
  var https3 = require("https");
36115
36120
  var net3 = require("net");
@@ -36123,7 +36128,7 @@ var require_websocket_server = __commonJS({
36123
36128
  var RUNNING = 0;
36124
36129
  var CLOSING = 1;
36125
36130
  var CLOSED = 2;
36126
- var WebSocketServer2 = class extends EventEmitter5 {
36131
+ var WebSocketServer2 = class extends EventEmitter4 {
36127
36132
  /**
36128
36133
  * Create a `WebSocketServer` instance.
36129
36134
  *
@@ -41539,7 +41544,7 @@ var require_backend = __commonJS({
41539
41544
  return renderer_typeof(symbolOrNumber) === "symbol" ? symbolOrNumber.toString() : symbolOrNumber;
41540
41545
  }
41541
41546
  __name(getTypeSymbol, "getTypeSymbol");
41542
- var _ReactTypeOfWork = ReactTypeOfWork, CacheComponent = _ReactTypeOfWork.CacheComponent, ClassComponent = _ReactTypeOfWork.ClassComponent, IncompleteClassComponent = _ReactTypeOfWork.IncompleteClassComponent, FunctionComponent = _ReactTypeOfWork.FunctionComponent, IndeterminateComponent = _ReactTypeOfWork.IndeterminateComponent, ForwardRef = _ReactTypeOfWork.ForwardRef, HostRoot = _ReactTypeOfWork.HostRoot, HostComponent = _ReactTypeOfWork.HostComponent, HostPortal = _ReactTypeOfWork.HostPortal, HostText = _ReactTypeOfWork.HostText, Fragment7 = _ReactTypeOfWork.Fragment, LazyComponent = _ReactTypeOfWork.LazyComponent, LegacyHiddenComponent = _ReactTypeOfWork.LegacyHiddenComponent, MemoComponent = _ReactTypeOfWork.MemoComponent, OffscreenComponent = _ReactTypeOfWork.OffscreenComponent, Profiler = _ReactTypeOfWork.Profiler, ScopeComponent = _ReactTypeOfWork.ScopeComponent, SimpleMemoComponent = _ReactTypeOfWork.SimpleMemoComponent, SuspenseComponent = _ReactTypeOfWork.SuspenseComponent, SuspenseListComponent = _ReactTypeOfWork.SuspenseListComponent;
41547
+ var _ReactTypeOfWork = ReactTypeOfWork, CacheComponent = _ReactTypeOfWork.CacheComponent, ClassComponent = _ReactTypeOfWork.ClassComponent, IncompleteClassComponent = _ReactTypeOfWork.IncompleteClassComponent, FunctionComponent = _ReactTypeOfWork.FunctionComponent, IndeterminateComponent = _ReactTypeOfWork.IndeterminateComponent, ForwardRef = _ReactTypeOfWork.ForwardRef, HostRoot = _ReactTypeOfWork.HostRoot, HostComponent = _ReactTypeOfWork.HostComponent, HostPortal = _ReactTypeOfWork.HostPortal, HostText = _ReactTypeOfWork.HostText, Fragment3 = _ReactTypeOfWork.Fragment, LazyComponent = _ReactTypeOfWork.LazyComponent, LegacyHiddenComponent = _ReactTypeOfWork.LegacyHiddenComponent, MemoComponent = _ReactTypeOfWork.MemoComponent, OffscreenComponent = _ReactTypeOfWork.OffscreenComponent, Profiler = _ReactTypeOfWork.Profiler, ScopeComponent = _ReactTypeOfWork.ScopeComponent, SimpleMemoComponent = _ReactTypeOfWork.SimpleMemoComponent, SuspenseComponent = _ReactTypeOfWork.SuspenseComponent, SuspenseListComponent = _ReactTypeOfWork.SuspenseListComponent;
41543
41548
  function resolveFiberType(type) {
41544
41549
  var typeSymbol = getTypeSymbol(type);
41545
41550
  switch (typeSymbol) {
@@ -41603,7 +41608,7 @@ var require_backend = __commonJS({
41603
41608
  return type;
41604
41609
  case HostPortal:
41605
41610
  case HostText:
41606
- case Fragment7:
41611
+ case Fragment3:
41607
41612
  return null;
41608
41613
  case LazyComponent:
41609
41614
  return "Lazy";
@@ -41708,7 +41713,7 @@ var require_backend = __commonJS({
41708
41713
  var version4 = renderer.reconcilerVersion || renderer.version;
41709
41714
  var _getInternalReactCons = getInternalReactConstants(version4), getDisplayNameForFiber = _getInternalReactCons.getDisplayNameForFiber, getTypeSymbol = _getInternalReactCons.getTypeSymbol, ReactPriorityLevels = _getInternalReactCons.ReactPriorityLevels, ReactTypeOfWork = _getInternalReactCons.ReactTypeOfWork, ReactTypeOfSideEffect = _getInternalReactCons.ReactTypeOfSideEffect, StrictModeBits = _getInternalReactCons.StrictModeBits;
41710
41715
  var DidCapture = ReactTypeOfSideEffect.DidCapture, Hydrating = ReactTypeOfSideEffect.Hydrating, NoFlags = ReactTypeOfSideEffect.NoFlags, PerformedWork = ReactTypeOfSideEffect.PerformedWork, Placement = ReactTypeOfSideEffect.Placement;
41711
- var CacheComponent = ReactTypeOfWork.CacheComponent, ClassComponent = ReactTypeOfWork.ClassComponent, ContextConsumer = ReactTypeOfWork.ContextConsumer, DehydratedSuspenseComponent = ReactTypeOfWork.DehydratedSuspenseComponent, ForwardRef = ReactTypeOfWork.ForwardRef, Fragment7 = ReactTypeOfWork.Fragment, FunctionComponent = ReactTypeOfWork.FunctionComponent, HostRoot = ReactTypeOfWork.HostRoot, HostPortal = ReactTypeOfWork.HostPortal, HostComponent = ReactTypeOfWork.HostComponent, HostText = ReactTypeOfWork.HostText, IncompleteClassComponent = ReactTypeOfWork.IncompleteClassComponent, IndeterminateComponent = ReactTypeOfWork.IndeterminateComponent, LegacyHiddenComponent = ReactTypeOfWork.LegacyHiddenComponent, MemoComponent = ReactTypeOfWork.MemoComponent, OffscreenComponent = ReactTypeOfWork.OffscreenComponent, SimpleMemoComponent = ReactTypeOfWork.SimpleMemoComponent, SuspenseComponent = ReactTypeOfWork.SuspenseComponent, SuspenseListComponent = ReactTypeOfWork.SuspenseListComponent;
41716
+ var CacheComponent = ReactTypeOfWork.CacheComponent, ClassComponent = ReactTypeOfWork.ClassComponent, ContextConsumer = ReactTypeOfWork.ContextConsumer, DehydratedSuspenseComponent = ReactTypeOfWork.DehydratedSuspenseComponent, ForwardRef = ReactTypeOfWork.ForwardRef, Fragment3 = ReactTypeOfWork.Fragment, FunctionComponent = ReactTypeOfWork.FunctionComponent, HostRoot = ReactTypeOfWork.HostRoot, HostPortal = ReactTypeOfWork.HostPortal, HostComponent = ReactTypeOfWork.HostComponent, HostText = ReactTypeOfWork.HostText, IncompleteClassComponent = ReactTypeOfWork.IncompleteClassComponent, IndeterminateComponent = ReactTypeOfWork.IndeterminateComponent, LegacyHiddenComponent = ReactTypeOfWork.LegacyHiddenComponent, MemoComponent = ReactTypeOfWork.MemoComponent, OffscreenComponent = ReactTypeOfWork.OffscreenComponent, SimpleMemoComponent = ReactTypeOfWork.SimpleMemoComponent, SuspenseComponent = ReactTypeOfWork.SuspenseComponent, SuspenseListComponent = ReactTypeOfWork.SuspenseListComponent;
41712
41717
  var ImmediatePriority = ReactPriorityLevels.ImmediatePriority, UserBlockingPriority = ReactPriorityLevels.UserBlockingPriority, NormalPriority = ReactPriorityLevels.NormalPriority, LowPriority = ReactPriorityLevels.LowPriority, IdlePriority = ReactPriorityLevels.IdlePriority, NoPriority = ReactPriorityLevels.NoPriority;
41713
41718
  var getLaneLabelMap = renderer.getLaneLabelMap, injectProfilingHooks = renderer.injectProfilingHooks, overrideHookState = renderer.overrideHookState, overrideHookStateDeletePath = renderer.overrideHookStateDeletePath, overrideHookStateRenamePath = renderer.overrideHookStateRenamePath, overrideProps = renderer.overrideProps, overridePropsDeletePath = renderer.overridePropsDeletePath, overridePropsRenamePath = renderer.overridePropsRenamePath, scheduleRefresh = renderer.scheduleRefresh, setErrorHandler = renderer.setErrorHandler, setSuspenseHandler = renderer.setSuspenseHandler, scheduleUpdate = renderer.scheduleUpdate;
41714
41719
  var supportsTogglingError = typeof setErrorHandler === "function" && typeof scheduleUpdate === "function";
@@ -41954,7 +41959,7 @@ var require_backend = __commonJS({
41954
41959
  return true;
41955
41960
  case HostPortal:
41956
41961
  case HostText:
41957
- case Fragment7:
41962
+ case Fragment3:
41958
41963
  case LegacyHiddenComponent:
41959
41964
  case OffscreenComponent:
41960
41965
  return true;
@@ -42061,7 +42066,7 @@ var require_backend = __commonJS({
42061
42066
  ];
42062
42067
  case HostPortal:
42063
42068
  case HostText:
42064
- case Fragment7:
42069
+ case Fragment3:
42065
42070
  return types[
42066
42071
  "k"
42067
42072
  /* ElementTypeOtherOrUnknown */
@@ -47824,13 +47829,13 @@ var require_backend = __commonJS({
47824
47829
  return obj;
47825
47830
  }
47826
47831
  __name(_defineProperty11, "_defineProperty");
47827
- var EventEmitter5 = /* @__PURE__ */ function() {
47828
- function EventEmitter6() {
47829
- _classCallCheck5(this, EventEmitter6);
47832
+ var EventEmitter4 = /* @__PURE__ */ function() {
47833
+ function EventEmitter5() {
47834
+ _classCallCheck5(this, EventEmitter5);
47830
47835
  _defineProperty11(this, "listenersMap", /* @__PURE__ */ new Map());
47831
47836
  }
47832
- __name(EventEmitter6, "EventEmitter");
47833
- _createClass5(EventEmitter6, [{
47837
+ __name(EventEmitter5, "EventEmitter");
47838
+ _createClass5(EventEmitter5, [{
47834
47839
  key: "addListener",
47835
47840
  value: /* @__PURE__ */ __name(function addListener(event, listener) {
47836
47841
  var listeners = this.listenersMap.get(event);
@@ -47892,7 +47897,7 @@ var require_backend = __commonJS({
47892
47897
  }
47893
47898
  }, "removeListener")
47894
47899
  }]);
47895
- return EventEmitter6;
47900
+ return EventEmitter5;
47896
47901
  }();
47897
47902
  var lodash_throttle = __webpack_require__(15);
47898
47903
  var lodash_throttle_default = /* @__PURE__ */ __webpack_require__.n(lodash_throttle);
@@ -48993,7 +48998,7 @@ var require_backend = __commonJS({
48993
48998
  }, "get")
48994
48999
  }]);
48995
49000
  return Bridge2;
48996
- }(EventEmitter5);
49001
+ }(EventEmitter4);
48997
49002
  var src_bridge = Bridge;
48998
49003
  var utils = __webpack_require__(4);
48999
49004
  function agent_typeof(obj) {
@@ -49636,7 +49641,7 @@ var require_backend = __commonJS({
49636
49641
  }, "get")
49637
49642
  }]);
49638
49643
  return Agent;
49639
- }(EventEmitter5);
49644
+ }(EventEmitter4);
49640
49645
  function installHook(target) {
49641
49646
  if (target.hasOwnProperty("__REACT_DEVTOOLS_GLOBAL_HOOK__")) {
49642
49647
  return null;
@@ -53244,18 +53249,18 @@ var require_Box = __commonJS({
53244
53249
  };
53245
53250
  Object.defineProperty(exports2, "__esModule", { value: true });
53246
53251
  var react_1 = __importStar(require_react());
53247
- var Box6 = react_1.forwardRef((_a2, ref) => {
53252
+ var Box2 = react_1.forwardRef((_a2, ref) => {
53248
53253
  var { children } = _a2, style = __rest(_a2, ["children"]);
53249
53254
  const transformedStyle = Object.assign(Object.assign({}, style), { marginLeft: style.marginLeft || style.marginX || style.margin || 0, marginRight: style.marginRight || style.marginX || style.margin || 0, marginTop: style.marginTop || style.marginY || style.margin || 0, marginBottom: style.marginBottom || style.marginY || style.margin || 0, paddingLeft: style.paddingLeft || style.paddingX || style.padding || 0, paddingRight: style.paddingRight || style.paddingX || style.padding || 0, paddingTop: style.paddingTop || style.paddingY || style.padding || 0, paddingBottom: style.paddingBottom || style.paddingY || style.padding || 0 });
53250
53255
  return react_1.default.createElement("ink-box", { ref, style: transformedStyle }, children);
53251
53256
  });
53252
- Box6.displayName = "Box";
53253
- Box6.defaultProps = {
53257
+ Box2.displayName = "Box";
53258
+ Box2.defaultProps = {
53254
53259
  flexDirection: "row",
53255
53260
  flexGrow: 0,
53256
53261
  flexShrink: 1
53257
53262
  };
53258
- exports2.default = Box6;
53263
+ exports2.default = Box2;
53259
53264
  }
53260
53265
  });
53261
53266
 
@@ -53271,7 +53276,7 @@ var require_Text = __commonJS({
53271
53276
  var react_1 = __importDefault(require_react());
53272
53277
  var chalk_1 = __importDefault(require_source());
53273
53278
  var colorize_1 = __importDefault(require_colorize());
53274
- var Text11 = /* @__PURE__ */ __name(({ color, backgroundColor, dimColor, bold: bold2, italic, underline, strikethrough, inverse, wrap: wrap4, children }) => {
53279
+ var Text3 = /* @__PURE__ */ __name(({ color, backgroundColor, dimColor, bold: bold2, italic, underline, strikethrough, inverse, wrap: wrap4, children }) => {
53275
53280
  if (children === void 0 || children === null) {
53276
53281
  return null;
53277
53282
  }
@@ -53304,8 +53309,8 @@ var require_Text = __commonJS({
53304
53309
  }, "transform");
53305
53310
  return react_1.default.createElement("ink-text", { style: { flexGrow: 0, flexShrink: 1, flexDirection: "row", textWrap: wrap4 }, internal_transform: transform }, children);
53306
53311
  }, "Text");
53307
- Text11.displayName = "Text";
53308
- Text11.defaultProps = {
53312
+ Text3.displayName = "Text";
53313
+ Text3.defaultProps = {
53309
53314
  dimColor: false,
53310
53315
  bold: false,
53311
53316
  italic: false,
@@ -53313,7 +53318,7 @@ var require_Text = __commonJS({
53313
53318
  strikethrough: false,
53314
53319
  wrap: "wrap"
53315
53320
  };
53316
- exports2.default = Text11;
53321
+ exports2.default = Text3;
53317
53322
  }
53318
53323
  });
53319
53324
 
@@ -54012,7 +54017,7 @@ var require_render = __commonJS({
54012
54017
  var ink_1 = __importDefault(require_ink());
54013
54018
  var instances_1 = __importDefault(require_instances());
54014
54019
  var stream_1 = require("stream");
54015
- var render7 = /* @__PURE__ */ __name((node2, options29) => {
54020
+ var render3 = /* @__PURE__ */ __name((node2, options29) => {
54016
54021
  const inkOptions = Object.assign({ stdout: process.stdout, stdin: process.stdin, stderr: process.stderr, debug: false, exitOnCtrlC: true, patchConsole: true }, getOptions(options29));
54017
54022
  const instance = getInstance(inkOptions.stdout, () => new ink_1.default(inkOptions));
54018
54023
  instance.render(node2);
@@ -54024,7 +54029,7 @@ var require_render = __commonJS({
54024
54029
  clear: instance.clear
54025
54030
  };
54026
54031
  }, "render");
54027
- exports2.default = render7;
54032
+ exports2.default = render3;
54028
54033
  var getOptions = /* @__PURE__ */ __name((stdout2 = {}) => {
54029
54034
  if (stdout2 instanceof stream_1.Stream) {
54030
54035
  return {
@@ -54082,8 +54087,8 @@ var require_Static = __commonJS({
54082
54087
  };
54083
54088
  Object.defineProperty(exports2, "__esModule", { value: true });
54084
54089
  var react_1 = __importStar(require_react());
54085
- var Static2 = /* @__PURE__ */ __name((props) => {
54086
- const { items, children: render7, style: customStyle } = props;
54090
+ var Static = /* @__PURE__ */ __name((props) => {
54091
+ const { items, children: render3, style: customStyle } = props;
54087
54092
  const [index, setIndex] = react_1.useState(0);
54088
54093
  const itemsToRender = react_1.useMemo(() => {
54089
54094
  return items.slice(index);
@@ -54092,7 +54097,7 @@ var require_Static = __commonJS({
54092
54097
  setIndex(items.length);
54093
54098
  }, [items.length]);
54094
54099
  const children = itemsToRender.map((item, itemIndex) => {
54095
- return render7(item, index + itemIndex);
54100
+ return render3(item, index + itemIndex);
54096
54101
  });
54097
54102
  const style = react_1.useMemo(() => Object.assign({ position: "absolute", flexDirection: "column" }, customStyle), [customStyle]);
54098
54103
  return react_1.default.createElement("ink-box", {
@@ -54101,8 +54106,8 @@ var require_Static = __commonJS({
54101
54106
  style
54102
54107
  }, children);
54103
54108
  }, "Static");
54104
- Static2.displayName = "Static";
54105
- exports2.default = Static2;
54109
+ Static.displayName = "Static";
54110
+ exports2.default = Static;
54106
54111
  }
54107
54112
  });
54108
54113
 
@@ -54584,12 +54589,12 @@ var require_eventemitter3 = __commonJS({
54584
54589
  delete emitter._events[evt];
54585
54590
  }
54586
54591
  __name(clearEvent, "clearEvent");
54587
- function EventEmitter5() {
54592
+ function EventEmitter4() {
54588
54593
  this._events = new Events();
54589
54594
  this._eventsCount = 0;
54590
54595
  }
54591
- __name(EventEmitter5, "EventEmitter");
54592
- EventEmitter5.prototype.eventNames = /* @__PURE__ */ __name(function eventNames() {
54596
+ __name(EventEmitter4, "EventEmitter");
54597
+ EventEmitter4.prototype.eventNames = /* @__PURE__ */ __name(function eventNames() {
54593
54598
  var names = [], events4, name2;
54594
54599
  if (this._eventsCount === 0)
54595
54600
  return names;
@@ -54602,7 +54607,7 @@ var require_eventemitter3 = __commonJS({
54602
54607
  }
54603
54608
  return names;
54604
54609
  }, "eventNames");
54605
- EventEmitter5.prototype.listeners = /* @__PURE__ */ __name(function listeners(event) {
54610
+ EventEmitter4.prototype.listeners = /* @__PURE__ */ __name(function listeners(event) {
54606
54611
  var evt = prefix ? prefix + event : event, handlers2 = this._events[evt];
54607
54612
  if (!handlers2)
54608
54613
  return [];
@@ -54613,7 +54618,7 @@ var require_eventemitter3 = __commonJS({
54613
54618
  }
54614
54619
  return ee;
54615
54620
  }, "listeners");
54616
- EventEmitter5.prototype.listenerCount = /* @__PURE__ */ __name(function listenerCount(event) {
54621
+ EventEmitter4.prototype.listenerCount = /* @__PURE__ */ __name(function listenerCount(event) {
54617
54622
  var evt = prefix ? prefix + event : event, listeners = this._events[evt];
54618
54623
  if (!listeners)
54619
54624
  return 0;
@@ -54621,7 +54626,7 @@ var require_eventemitter3 = __commonJS({
54621
54626
  return 1;
54622
54627
  return listeners.length;
54623
54628
  }, "listenerCount");
54624
- EventEmitter5.prototype.emit = /* @__PURE__ */ __name(function emit(event, a1, a2, a3, a4, a5) {
54629
+ EventEmitter4.prototype.emit = /* @__PURE__ */ __name(function emit(event, a1, a2, a3, a4, a5) {
54625
54630
  var evt = prefix ? prefix + event : event;
54626
54631
  if (!this._events[evt])
54627
54632
  return false;
@@ -54676,13 +54681,13 @@ var require_eventemitter3 = __commonJS({
54676
54681
  }
54677
54682
  return true;
54678
54683
  }, "emit");
54679
- EventEmitter5.prototype.on = /* @__PURE__ */ __name(function on(event, fn2, context2) {
54684
+ EventEmitter4.prototype.on = /* @__PURE__ */ __name(function on(event, fn2, context2) {
54680
54685
  return addListener(this, event, fn2, context2, false);
54681
54686
  }, "on");
54682
- EventEmitter5.prototype.once = /* @__PURE__ */ __name(function once2(event, fn2, context2) {
54687
+ EventEmitter4.prototype.once = /* @__PURE__ */ __name(function once2(event, fn2, context2) {
54683
54688
  return addListener(this, event, fn2, context2, true);
54684
54689
  }, "once");
54685
- EventEmitter5.prototype.removeListener = /* @__PURE__ */ __name(function removeListener(event, fn2, context2, once2) {
54690
+ EventEmitter4.prototype.removeListener = /* @__PURE__ */ __name(function removeListener(event, fn2, context2, once2) {
54686
54691
  var evt = prefix ? prefix + event : event;
54687
54692
  if (!this._events[evt])
54688
54693
  return this;
@@ -54708,7 +54713,7 @@ var require_eventemitter3 = __commonJS({
54708
54713
  }
54709
54714
  return this;
54710
54715
  }, "removeListener");
54711
- EventEmitter5.prototype.removeAllListeners = /* @__PURE__ */ __name(function removeAllListeners(event) {
54716
+ EventEmitter4.prototype.removeAllListeners = /* @__PURE__ */ __name(function removeAllListeners(event) {
54712
54717
  var evt;
54713
54718
  if (event) {
54714
54719
  evt = prefix ? prefix + event : event;
@@ -54720,12 +54725,12 @@ var require_eventemitter3 = __commonJS({
54720
54725
  }
54721
54726
  return this;
54722
54727
  }, "removeAllListeners");
54723
- EventEmitter5.prototype.off = EventEmitter5.prototype.removeListener;
54724
- EventEmitter5.prototype.addListener = EventEmitter5.prototype.on;
54725
- EventEmitter5.prefixed = prefix;
54726
- EventEmitter5.EventEmitter = EventEmitter5;
54728
+ EventEmitter4.prototype.off = EventEmitter4.prototype.removeListener;
54729
+ EventEmitter4.prototype.addListener = EventEmitter4.prototype.on;
54730
+ EventEmitter4.prefixed = prefix;
54731
+ EventEmitter4.EventEmitter = EventEmitter4;
54727
54732
  if ("undefined" !== typeof module3) {
54728
- module3.exports = EventEmitter5;
54733
+ module3.exports = EventEmitter4;
54729
54734
  }
54730
54735
  }
54731
54736
  });
@@ -56405,7 +56410,7 @@ var require_table = __commonJS({
56405
56410
  var debug = require_debug();
56406
56411
  var utils = require_utils2();
56407
56412
  var tableLayout = require_layout_manager();
56408
- var Table10 = class extends Array {
56413
+ var Table2 = class extends Array {
56409
56414
  constructor(opts) {
56410
56415
  super();
56411
56416
  const options29 = utils.mergeOptions(opts);
@@ -56480,8 +56485,8 @@ var require_table = __commonJS({
56480
56485
  return str[0].length;
56481
56486
  }
56482
56487
  };
56483
- __name(Table10, "Table");
56484
- Table10.reset = () => debug.reset();
56488
+ __name(Table2, "Table");
56489
+ Table2.reset = () => debug.reset();
56485
56490
  function doDraw(row, lineNum, result) {
56486
56491
  let line = [];
56487
56492
  row.forEach(function(cell) {
@@ -56492,7 +56497,7 @@ var require_table = __commonJS({
56492
56497
  result.push(str);
56493
56498
  }
56494
56499
  __name(doDraw, "doDraw");
56495
- module3.exports = Table10;
56500
+ module3.exports = Table2;
56496
56501
  }
56497
56502
  });
56498
56503
 
@@ -60364,7 +60369,7 @@ var require_style = __commonJS({
60364
60369
  render: (input) => `${input}`
60365
60370
  }
60366
60371
  });
60367
- var render7 = /* @__PURE__ */ __name((type) => styles4[type] || styles4.default, "render");
60372
+ var render3 = /* @__PURE__ */ __name((type) => styles4[type] || styles4.default, "render");
60368
60373
  var symbols = Object.freeze({
60369
60374
  aborted: c2.red(figures.cross),
60370
60375
  done: c2.green(figures.tick),
@@ -60376,7 +60381,7 @@ var require_style = __commonJS({
60376
60381
  var item = /* @__PURE__ */ __name((expandable, expanded) => c2.gray(expandable ? expanded ? figures.pointerSmall : "+" : figures.line), "item");
60377
60382
  module3.exports = {
60378
60383
  styles: styles4,
60379
- render: render7,
60384
+ render: render3,
60380
60385
  symbols,
60381
60386
  symbol,
60382
60387
  delimiter,
@@ -60464,12 +60469,12 @@ var require_prompt = __commonJS({
60464
60469
  var readline6 = require("readline");
60465
60470
  var _require = require_util9();
60466
60471
  var action = _require.action;
60467
- var EventEmitter5 = require("events");
60472
+ var EventEmitter4 = require("events");
60468
60473
  var _require2 = require_src();
60469
60474
  var beep = _require2.beep;
60470
60475
  var cursor = _require2.cursor;
60471
60476
  var color = require_kleur();
60472
- var Prompt = class extends EventEmitter5 {
60477
+ var Prompt = class extends EventEmitter4 {
60473
60478
  constructor(opts = {}) {
60474
60479
  super();
60475
60480
  this.firstRender = true;
@@ -63024,7 +63029,7 @@ var require_style2 = __commonJS({
63024
63029
  invisible: { scale: 0, render: (input) => "" },
63025
63030
  default: { scale: 1, render: (input) => `${input}` }
63026
63031
  });
63027
- var render7 = /* @__PURE__ */ __name((type) => styles4[type] || styles4.default, "render");
63032
+ var render3 = /* @__PURE__ */ __name((type) => styles4[type] || styles4.default, "render");
63028
63033
  var symbols = Object.freeze({
63029
63034
  aborted: c2.red(figures.cross),
63030
63035
  done: c2.green(figures.tick),
@@ -63036,7 +63041,7 @@ var require_style2 = __commonJS({
63036
63041
  var item = /* @__PURE__ */ __name((expandable, expanded) => c2.gray(expandable ? expanded ? figures.pointerSmall : "+" : figures.line), "item");
63037
63042
  module3.exports = {
63038
63043
  styles: styles4,
63039
- render: render7,
63044
+ render: render3,
63040
63045
  symbols,
63041
63046
  symbol,
63042
63047
  delimiter,
@@ -63120,10 +63125,10 @@ var require_prompt2 = __commonJS({
63120
63125
  init_import_meta_url();
63121
63126
  var readline6 = require("readline");
63122
63127
  var { action } = require_util10();
63123
- var EventEmitter5 = require("events");
63128
+ var EventEmitter4 = require("events");
63124
63129
  var { beep, cursor } = require_src();
63125
63130
  var color = require_kleur();
63126
- var Prompt = class extends EventEmitter5 {
63131
+ var Prompt = class extends EventEmitter4 {
63127
63132
  constructor(opts = {}) {
63128
63133
  super();
63129
63134
  this.firstRender = true;
@@ -68623,1682 +68628,6 @@ var init_hash = __esm({
68623
68628
  }
68624
68629
  });
68625
68630
 
68626
- // ../../node_modules/.pnpm/cli-spinners@2.9.2/node_modules/cli-spinners/spinners.json
68627
- var require_spinners = __commonJS({
68628
- "../../node_modules/.pnpm/cli-spinners@2.9.2/node_modules/cli-spinners/spinners.json"(exports2, module3) {
68629
- module3.exports = {
68630
- dots: {
68631
- interval: 80,
68632
- frames: [
68633
- "\u280B",
68634
- "\u2819",
68635
- "\u2839",
68636
- "\u2838",
68637
- "\u283C",
68638
- "\u2834",
68639
- "\u2826",
68640
- "\u2827",
68641
- "\u2807",
68642
- "\u280F"
68643
- ]
68644
- },
68645
- dots2: {
68646
- interval: 80,
68647
- frames: [
68648
- "\u28FE",
68649
- "\u28FD",
68650
- "\u28FB",
68651
- "\u28BF",
68652
- "\u287F",
68653
- "\u28DF",
68654
- "\u28EF",
68655
- "\u28F7"
68656
- ]
68657
- },
68658
- dots3: {
68659
- interval: 80,
68660
- frames: [
68661
- "\u280B",
68662
- "\u2819",
68663
- "\u281A",
68664
- "\u281E",
68665
- "\u2816",
68666
- "\u2826",
68667
- "\u2834",
68668
- "\u2832",
68669
- "\u2833",
68670
- "\u2813"
68671
- ]
68672
- },
68673
- dots4: {
68674
- interval: 80,
68675
- frames: [
68676
- "\u2804",
68677
- "\u2806",
68678
- "\u2807",
68679
- "\u280B",
68680
- "\u2819",
68681
- "\u2838",
68682
- "\u2830",
68683
- "\u2820",
68684
- "\u2830",
68685
- "\u2838",
68686
- "\u2819",
68687
- "\u280B",
68688
- "\u2807",
68689
- "\u2806"
68690
- ]
68691
- },
68692
- dots5: {
68693
- interval: 80,
68694
- frames: [
68695
- "\u280B",
68696
- "\u2819",
68697
- "\u281A",
68698
- "\u2812",
68699
- "\u2802",
68700
- "\u2802",
68701
- "\u2812",
68702
- "\u2832",
68703
- "\u2834",
68704
- "\u2826",
68705
- "\u2816",
68706
- "\u2812",
68707
- "\u2810",
68708
- "\u2810",
68709
- "\u2812",
68710
- "\u2813",
68711
- "\u280B"
68712
- ]
68713
- },
68714
- dots6: {
68715
- interval: 80,
68716
- frames: [
68717
- "\u2801",
68718
- "\u2809",
68719
- "\u2819",
68720
- "\u281A",
68721
- "\u2812",
68722
- "\u2802",
68723
- "\u2802",
68724
- "\u2812",
68725
- "\u2832",
68726
- "\u2834",
68727
- "\u2824",
68728
- "\u2804",
68729
- "\u2804",
68730
- "\u2824",
68731
- "\u2834",
68732
- "\u2832",
68733
- "\u2812",
68734
- "\u2802",
68735
- "\u2802",
68736
- "\u2812",
68737
- "\u281A",
68738
- "\u2819",
68739
- "\u2809",
68740
- "\u2801"
68741
- ]
68742
- },
68743
- dots7: {
68744
- interval: 80,
68745
- frames: [
68746
- "\u2808",
68747
- "\u2809",
68748
- "\u280B",
68749
- "\u2813",
68750
- "\u2812",
68751
- "\u2810",
68752
- "\u2810",
68753
- "\u2812",
68754
- "\u2816",
68755
- "\u2826",
68756
- "\u2824",
68757
- "\u2820",
68758
- "\u2820",
68759
- "\u2824",
68760
- "\u2826",
68761
- "\u2816",
68762
- "\u2812",
68763
- "\u2810",
68764
- "\u2810",
68765
- "\u2812",
68766
- "\u2813",
68767
- "\u280B",
68768
- "\u2809",
68769
- "\u2808"
68770
- ]
68771
- },
68772
- dots8: {
68773
- interval: 80,
68774
- frames: [
68775
- "\u2801",
68776
- "\u2801",
68777
- "\u2809",
68778
- "\u2819",
68779
- "\u281A",
68780
- "\u2812",
68781
- "\u2802",
68782
- "\u2802",
68783
- "\u2812",
68784
- "\u2832",
68785
- "\u2834",
68786
- "\u2824",
68787
- "\u2804",
68788
- "\u2804",
68789
- "\u2824",
68790
- "\u2820",
68791
- "\u2820",
68792
- "\u2824",
68793
- "\u2826",
68794
- "\u2816",
68795
- "\u2812",
68796
- "\u2810",
68797
- "\u2810",
68798
- "\u2812",
68799
- "\u2813",
68800
- "\u280B",
68801
- "\u2809",
68802
- "\u2808",
68803
- "\u2808"
68804
- ]
68805
- },
68806
- dots9: {
68807
- interval: 80,
68808
- frames: [
68809
- "\u28B9",
68810
- "\u28BA",
68811
- "\u28BC",
68812
- "\u28F8",
68813
- "\u28C7",
68814
- "\u2867",
68815
- "\u2857",
68816
- "\u284F"
68817
- ]
68818
- },
68819
- dots10: {
68820
- interval: 80,
68821
- frames: [
68822
- "\u2884",
68823
- "\u2882",
68824
- "\u2881",
68825
- "\u2841",
68826
- "\u2848",
68827
- "\u2850",
68828
- "\u2860"
68829
- ]
68830
- },
68831
- dots11: {
68832
- interval: 100,
68833
- frames: [
68834
- "\u2801",
68835
- "\u2802",
68836
- "\u2804",
68837
- "\u2840",
68838
- "\u2880",
68839
- "\u2820",
68840
- "\u2810",
68841
- "\u2808"
68842
- ]
68843
- },
68844
- dots12: {
68845
- interval: 80,
68846
- frames: [
68847
- "\u2880\u2800",
68848
- "\u2840\u2800",
68849
- "\u2804\u2800",
68850
- "\u2882\u2800",
68851
- "\u2842\u2800",
68852
- "\u2805\u2800",
68853
- "\u2883\u2800",
68854
- "\u2843\u2800",
68855
- "\u280D\u2800",
68856
- "\u288B\u2800",
68857
- "\u284B\u2800",
68858
- "\u280D\u2801",
68859
- "\u288B\u2801",
68860
- "\u284B\u2801",
68861
- "\u280D\u2809",
68862
- "\u280B\u2809",
68863
- "\u280B\u2809",
68864
- "\u2809\u2819",
68865
- "\u2809\u2819",
68866
- "\u2809\u2829",
68867
- "\u2808\u2899",
68868
- "\u2808\u2859",
68869
- "\u2888\u2829",
68870
- "\u2840\u2899",
68871
- "\u2804\u2859",
68872
- "\u2882\u2829",
68873
- "\u2842\u2898",
68874
- "\u2805\u2858",
68875
- "\u2883\u2828",
68876
- "\u2843\u2890",
68877
- "\u280D\u2850",
68878
- "\u288B\u2820",
68879
- "\u284B\u2880",
68880
- "\u280D\u2841",
68881
- "\u288B\u2801",
68882
- "\u284B\u2801",
68883
- "\u280D\u2809",
68884
- "\u280B\u2809",
68885
- "\u280B\u2809",
68886
- "\u2809\u2819",
68887
- "\u2809\u2819",
68888
- "\u2809\u2829",
68889
- "\u2808\u2899",
68890
- "\u2808\u2859",
68891
- "\u2808\u2829",
68892
- "\u2800\u2899",
68893
- "\u2800\u2859",
68894
- "\u2800\u2829",
68895
- "\u2800\u2898",
68896
- "\u2800\u2858",
68897
- "\u2800\u2828",
68898
- "\u2800\u2890",
68899
- "\u2800\u2850",
68900
- "\u2800\u2820",
68901
- "\u2800\u2880",
68902
- "\u2800\u2840"
68903
- ]
68904
- },
68905
- dots13: {
68906
- interval: 80,
68907
- frames: [
68908
- "\u28FC",
68909
- "\u28F9",
68910
- "\u28BB",
68911
- "\u283F",
68912
- "\u285F",
68913
- "\u28CF",
68914
- "\u28E7",
68915
- "\u28F6"
68916
- ]
68917
- },
68918
- dots8Bit: {
68919
- interval: 80,
68920
- frames: [
68921
- "\u2800",
68922
- "\u2801",
68923
- "\u2802",
68924
- "\u2803",
68925
- "\u2804",
68926
- "\u2805",
68927
- "\u2806",
68928
- "\u2807",
68929
- "\u2840",
68930
- "\u2841",
68931
- "\u2842",
68932
- "\u2843",
68933
- "\u2844",
68934
- "\u2845",
68935
- "\u2846",
68936
- "\u2847",
68937
- "\u2808",
68938
- "\u2809",
68939
- "\u280A",
68940
- "\u280B",
68941
- "\u280C",
68942
- "\u280D",
68943
- "\u280E",
68944
- "\u280F",
68945
- "\u2848",
68946
- "\u2849",
68947
- "\u284A",
68948
- "\u284B",
68949
- "\u284C",
68950
- "\u284D",
68951
- "\u284E",
68952
- "\u284F",
68953
- "\u2810",
68954
- "\u2811",
68955
- "\u2812",
68956
- "\u2813",
68957
- "\u2814",
68958
- "\u2815",
68959
- "\u2816",
68960
- "\u2817",
68961
- "\u2850",
68962
- "\u2851",
68963
- "\u2852",
68964
- "\u2853",
68965
- "\u2854",
68966
- "\u2855",
68967
- "\u2856",
68968
- "\u2857",
68969
- "\u2818",
68970
- "\u2819",
68971
- "\u281A",
68972
- "\u281B",
68973
- "\u281C",
68974
- "\u281D",
68975
- "\u281E",
68976
- "\u281F",
68977
- "\u2858",
68978
- "\u2859",
68979
- "\u285A",
68980
- "\u285B",
68981
- "\u285C",
68982
- "\u285D",
68983
- "\u285E",
68984
- "\u285F",
68985
- "\u2820",
68986
- "\u2821",
68987
- "\u2822",
68988
- "\u2823",
68989
- "\u2824",
68990
- "\u2825",
68991
- "\u2826",
68992
- "\u2827",
68993
- "\u2860",
68994
- "\u2861",
68995
- "\u2862",
68996
- "\u2863",
68997
- "\u2864",
68998
- "\u2865",
68999
- "\u2866",
69000
- "\u2867",
69001
- "\u2828",
69002
- "\u2829",
69003
- "\u282A",
69004
- "\u282B",
69005
- "\u282C",
69006
- "\u282D",
69007
- "\u282E",
69008
- "\u282F",
69009
- "\u2868",
69010
- "\u2869",
69011
- "\u286A",
69012
- "\u286B",
69013
- "\u286C",
69014
- "\u286D",
69015
- "\u286E",
69016
- "\u286F",
69017
- "\u2830",
69018
- "\u2831",
69019
- "\u2832",
69020
- "\u2833",
69021
- "\u2834",
69022
- "\u2835",
69023
- "\u2836",
69024
- "\u2837",
69025
- "\u2870",
69026
- "\u2871",
69027
- "\u2872",
69028
- "\u2873",
69029
- "\u2874",
69030
- "\u2875",
69031
- "\u2876",
69032
- "\u2877",
69033
- "\u2838",
69034
- "\u2839",
69035
- "\u283A",
69036
- "\u283B",
69037
- "\u283C",
69038
- "\u283D",
69039
- "\u283E",
69040
- "\u283F",
69041
- "\u2878",
69042
- "\u2879",
69043
- "\u287A",
69044
- "\u287B",
69045
- "\u287C",
69046
- "\u287D",
69047
- "\u287E",
69048
- "\u287F",
69049
- "\u2880",
69050
- "\u2881",
69051
- "\u2882",
69052
- "\u2883",
69053
- "\u2884",
69054
- "\u2885",
69055
- "\u2886",
69056
- "\u2887",
69057
- "\u28C0",
69058
- "\u28C1",
69059
- "\u28C2",
69060
- "\u28C3",
69061
- "\u28C4",
69062
- "\u28C5",
69063
- "\u28C6",
69064
- "\u28C7",
69065
- "\u2888",
69066
- "\u2889",
69067
- "\u288A",
69068
- "\u288B",
69069
- "\u288C",
69070
- "\u288D",
69071
- "\u288E",
69072
- "\u288F",
69073
- "\u28C8",
69074
- "\u28C9",
69075
- "\u28CA",
69076
- "\u28CB",
69077
- "\u28CC",
69078
- "\u28CD",
69079
- "\u28CE",
69080
- "\u28CF",
69081
- "\u2890",
69082
- "\u2891",
69083
- "\u2892",
69084
- "\u2893",
69085
- "\u2894",
69086
- "\u2895",
69087
- "\u2896",
69088
- "\u2897",
69089
- "\u28D0",
69090
- "\u28D1",
69091
- "\u28D2",
69092
- "\u28D3",
69093
- "\u28D4",
69094
- "\u28D5",
69095
- "\u28D6",
69096
- "\u28D7",
69097
- "\u2898",
69098
- "\u2899",
69099
- "\u289A",
69100
- "\u289B",
69101
- "\u289C",
69102
- "\u289D",
69103
- "\u289E",
69104
- "\u289F",
69105
- "\u28D8",
69106
- "\u28D9",
69107
- "\u28DA",
69108
- "\u28DB",
69109
- "\u28DC",
69110
- "\u28DD",
69111
- "\u28DE",
69112
- "\u28DF",
69113
- "\u28A0",
69114
- "\u28A1",
69115
- "\u28A2",
69116
- "\u28A3",
69117
- "\u28A4",
69118
- "\u28A5",
69119
- "\u28A6",
69120
- "\u28A7",
69121
- "\u28E0",
69122
- "\u28E1",
69123
- "\u28E2",
69124
- "\u28E3",
69125
- "\u28E4",
69126
- "\u28E5",
69127
- "\u28E6",
69128
- "\u28E7",
69129
- "\u28A8",
69130
- "\u28A9",
69131
- "\u28AA",
69132
- "\u28AB",
69133
- "\u28AC",
69134
- "\u28AD",
69135
- "\u28AE",
69136
- "\u28AF",
69137
- "\u28E8",
69138
- "\u28E9",
69139
- "\u28EA",
69140
- "\u28EB",
69141
- "\u28EC",
69142
- "\u28ED",
69143
- "\u28EE",
69144
- "\u28EF",
69145
- "\u28B0",
69146
- "\u28B1",
69147
- "\u28B2",
69148
- "\u28B3",
69149
- "\u28B4",
69150
- "\u28B5",
69151
- "\u28B6",
69152
- "\u28B7",
69153
- "\u28F0",
69154
- "\u28F1",
69155
- "\u28F2",
69156
- "\u28F3",
69157
- "\u28F4",
69158
- "\u28F5",
69159
- "\u28F6",
69160
- "\u28F7",
69161
- "\u28B8",
69162
- "\u28B9",
69163
- "\u28BA",
69164
- "\u28BB",
69165
- "\u28BC",
69166
- "\u28BD",
69167
- "\u28BE",
69168
- "\u28BF",
69169
- "\u28F8",
69170
- "\u28F9",
69171
- "\u28FA",
69172
- "\u28FB",
69173
- "\u28FC",
69174
- "\u28FD",
69175
- "\u28FE",
69176
- "\u28FF"
69177
- ]
69178
- },
69179
- sand: {
69180
- interval: 80,
69181
- frames: [
69182
- "\u2801",
69183
- "\u2802",
69184
- "\u2804",
69185
- "\u2840",
69186
- "\u2848",
69187
- "\u2850",
69188
- "\u2860",
69189
- "\u28C0",
69190
- "\u28C1",
69191
- "\u28C2",
69192
- "\u28C4",
69193
- "\u28CC",
69194
- "\u28D4",
69195
- "\u28E4",
69196
- "\u28E5",
69197
- "\u28E6",
69198
- "\u28EE",
69199
- "\u28F6",
69200
- "\u28F7",
69201
- "\u28FF",
69202
- "\u287F",
69203
- "\u283F",
69204
- "\u289F",
69205
- "\u281F",
69206
- "\u285B",
69207
- "\u281B",
69208
- "\u282B",
69209
- "\u288B",
69210
- "\u280B",
69211
- "\u280D",
69212
- "\u2849",
69213
- "\u2809",
69214
- "\u2811",
69215
- "\u2821",
69216
- "\u2881"
69217
- ]
69218
- },
69219
- line: {
69220
- interval: 130,
69221
- frames: [
69222
- "-",
69223
- "\\",
69224
- "|",
69225
- "/"
69226
- ]
69227
- },
69228
- line2: {
69229
- interval: 100,
69230
- frames: [
69231
- "\u2802",
69232
- "-",
69233
- "\u2013",
69234
- "\u2014",
69235
- "\u2013",
69236
- "-"
69237
- ]
69238
- },
69239
- pipe: {
69240
- interval: 100,
69241
- frames: [
69242
- "\u2524",
69243
- "\u2518",
69244
- "\u2534",
69245
- "\u2514",
69246
- "\u251C",
69247
- "\u250C",
69248
- "\u252C",
69249
- "\u2510"
69250
- ]
69251
- },
69252
- simpleDots: {
69253
- interval: 400,
69254
- frames: [
69255
- ". ",
69256
- ".. ",
69257
- "...",
69258
- " "
69259
- ]
69260
- },
69261
- simpleDotsScrolling: {
69262
- interval: 200,
69263
- frames: [
69264
- ". ",
69265
- ".. ",
69266
- "...",
69267
- " ..",
69268
- " .",
69269
- " "
69270
- ]
69271
- },
69272
- star: {
69273
- interval: 70,
69274
- frames: [
69275
- "\u2736",
69276
- "\u2738",
69277
- "\u2739",
69278
- "\u273A",
69279
- "\u2739",
69280
- "\u2737"
69281
- ]
69282
- },
69283
- star2: {
69284
- interval: 80,
69285
- frames: [
69286
- "+",
69287
- "x",
69288
- "*"
69289
- ]
69290
- },
69291
- flip: {
69292
- interval: 70,
69293
- frames: [
69294
- "_",
69295
- "_",
69296
- "_",
69297
- "-",
69298
- "`",
69299
- "`",
69300
- "'",
69301
- "\xB4",
69302
- "-",
69303
- "_",
69304
- "_",
69305
- "_"
69306
- ]
69307
- },
69308
- hamburger: {
69309
- interval: 100,
69310
- frames: [
69311
- "\u2631",
69312
- "\u2632",
69313
- "\u2634"
69314
- ]
69315
- },
69316
- growVertical: {
69317
- interval: 120,
69318
- frames: [
69319
- "\u2581",
69320
- "\u2583",
69321
- "\u2584",
69322
- "\u2585",
69323
- "\u2586",
69324
- "\u2587",
69325
- "\u2586",
69326
- "\u2585",
69327
- "\u2584",
69328
- "\u2583"
69329
- ]
69330
- },
69331
- growHorizontal: {
69332
- interval: 120,
69333
- frames: [
69334
- "\u258F",
69335
- "\u258E",
69336
- "\u258D",
69337
- "\u258C",
69338
- "\u258B",
69339
- "\u258A",
69340
- "\u2589",
69341
- "\u258A",
69342
- "\u258B",
69343
- "\u258C",
69344
- "\u258D",
69345
- "\u258E"
69346
- ]
69347
- },
69348
- balloon: {
69349
- interval: 140,
69350
- frames: [
69351
- " ",
69352
- ".",
69353
- "o",
69354
- "O",
69355
- "@",
69356
- "*",
69357
- " "
69358
- ]
69359
- },
69360
- balloon2: {
69361
- interval: 120,
69362
- frames: [
69363
- ".",
69364
- "o",
69365
- "O",
69366
- "\xB0",
69367
- "O",
69368
- "o",
69369
- "."
69370
- ]
69371
- },
69372
- noise: {
69373
- interval: 100,
69374
- frames: [
69375
- "\u2593",
69376
- "\u2592",
69377
- "\u2591"
69378
- ]
69379
- },
69380
- bounce: {
69381
- interval: 120,
69382
- frames: [
69383
- "\u2801",
69384
- "\u2802",
69385
- "\u2804",
69386
- "\u2802"
69387
- ]
69388
- },
69389
- boxBounce: {
69390
- interval: 120,
69391
- frames: [
69392
- "\u2596",
69393
- "\u2598",
69394
- "\u259D",
69395
- "\u2597"
69396
- ]
69397
- },
69398
- boxBounce2: {
69399
- interval: 100,
69400
- frames: [
69401
- "\u258C",
69402
- "\u2580",
69403
- "\u2590",
69404
- "\u2584"
69405
- ]
69406
- },
69407
- triangle: {
69408
- interval: 50,
69409
- frames: [
69410
- "\u25E2",
69411
- "\u25E3",
69412
- "\u25E4",
69413
- "\u25E5"
69414
- ]
69415
- },
69416
- binary: {
69417
- interval: 80,
69418
- frames: [
69419
- "010010",
69420
- "001100",
69421
- "100101",
69422
- "111010",
69423
- "111101",
69424
- "010111",
69425
- "101011",
69426
- "111000",
69427
- "110011",
69428
- "110101"
69429
- ]
69430
- },
69431
- arc: {
69432
- interval: 100,
69433
- frames: [
69434
- "\u25DC",
69435
- "\u25E0",
69436
- "\u25DD",
69437
- "\u25DE",
69438
- "\u25E1",
69439
- "\u25DF"
69440
- ]
69441
- },
69442
- circle: {
69443
- interval: 120,
69444
- frames: [
69445
- "\u25E1",
69446
- "\u2299",
69447
- "\u25E0"
69448
- ]
69449
- },
69450
- squareCorners: {
69451
- interval: 180,
69452
- frames: [
69453
- "\u25F0",
69454
- "\u25F3",
69455
- "\u25F2",
69456
- "\u25F1"
69457
- ]
69458
- },
69459
- circleQuarters: {
69460
- interval: 120,
69461
- frames: [
69462
- "\u25F4",
69463
- "\u25F7",
69464
- "\u25F6",
69465
- "\u25F5"
69466
- ]
69467
- },
69468
- circleHalves: {
69469
- interval: 50,
69470
- frames: [
69471
- "\u25D0",
69472
- "\u25D3",
69473
- "\u25D1",
69474
- "\u25D2"
69475
- ]
69476
- },
69477
- squish: {
69478
- interval: 100,
69479
- frames: [
69480
- "\u256B",
69481
- "\u256A"
69482
- ]
69483
- },
69484
- toggle: {
69485
- interval: 250,
69486
- frames: [
69487
- "\u22B6",
69488
- "\u22B7"
69489
- ]
69490
- },
69491
- toggle2: {
69492
- interval: 80,
69493
- frames: [
69494
- "\u25AB",
69495
- "\u25AA"
69496
- ]
69497
- },
69498
- toggle3: {
69499
- interval: 120,
69500
- frames: [
69501
- "\u25A1",
69502
- "\u25A0"
69503
- ]
69504
- },
69505
- toggle4: {
69506
- interval: 100,
69507
- frames: [
69508
- "\u25A0",
69509
- "\u25A1",
69510
- "\u25AA",
69511
- "\u25AB"
69512
- ]
69513
- },
69514
- toggle5: {
69515
- interval: 100,
69516
- frames: [
69517
- "\u25AE",
69518
- "\u25AF"
69519
- ]
69520
- },
69521
- toggle6: {
69522
- interval: 300,
69523
- frames: [
69524
- "\u101D",
69525
- "\u1040"
69526
- ]
69527
- },
69528
- toggle7: {
69529
- interval: 80,
69530
- frames: [
69531
- "\u29BE",
69532
- "\u29BF"
69533
- ]
69534
- },
69535
- toggle8: {
69536
- interval: 100,
69537
- frames: [
69538
- "\u25CD",
69539
- "\u25CC"
69540
- ]
69541
- },
69542
- toggle9: {
69543
- interval: 100,
69544
- frames: [
69545
- "\u25C9",
69546
- "\u25CE"
69547
- ]
69548
- },
69549
- toggle10: {
69550
- interval: 100,
69551
- frames: [
69552
- "\u3282",
69553
- "\u3280",
69554
- "\u3281"
69555
- ]
69556
- },
69557
- toggle11: {
69558
- interval: 50,
69559
- frames: [
69560
- "\u29C7",
69561
- "\u29C6"
69562
- ]
69563
- },
69564
- toggle12: {
69565
- interval: 120,
69566
- frames: [
69567
- "\u2617",
69568
- "\u2616"
69569
- ]
69570
- },
69571
- toggle13: {
69572
- interval: 80,
69573
- frames: [
69574
- "=",
69575
- "*",
69576
- "-"
69577
- ]
69578
- },
69579
- arrow: {
69580
- interval: 100,
69581
- frames: [
69582
- "\u2190",
69583
- "\u2196",
69584
- "\u2191",
69585
- "\u2197",
69586
- "\u2192",
69587
- "\u2198",
69588
- "\u2193",
69589
- "\u2199"
69590
- ]
69591
- },
69592
- arrow2: {
69593
- interval: 80,
69594
- frames: [
69595
- "\u2B06\uFE0F ",
69596
- "\u2197\uFE0F ",
69597
- "\u27A1\uFE0F ",
69598
- "\u2198\uFE0F ",
69599
- "\u2B07\uFE0F ",
69600
- "\u2199\uFE0F ",
69601
- "\u2B05\uFE0F ",
69602
- "\u2196\uFE0F "
69603
- ]
69604
- },
69605
- arrow3: {
69606
- interval: 120,
69607
- frames: [
69608
- "\u25B9\u25B9\u25B9\u25B9\u25B9",
69609
- "\u25B8\u25B9\u25B9\u25B9\u25B9",
69610
- "\u25B9\u25B8\u25B9\u25B9\u25B9",
69611
- "\u25B9\u25B9\u25B8\u25B9\u25B9",
69612
- "\u25B9\u25B9\u25B9\u25B8\u25B9",
69613
- "\u25B9\u25B9\u25B9\u25B9\u25B8"
69614
- ]
69615
- },
69616
- bouncingBar: {
69617
- interval: 80,
69618
- frames: [
69619
- "[ ]",
69620
- "[= ]",
69621
- "[== ]",
69622
- "[=== ]",
69623
- "[====]",
69624
- "[ ===]",
69625
- "[ ==]",
69626
- "[ =]",
69627
- "[ ]",
69628
- "[ =]",
69629
- "[ ==]",
69630
- "[ ===]",
69631
- "[====]",
69632
- "[=== ]",
69633
- "[== ]",
69634
- "[= ]"
69635
- ]
69636
- },
69637
- bouncingBall: {
69638
- interval: 80,
69639
- frames: [
69640
- "( \u25CF )",
69641
- "( \u25CF )",
69642
- "( \u25CF )",
69643
- "( \u25CF )",
69644
- "( \u25CF)",
69645
- "( \u25CF )",
69646
- "( \u25CF )",
69647
- "( \u25CF )",
69648
- "( \u25CF )",
69649
- "(\u25CF )"
69650
- ]
69651
- },
69652
- smiley: {
69653
- interval: 200,
69654
- frames: [
69655
- "\u{1F604} ",
69656
- "\u{1F61D} "
69657
- ]
69658
- },
69659
- monkey: {
69660
- interval: 300,
69661
- frames: [
69662
- "\u{1F648} ",
69663
- "\u{1F648} ",
69664
- "\u{1F649} ",
69665
- "\u{1F64A} "
69666
- ]
69667
- },
69668
- hearts: {
69669
- interval: 100,
69670
- frames: [
69671
- "\u{1F49B} ",
69672
- "\u{1F499} ",
69673
- "\u{1F49C} ",
69674
- "\u{1F49A} ",
69675
- "\u2764\uFE0F "
69676
- ]
69677
- },
69678
- clock: {
69679
- interval: 100,
69680
- frames: [
69681
- "\u{1F55B} ",
69682
- "\u{1F550} ",
69683
- "\u{1F551} ",
69684
- "\u{1F552} ",
69685
- "\u{1F553} ",
69686
- "\u{1F554} ",
69687
- "\u{1F555} ",
69688
- "\u{1F556} ",
69689
- "\u{1F557} ",
69690
- "\u{1F558} ",
69691
- "\u{1F559} ",
69692
- "\u{1F55A} "
69693
- ]
69694
- },
69695
- earth: {
69696
- interval: 180,
69697
- frames: [
69698
- "\u{1F30D} ",
69699
- "\u{1F30E} ",
69700
- "\u{1F30F} "
69701
- ]
69702
- },
69703
- material: {
69704
- interval: 17,
69705
- frames: [
69706
- "\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69707
- "\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69708
- "\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69709
- "\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69710
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69711
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69712
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69713
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69714
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69715
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69716
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69717
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69718
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69719
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581",
69720
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581",
69721
- "\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581",
69722
- "\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581",
69723
- "\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581",
69724
- "\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581",
69725
- "\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
69726
- "\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
69727
- "\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581",
69728
- "\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581",
69729
- "\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
69730
- "\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
69731
- "\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
69732
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
69733
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
69734
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
69735
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
69736
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
69737
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
69738
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
69739
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
69740
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
69741
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
69742
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
69743
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
69744
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588",
69745
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588",
69746
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588",
69747
- "\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588",
69748
- "\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588",
69749
- "\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588",
69750
- "\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588",
69751
- "\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588",
69752
- "\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
69753
- "\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
69754
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
69755
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69756
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69757
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69758
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69759
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69760
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69761
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69762
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69763
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581",
69764
- "\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581",
69765
- "\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581",
69766
- "\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581",
69767
- "\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581",
69768
- "\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
69769
- "\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
69770
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
69771
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
69772
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
69773
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581",
69774
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581",
69775
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
69776
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
69777
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
69778
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
69779
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
69780
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
69781
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
69782
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588",
69783
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588",
69784
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588",
69785
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588",
69786
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588",
69787
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588",
69788
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588",
69789
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588",
69790
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588",
69791
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
69792
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
69793
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
69794
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69795
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69796
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
69797
- "\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581"
69798
- ]
69799
- },
69800
- moon: {
69801
- interval: 80,
69802
- frames: [
69803
- "\u{1F311} ",
69804
- "\u{1F312} ",
69805
- "\u{1F313} ",
69806
- "\u{1F314} ",
69807
- "\u{1F315} ",
69808
- "\u{1F316} ",
69809
- "\u{1F317} ",
69810
- "\u{1F318} "
69811
- ]
69812
- },
69813
- runner: {
69814
- interval: 140,
69815
- frames: [
69816
- "\u{1F6B6} ",
69817
- "\u{1F3C3} "
69818
- ]
69819
- },
69820
- pong: {
69821
- interval: 80,
69822
- frames: [
69823
- "\u2590\u2802 \u258C",
69824
- "\u2590\u2808 \u258C",
69825
- "\u2590 \u2802 \u258C",
69826
- "\u2590 \u2820 \u258C",
69827
- "\u2590 \u2840 \u258C",
69828
- "\u2590 \u2820 \u258C",
69829
- "\u2590 \u2802 \u258C",
69830
- "\u2590 \u2808 \u258C",
69831
- "\u2590 \u2802 \u258C",
69832
- "\u2590 \u2820 \u258C",
69833
- "\u2590 \u2840 \u258C",
69834
- "\u2590 \u2820 \u258C",
69835
- "\u2590 \u2802 \u258C",
69836
- "\u2590 \u2808 \u258C",
69837
- "\u2590 \u2802\u258C",
69838
- "\u2590 \u2820\u258C",
69839
- "\u2590 \u2840\u258C",
69840
- "\u2590 \u2820 \u258C",
69841
- "\u2590 \u2802 \u258C",
69842
- "\u2590 \u2808 \u258C",
69843
- "\u2590 \u2802 \u258C",
69844
- "\u2590 \u2820 \u258C",
69845
- "\u2590 \u2840 \u258C",
69846
- "\u2590 \u2820 \u258C",
69847
- "\u2590 \u2802 \u258C",
69848
- "\u2590 \u2808 \u258C",
69849
- "\u2590 \u2802 \u258C",
69850
- "\u2590 \u2820 \u258C",
69851
- "\u2590 \u2840 \u258C",
69852
- "\u2590\u2820 \u258C"
69853
- ]
69854
- },
69855
- shark: {
69856
- interval: 120,
69857
- frames: [
69858
- "\u2590|\\____________\u258C",
69859
- "\u2590_|\\___________\u258C",
69860
- "\u2590__|\\__________\u258C",
69861
- "\u2590___|\\_________\u258C",
69862
- "\u2590____|\\________\u258C",
69863
- "\u2590_____|\\_______\u258C",
69864
- "\u2590______|\\______\u258C",
69865
- "\u2590_______|\\_____\u258C",
69866
- "\u2590________|\\____\u258C",
69867
- "\u2590_________|\\___\u258C",
69868
- "\u2590__________|\\__\u258C",
69869
- "\u2590___________|\\_\u258C",
69870
- "\u2590____________|\\\u258C",
69871
- "\u2590____________/|\u258C",
69872
- "\u2590___________/|_\u258C",
69873
- "\u2590__________/|__\u258C",
69874
- "\u2590_________/|___\u258C",
69875
- "\u2590________/|____\u258C",
69876
- "\u2590_______/|_____\u258C",
69877
- "\u2590______/|______\u258C",
69878
- "\u2590_____/|_______\u258C",
69879
- "\u2590____/|________\u258C",
69880
- "\u2590___/|_________\u258C",
69881
- "\u2590__/|__________\u258C",
69882
- "\u2590_/|___________\u258C",
69883
- "\u2590/|____________\u258C"
69884
- ]
69885
- },
69886
- dqpb: {
69887
- interval: 100,
69888
- frames: [
69889
- "d",
69890
- "q",
69891
- "p",
69892
- "b"
69893
- ]
69894
- },
69895
- weather: {
69896
- interval: 100,
69897
- frames: [
69898
- "\u2600\uFE0F ",
69899
- "\u2600\uFE0F ",
69900
- "\u2600\uFE0F ",
69901
- "\u{1F324} ",
69902
- "\u26C5\uFE0F ",
69903
- "\u{1F325} ",
69904
- "\u2601\uFE0F ",
69905
- "\u{1F327} ",
69906
- "\u{1F328} ",
69907
- "\u{1F327} ",
69908
- "\u{1F328} ",
69909
- "\u{1F327} ",
69910
- "\u{1F328} ",
69911
- "\u26C8 ",
69912
- "\u{1F328} ",
69913
- "\u{1F327} ",
69914
- "\u{1F328} ",
69915
- "\u2601\uFE0F ",
69916
- "\u{1F325} ",
69917
- "\u26C5\uFE0F ",
69918
- "\u{1F324} ",
69919
- "\u2600\uFE0F ",
69920
- "\u2600\uFE0F "
69921
- ]
69922
- },
69923
- christmas: {
69924
- interval: 400,
69925
- frames: [
69926
- "\u{1F332}",
69927
- "\u{1F384}"
69928
- ]
69929
- },
69930
- grenade: {
69931
- interval: 80,
69932
- frames: [
69933
- "\u060C ",
69934
- "\u2032 ",
69935
- " \xB4 ",
69936
- " \u203E ",
69937
- " \u2E0C",
69938
- " \u2E0A",
69939
- " |",
69940
- " \u204E",
69941
- " \u2055",
69942
- " \u0DF4 ",
69943
- " \u2053",
69944
- " ",
69945
- " ",
69946
- " "
69947
- ]
69948
- },
69949
- point: {
69950
- interval: 125,
69951
- frames: [
69952
- "\u2219\u2219\u2219",
69953
- "\u25CF\u2219\u2219",
69954
- "\u2219\u25CF\u2219",
69955
- "\u2219\u2219\u25CF",
69956
- "\u2219\u2219\u2219"
69957
- ]
69958
- },
69959
- layer: {
69960
- interval: 150,
69961
- frames: [
69962
- "-",
69963
- "=",
69964
- "\u2261"
69965
- ]
69966
- },
69967
- betaWave: {
69968
- interval: 80,
69969
- frames: [
69970
- "\u03C1\u03B2\u03B2\u03B2\u03B2\u03B2\u03B2",
69971
- "\u03B2\u03C1\u03B2\u03B2\u03B2\u03B2\u03B2",
69972
- "\u03B2\u03B2\u03C1\u03B2\u03B2\u03B2\u03B2",
69973
- "\u03B2\u03B2\u03B2\u03C1\u03B2\u03B2\u03B2",
69974
- "\u03B2\u03B2\u03B2\u03B2\u03C1\u03B2\u03B2",
69975
- "\u03B2\u03B2\u03B2\u03B2\u03B2\u03C1\u03B2",
69976
- "\u03B2\u03B2\u03B2\u03B2\u03B2\u03B2\u03C1"
69977
- ]
69978
- },
69979
- fingerDance: {
69980
- interval: 160,
69981
- frames: [
69982
- "\u{1F918} ",
69983
- "\u{1F91F} ",
69984
- "\u{1F596} ",
69985
- "\u270B ",
69986
- "\u{1F91A} ",
69987
- "\u{1F446} "
69988
- ]
69989
- },
69990
- fistBump: {
69991
- interval: 80,
69992
- frames: [
69993
- "\u{1F91C}\u3000\u3000\u3000\u3000\u{1F91B} ",
69994
- "\u{1F91C}\u3000\u3000\u3000\u3000\u{1F91B} ",
69995
- "\u{1F91C}\u3000\u3000\u3000\u3000\u{1F91B} ",
69996
- "\u3000\u{1F91C}\u3000\u3000\u{1F91B}\u3000 ",
69997
- "\u3000\u3000\u{1F91C}\u{1F91B}\u3000\u3000 ",
69998
- "\u3000\u{1F91C}\u2728\u{1F91B}\u3000\u3000 ",
69999
- "\u{1F91C}\u3000\u2728\u3000\u{1F91B}\u3000 "
70000
- ]
70001
- },
70002
- soccerHeader: {
70003
- interval: 80,
70004
- frames: [
70005
- " \u{1F9D1}\u26BD\uFE0F \u{1F9D1} ",
70006
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
70007
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
70008
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
70009
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
70010
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
70011
- "\u{1F9D1} \u26BD\uFE0F\u{1F9D1} ",
70012
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
70013
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
70014
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
70015
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
70016
- "\u{1F9D1} \u26BD\uFE0F \u{1F9D1} "
70017
- ]
70018
- },
70019
- mindblown: {
70020
- interval: 160,
70021
- frames: [
70022
- "\u{1F610} ",
70023
- "\u{1F610} ",
70024
- "\u{1F62E} ",
70025
- "\u{1F62E} ",
70026
- "\u{1F626} ",
70027
- "\u{1F626} ",
70028
- "\u{1F627} ",
70029
- "\u{1F627} ",
70030
- "\u{1F92F} ",
70031
- "\u{1F4A5} ",
70032
- "\u2728 ",
70033
- "\u3000 ",
70034
- "\u3000 ",
70035
- "\u3000 "
70036
- ]
70037
- },
70038
- speaker: {
70039
- interval: 160,
70040
- frames: [
70041
- "\u{1F508} ",
70042
- "\u{1F509} ",
70043
- "\u{1F50A} ",
70044
- "\u{1F509} "
70045
- ]
70046
- },
70047
- orangePulse: {
70048
- interval: 100,
70049
- frames: [
70050
- "\u{1F538} ",
70051
- "\u{1F536} ",
70052
- "\u{1F7E0} ",
70053
- "\u{1F7E0} ",
70054
- "\u{1F536} "
70055
- ]
70056
- },
70057
- bluePulse: {
70058
- interval: 100,
70059
- frames: [
70060
- "\u{1F539} ",
70061
- "\u{1F537} ",
70062
- "\u{1F535} ",
70063
- "\u{1F535} ",
70064
- "\u{1F537} "
70065
- ]
70066
- },
70067
- orangeBluePulse: {
70068
- interval: 100,
70069
- frames: [
70070
- "\u{1F538} ",
70071
- "\u{1F536} ",
70072
- "\u{1F7E0} ",
70073
- "\u{1F7E0} ",
70074
- "\u{1F536} ",
70075
- "\u{1F539} ",
70076
- "\u{1F537} ",
70077
- "\u{1F535} ",
70078
- "\u{1F535} ",
70079
- "\u{1F537} "
70080
- ]
70081
- },
70082
- timeTravel: {
70083
- interval: 100,
70084
- frames: [
70085
- "\u{1F55B} ",
70086
- "\u{1F55A} ",
70087
- "\u{1F559} ",
70088
- "\u{1F558} ",
70089
- "\u{1F557} ",
70090
- "\u{1F556} ",
70091
- "\u{1F555} ",
70092
- "\u{1F554} ",
70093
- "\u{1F553} ",
70094
- "\u{1F552} ",
70095
- "\u{1F551} ",
70096
- "\u{1F550} "
70097
- ]
70098
- },
70099
- aesthetic: {
70100
- interval: 80,
70101
- frames: [
70102
- "\u25B0\u25B1\u25B1\u25B1\u25B1\u25B1\u25B1",
70103
- "\u25B0\u25B0\u25B1\u25B1\u25B1\u25B1\u25B1",
70104
- "\u25B0\u25B0\u25B0\u25B1\u25B1\u25B1\u25B1",
70105
- "\u25B0\u25B0\u25B0\u25B0\u25B1\u25B1\u25B1",
70106
- "\u25B0\u25B0\u25B0\u25B0\u25B0\u25B1\u25B1",
70107
- "\u25B0\u25B0\u25B0\u25B0\u25B0\u25B0\u25B1",
70108
- "\u25B0\u25B0\u25B0\u25B0\u25B0\u25B0\u25B0",
70109
- "\u25B0\u25B1\u25B1\u25B1\u25B1\u25B1\u25B1"
70110
- ]
70111
- },
70112
- dwarfFortress: {
70113
- interval: 80,
70114
- frames: [
70115
- " \u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70116
- "\u263A\u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70117
- "\u263A\u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70118
- "\u263A\u2593\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70119
- "\u263A\u2593\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70120
- "\u263A\u2592\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70121
- "\u263A\u2592\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70122
- "\u263A\u2591\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70123
- "\u263A\u2591\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70124
- "\u263A \u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70125
- " \u263A\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70126
- " \u263A\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70127
- " \u263A\u2593\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70128
- " \u263A\u2593\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70129
- " \u263A\u2592\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70130
- " \u263A\u2592\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70131
- " \u263A\u2591\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70132
- " \u263A\u2591\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70133
- " \u263A \u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70134
- " \u263A\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70135
- " \u263A\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70136
- " \u263A\u2593\u2588\u2588\u2588\xA3\xA3\xA3 ",
70137
- " \u263A\u2593\u2588\u2588\u2588\xA3\xA3\xA3 ",
70138
- " \u263A\u2592\u2588\u2588\u2588\xA3\xA3\xA3 ",
70139
- " \u263A\u2592\u2588\u2588\u2588\xA3\xA3\xA3 ",
70140
- " \u263A\u2591\u2588\u2588\u2588\xA3\xA3\xA3 ",
70141
- " \u263A\u2591\u2588\u2588\u2588\xA3\xA3\xA3 ",
70142
- " \u263A \u2588\u2588\u2588\xA3\xA3\xA3 ",
70143
- " \u263A\u2588\u2588\u2588\xA3\xA3\xA3 ",
70144
- " \u263A\u2588\u2588\u2588\xA3\xA3\xA3 ",
70145
- " \u263A\u2593\u2588\u2588\xA3\xA3\xA3 ",
70146
- " \u263A\u2593\u2588\u2588\xA3\xA3\xA3 ",
70147
- " \u263A\u2592\u2588\u2588\xA3\xA3\xA3 ",
70148
- " \u263A\u2592\u2588\u2588\xA3\xA3\xA3 ",
70149
- " \u263A\u2591\u2588\u2588\xA3\xA3\xA3 ",
70150
- " \u263A\u2591\u2588\u2588\xA3\xA3\xA3 ",
70151
- " \u263A \u2588\u2588\xA3\xA3\xA3 ",
70152
- " \u263A\u2588\u2588\xA3\xA3\xA3 ",
70153
- " \u263A\u2588\u2588\xA3\xA3\xA3 ",
70154
- " \u263A\u2593\u2588\xA3\xA3\xA3 ",
70155
- " \u263A\u2593\u2588\xA3\xA3\xA3 ",
70156
- " \u263A\u2592\u2588\xA3\xA3\xA3 ",
70157
- " \u263A\u2592\u2588\xA3\xA3\xA3 ",
70158
- " \u263A\u2591\u2588\xA3\xA3\xA3 ",
70159
- " \u263A\u2591\u2588\xA3\xA3\xA3 ",
70160
- " \u263A \u2588\xA3\xA3\xA3 ",
70161
- " \u263A\u2588\xA3\xA3\xA3 ",
70162
- " \u263A\u2588\xA3\xA3\xA3 ",
70163
- " \u263A\u2593\xA3\xA3\xA3 ",
70164
- " \u263A\u2593\xA3\xA3\xA3 ",
70165
- " \u263A\u2592\xA3\xA3\xA3 ",
70166
- " \u263A\u2592\xA3\xA3\xA3 ",
70167
- " \u263A\u2591\xA3\xA3\xA3 ",
70168
- " \u263A\u2591\xA3\xA3\xA3 ",
70169
- " \u263A \xA3\xA3\xA3 ",
70170
- " \u263A\xA3\xA3\xA3 ",
70171
- " \u263A\xA3\xA3\xA3 ",
70172
- " \u263A\u2593\xA3\xA3 ",
70173
- " \u263A\u2593\xA3\xA3 ",
70174
- " \u263A\u2592\xA3\xA3 ",
70175
- " \u263A\u2592\xA3\xA3 ",
70176
- " \u263A\u2591\xA3\xA3 ",
70177
- " \u263A\u2591\xA3\xA3 ",
70178
- " \u263A \xA3\xA3 ",
70179
- " \u263A\xA3\xA3 ",
70180
- " \u263A\xA3\xA3 ",
70181
- " \u263A\u2593\xA3 ",
70182
- " \u263A\u2593\xA3 ",
70183
- " \u263A\u2592\xA3 ",
70184
- " \u263A\u2592\xA3 ",
70185
- " \u263A\u2591\xA3 ",
70186
- " \u263A\u2591\xA3 ",
70187
- " \u263A \xA3 ",
70188
- " \u263A\xA3 ",
70189
- " \u263A\xA3 ",
70190
- " \u263A\u2593 ",
70191
- " \u263A\u2593 ",
70192
- " \u263A\u2592 ",
70193
- " \u263A\u2592 ",
70194
- " \u263A\u2591 ",
70195
- " \u263A\u2591 ",
70196
- " \u263A ",
70197
- " \u263A &",
70198
- " \u263A \u263C&",
70199
- " \u263A \u263C &",
70200
- " \u263A\u263C &",
70201
- " \u263A\u263C & ",
70202
- " \u203C & ",
70203
- " \u263A & ",
70204
- " \u203C & ",
70205
- " \u263A & ",
70206
- " \u203C & ",
70207
- " \u263A & ",
70208
- "\u203C & ",
70209
- " & ",
70210
- " & ",
70211
- " & \u2591 ",
70212
- " & \u2592 ",
70213
- " & \u2593 ",
70214
- " & \xA3 ",
70215
- " & \u2591\xA3 ",
70216
- " & \u2592\xA3 ",
70217
- " & \u2593\xA3 ",
70218
- " & \xA3\xA3 ",
70219
- " & \u2591\xA3\xA3 ",
70220
- " & \u2592\xA3\xA3 ",
70221
- "& \u2593\xA3\xA3 ",
70222
- "& \xA3\xA3\xA3 ",
70223
- " \u2591\xA3\xA3\xA3 ",
70224
- " \u2592\xA3\xA3\xA3 ",
70225
- " \u2593\xA3\xA3\xA3 ",
70226
- " \u2588\xA3\xA3\xA3 ",
70227
- " \u2591\u2588\xA3\xA3\xA3 ",
70228
- " \u2592\u2588\xA3\xA3\xA3 ",
70229
- " \u2593\u2588\xA3\xA3\xA3 ",
70230
- " \u2588\u2588\xA3\xA3\xA3 ",
70231
- " \u2591\u2588\u2588\xA3\xA3\xA3 ",
70232
- " \u2592\u2588\u2588\xA3\xA3\xA3 ",
70233
- " \u2593\u2588\u2588\xA3\xA3\xA3 ",
70234
- " \u2588\u2588\u2588\xA3\xA3\xA3 ",
70235
- " \u2591\u2588\u2588\u2588\xA3\xA3\xA3 ",
70236
- " \u2592\u2588\u2588\u2588\xA3\xA3\xA3 ",
70237
- " \u2593\u2588\u2588\u2588\xA3\xA3\xA3 ",
70238
- " \u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70239
- " \u2591\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70240
- " \u2592\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70241
- " \u2593\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70242
- " \u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70243
- " \u2591\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70244
- " \u2592\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70245
- " \u2593\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70246
- " \u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
70247
- " \u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "
70248
- ]
70249
- }
70250
- };
70251
- }
70252
- });
70253
-
70254
- // ../../node_modules/.pnpm/cli-spinners@2.9.2/node_modules/cli-spinners/index.js
70255
- var require_cli_spinners = __commonJS({
70256
- "../../node_modules/.pnpm/cli-spinners@2.9.2/node_modules/cli-spinners/index.js"(exports2, module3) {
70257
- "use strict";
70258
- init_import_meta_url();
70259
- var spinners = Object.assign({}, require_spinners());
70260
- var spinnersList = Object.keys(spinners);
70261
- Object.defineProperty(spinners, "random", {
70262
- get() {
70263
- const randomIndex = Math.floor(Math.random() * spinnersList.length);
70264
- const spinnerName = spinnersList[randomIndex];
70265
- return spinners[spinnerName];
70266
- }
70267
- });
70268
- module3.exports = spinners;
70269
- }
70270
- });
70271
-
70272
- // ../../node_modules/.pnpm/ink-spinner@4.0.3_ink@3.2.0_patch_hash=iiwbcf44d6ccmi6a27ljqs7qce_@types+react@18.3.3_react@18.3.1__react@18.3.1/node_modules/ink-spinner/build/index.js
70273
- var require_build3 = __commonJS({
70274
- "../../node_modules/.pnpm/ink-spinner@4.0.3_ink@3.2.0_patch_hash=iiwbcf44d6ccmi6a27ljqs7qce_@types+react@18.3.3_react@18.3.1__react@18.3.1/node_modules/ink-spinner/build/index.js"(exports2) {
70275
- "use strict";
70276
- init_import_meta_url();
70277
- Object.defineProperty(exports2, "__esModule", { value: true });
70278
- var React2 = require_react();
70279
- var react_1 = require_react();
70280
- var ink_1 = require_build2();
70281
- var spinners = require_cli_spinners();
70282
- var Spinner2 = /* @__PURE__ */ __name(({ type = "dots" }) => {
70283
- const [frame, setFrame] = react_1.useState(0);
70284
- const spinner2 = spinners[type];
70285
- react_1.useEffect(() => {
70286
- const timer = setInterval(() => {
70287
- setFrame((previousFrame) => {
70288
- const isLastFrame = previousFrame === spinner2.frames.length - 1;
70289
- return isLastFrame ? 0 : previousFrame + 1;
70290
- });
70291
- }, spinner2.interval);
70292
- return () => {
70293
- clearInterval(timer);
70294
- };
70295
- }, [spinner2]);
70296
- return React2.createElement(ink_1.Text, null, spinner2.frames[frame]);
70297
- }, "Spinner");
70298
- exports2.default = Spinner2;
70299
- }
70300
- });
70301
-
70302
68631
  // ../../node_modules/.pnpm/minimatch@5.1.1/node_modules/minimatch/lib/path.js
70303
68632
  var require_path = __commonJS({
70304
68633
  "../../node_modules/.pnpm/minimatch@5.1.1/node_modules/minimatch/lib/path.js"(exports2, module3) {
@@ -71083,49 +69412,6 @@ var require_minimatch = __commonJS({
71083
69412
  }
71084
69413
  });
71085
69414
 
71086
- // ../../node_modules/.pnpm/react@18.3.1/node_modules/react/cjs/react-jsx-runtime.production.min.js
71087
- var require_react_jsx_runtime_production_min = __commonJS({
71088
- "../../node_modules/.pnpm/react@18.3.1/node_modules/react/cjs/react-jsx-runtime.production.min.js"(exports2) {
71089
- "use strict";
71090
- init_import_meta_url();
71091
- var f = require_react();
71092
- var k2 = Symbol.for("react.element");
71093
- var l2 = Symbol.for("react.fragment");
71094
- var m2 = Object.prototype.hasOwnProperty;
71095
- var n3 = f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner;
71096
- var p2 = { key: true, ref: true, __self: true, __source: true };
71097
- function q2(c2, a, g2) {
71098
- var b2, d2 = {}, e4 = null, h2 = null;
71099
- void 0 !== g2 && (e4 = "" + g2);
71100
- void 0 !== a.key && (e4 = "" + a.key);
71101
- void 0 !== a.ref && (h2 = a.ref);
71102
- for (b2 in a)
71103
- m2.call(a, b2) && !p2.hasOwnProperty(b2) && (d2[b2] = a[b2]);
71104
- if (c2 && c2.defaultProps)
71105
- for (b2 in a = c2.defaultProps, a)
71106
- void 0 === d2[b2] && (d2[b2] = a[b2]);
71107
- return { $$typeof: k2, type: c2, key: e4, ref: h2, props: d2, _owner: n3.current };
71108
- }
71109
- __name(q2, "q");
71110
- exports2.Fragment = l2;
71111
- exports2.jsx = q2;
71112
- exports2.jsxs = q2;
71113
- }
71114
- });
71115
-
71116
- // ../../node_modules/.pnpm/react@18.3.1/node_modules/react/jsx-runtime.js
71117
- var require_jsx_runtime = __commonJS({
71118
- "../../node_modules/.pnpm/react@18.3.1/node_modules/react/jsx-runtime.js"(exports2, module3) {
71119
- "use strict";
71120
- init_import_meta_url();
71121
- if (true) {
71122
- module3.exports = require_react_jsx_runtime_production_min();
71123
- } else {
71124
- module3.exports = null;
71125
- }
71126
- }
71127
- });
71128
-
71129
69415
  // ../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/windows.js
71130
69416
  var require_windows = __commonJS({
71131
69417
  "../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/windows.js"(exports2, module3) {
@@ -74317,7 +72603,7 @@ var require_destroy = __commonJS({
74317
72603
  "../../node_modules/.pnpm/destroy@1.2.0/node_modules/destroy/index.js"(exports2, module3) {
74318
72604
  "use strict";
74319
72605
  init_import_meta_url();
74320
- var EventEmitter5 = require("events").EventEmitter;
72606
+ var EventEmitter4 = require("events").EventEmitter;
74321
72607
  var ReadStream = require("fs").ReadStream;
74322
72608
  var Stream = require("stream");
74323
72609
  var Zlib = require("zlib");
@@ -74384,7 +72670,7 @@ var require_destroy = __commonJS({
74384
72670
  }
74385
72671
  __name(hasDestroy, "hasDestroy");
74386
72672
  function isEventEmitter(val) {
74387
- return val instanceof EventEmitter5;
72673
+ return val instanceof EventEmitter4;
74388
72674
  }
74389
72675
  __name(isEventEmitter, "isEventEmitter");
74390
72676
  function isFsReadStream(stream2) {
@@ -90914,7 +89200,7 @@ var require_view = __commonJS({
90914
89200
  }
90915
89201
  return path77;
90916
89202
  }, "lookup");
90917
- View.prototype.render = /* @__PURE__ */ __name(function render7(options29, callback) {
89203
+ View.prototype.render = /* @__PURE__ */ __name(function render3(options29, callback) {
90918
89204
  debug('render "%s"', this.path);
90919
89205
  this.engine(this.path, options29, callback);
90920
89206
  }, "render");
@@ -93302,7 +91588,7 @@ var require_application = __commonJS({
93302
91588
  return this;
93303
91589
  }, "all");
93304
91590
  app.del = deprecate.function(app.delete, "app.del: Use app.delete instead");
93305
- app.render = /* @__PURE__ */ __name(function render7(name2, options29, callback) {
91591
+ app.render = /* @__PURE__ */ __name(function render3(name2, options29, callback) {
93306
91592
  var cache2 = this.cache;
93307
91593
  var done = callback;
93308
91594
  var engines = this.engines;
@@ -94854,7 +93140,7 @@ var require_response2 = __commonJS({
94854
93140
  vary(this, field);
94855
93141
  return this;
94856
93142
  };
94857
- res.render = /* @__PURE__ */ __name(function render7(view, options29, callback) {
93143
+ res.render = /* @__PURE__ */ __name(function render3(view, options29, callback) {
94858
93144
  var app = this.req.app;
94859
93145
  var done = callback;
94860
93146
  var opts = options29 || {};
@@ -95092,7 +93378,7 @@ var require_express = __commonJS({
95092
93378
  "use strict";
95093
93379
  init_import_meta_url();
95094
93380
  var bodyParser2 = require_body_parser();
95095
- var EventEmitter5 = require("events").EventEmitter;
93381
+ var EventEmitter4 = require("events").EventEmitter;
95096
93382
  var mixin3 = require_merge_descriptors();
95097
93383
  var proto2 = require_application();
95098
93384
  var Route = require_route2();
@@ -95104,7 +93390,7 @@ var require_express = __commonJS({
95104
93390
  var app = /* @__PURE__ */ __name(function(req2, res2, next) {
95105
93391
  app.handle(req2, res2, next);
95106
93392
  }, "app");
95107
- mixin3(app, EventEmitter5.prototype, false);
93393
+ mixin3(app, EventEmitter4.prototype, false);
95108
93394
  mixin3(app, proto2, false);
95109
93395
  app.request = Object.create(req, {
95110
93396
  app: { configurable: true, enumerable: true, writable: true, value: app }
@@ -117441,8 +115727,8 @@ var require_dispatcher2 = __commonJS({
117441
115727
  "../../node_modules/.pnpm/undici@5.28.2/node_modules/undici/lib/dispatcher.js"(exports2, module3) {
117442
115728
  "use strict";
117443
115729
  init_import_meta_url();
117444
- var EventEmitter5 = require("events");
117445
- var Dispatcher2 = class extends EventEmitter5 {
115730
+ var EventEmitter4 = require("events");
115731
+ var Dispatcher2 = class extends EventEmitter4 {
117446
115732
  dispatch() {
117447
115733
  throw new Error("not implemented");
117448
115734
  }
@@ -136643,7 +134929,7 @@ var require_src8 = __commonJS({
136643
134929
  var __getOwnPropNames2 = Object.getOwnPropertyNames;
136644
134930
  var __getProtoOf2 = Object.getPrototypeOf;
136645
134931
  var __hasOwnProp2 = Object.prototype.hasOwnProperty;
136646
- var __defNormalProp = /* @__PURE__ */ __name((obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value, "__defNormalProp");
134932
+ var __defNormalProp2 = /* @__PURE__ */ __name((obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value, "__defNormalProp");
136647
134933
  var __markAsModule = /* @__PURE__ */ __name((target) => __defProp2(target, "__esModule", { value: true }), "__markAsModule");
136648
134934
  var __export2 = /* @__PURE__ */ __name((target, all2) => {
136649
134935
  __markAsModule(target);
@@ -136670,8 +134956,8 @@ var require_src8 = __commonJS({
136670
134956
  __defProp2(target, key, result);
136671
134957
  return result;
136672
134958
  }, "__decorateClass");
136673
- var __publicField = /* @__PURE__ */ __name((obj, key, value) => {
136674
- __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
134959
+ var __publicField2 = /* @__PURE__ */ __name((obj, key, value) => {
134960
+ __defNormalProp2(obj, typeof key !== "symbol" ? key + "" : key, value);
136675
134961
  return value;
136676
134962
  }, "__publicField");
136677
134963
  __export2(exports2, {
@@ -136844,31 +135130,31 @@ var require_src8 = __commonJS({
136844
135130
  return DOM_EXCEPTION_NAMES[this.name] ?? 0;
136845
135131
  }
136846
135132
  }, "DOMException");
136847
- __publicField(DOMException2, "INDEX_SIZE_ERR", 1);
136848
- __publicField(DOMException2, "DOMSTRING_SIZE_ERR", 2);
136849
- __publicField(DOMException2, "HIERARCHY_REQUEST_ERR", 3);
136850
- __publicField(DOMException2, "WRONG_DOCUMENT_ERR", 4);
136851
- __publicField(DOMException2, "INVALID_CHARACTER_ERR", 5);
136852
- __publicField(DOMException2, "NO_DATA_ALLOWED_ERR", 6);
136853
- __publicField(DOMException2, "NO_MODIFICATION_ALLOWED_ERR", 7);
136854
- __publicField(DOMException2, "NOT_FOUND_ERR", 8);
136855
- __publicField(DOMException2, "NOT_SUPPORTED_ERR", 9);
136856
- __publicField(DOMException2, "INUSE_ATTRIBUTE_ERR", 10);
136857
- __publicField(DOMException2, "INVALID_STATE_ERR", 11);
136858
- __publicField(DOMException2, "SYNTAX_ERR", 12);
136859
- __publicField(DOMException2, "INVALID_MODIFICATION_ERR", 13);
136860
- __publicField(DOMException2, "NAMESPACE_ERR", 14);
136861
- __publicField(DOMException2, "INVALID_ACCESS_ERR", 15);
136862
- __publicField(DOMException2, "VALIDATION_ERR", 16);
136863
- __publicField(DOMException2, "TYPE_MISMATCH_ERR", 17);
136864
- __publicField(DOMException2, "SECURITY_ERR", 18);
136865
- __publicField(DOMException2, "NETWORK_ERR", 19);
136866
- __publicField(DOMException2, "ABORT_ERR", 20);
136867
- __publicField(DOMException2, "URL_MISMATCH_ERR", 21);
136868
- __publicField(DOMException2, "QUOTA_EXCEEDED_ERR", 22);
136869
- __publicField(DOMException2, "TIMEOUT_ERR", 23);
136870
- __publicField(DOMException2, "INVALID_NODE_TYPE_ERR", 24);
136871
- __publicField(DOMException2, "DATA_CLONE_ERR", 25);
135133
+ __publicField2(DOMException2, "INDEX_SIZE_ERR", 1);
135134
+ __publicField2(DOMException2, "DOMSTRING_SIZE_ERR", 2);
135135
+ __publicField2(DOMException2, "HIERARCHY_REQUEST_ERR", 3);
135136
+ __publicField2(DOMException2, "WRONG_DOCUMENT_ERR", 4);
135137
+ __publicField2(DOMException2, "INVALID_CHARACTER_ERR", 5);
135138
+ __publicField2(DOMException2, "NO_DATA_ALLOWED_ERR", 6);
135139
+ __publicField2(DOMException2, "NO_MODIFICATION_ALLOWED_ERR", 7);
135140
+ __publicField2(DOMException2, "NOT_FOUND_ERR", 8);
135141
+ __publicField2(DOMException2, "NOT_SUPPORTED_ERR", 9);
135142
+ __publicField2(DOMException2, "INUSE_ATTRIBUTE_ERR", 10);
135143
+ __publicField2(DOMException2, "INVALID_STATE_ERR", 11);
135144
+ __publicField2(DOMException2, "SYNTAX_ERR", 12);
135145
+ __publicField2(DOMException2, "INVALID_MODIFICATION_ERR", 13);
135146
+ __publicField2(DOMException2, "NAMESPACE_ERR", 14);
135147
+ __publicField2(DOMException2, "INVALID_ACCESS_ERR", 15);
135148
+ __publicField2(DOMException2, "VALIDATION_ERR", 16);
135149
+ __publicField2(DOMException2, "TYPE_MISMATCH_ERR", 17);
135150
+ __publicField2(DOMException2, "SECURITY_ERR", 18);
135151
+ __publicField2(DOMException2, "NETWORK_ERR", 19);
135152
+ __publicField2(DOMException2, "ABORT_ERR", 20);
135153
+ __publicField2(DOMException2, "URL_MISMATCH_ERR", 21);
135154
+ __publicField2(DOMException2, "QUOTA_EXCEEDED_ERR", 22);
135155
+ __publicField2(DOMException2, "TIMEOUT_ERR", 23);
135156
+ __publicField2(DOMException2, "INVALID_NODE_TYPE_ERR", 24);
135157
+ __publicField2(DOMException2, "DATA_CLONE_ERR", 25);
136872
135158
  var import_shared2 = __toModule(require_src6());
136873
135159
  function isBufferSource(chunk) {
136874
135160
  return chunk instanceof ArrayBuffer || ArrayBuffer.isView(chunk);
@@ -138881,7 +137167,7 @@ Make sure "${service}" is mounted so Miniflare knows where to find it.`);
138881
137167
  };
138882
137168
  var events_exports = {};
138883
137169
  __export2(events_exports, {
138884
- EventEmitter: () => EventEmitter5,
137170
+ EventEmitter: () => EventEmitter4,
138885
137171
  EventEmitterAsyncResource: () => EventEmitterAsyncResource,
138886
137172
  captureRejectionSymbol: () => captureRejectionSymbol,
138887
137173
  default: () => events_default,
@@ -138895,7 +137181,7 @@ Make sure "${service}" is mounted so Miniflare knows where to find it.`);
138895
137181
  });
138896
137182
  var import_node_events7 = __toModule(require("node:events"));
138897
137183
  var events_default = import_node_events7.default;
138898
- var EventEmitter5 = import_node_events7.default.EventEmitter;
137184
+ var EventEmitter4 = import_node_events7.default.EventEmitter;
138899
137185
  var EventEmitterAsyncResource = import_node_events7.default.EventEmitterAsyncResource;
138900
137186
  var captureRejectionSymbol = import_node_events7.default.captureRejectionSymbol;
138901
137187
  var defaultMaxListeners = import_node_events7.default.defaultMaxListeners;
@@ -143254,7 +141540,7 @@ var require_SelectInput = __commonJS({
143254
141540
  var ink_1 = require_build2();
143255
141541
  var Indicator_1 = require_Indicator();
143256
141542
  var Item_1 = require_Item();
143257
- function SelectInput4({ items = [], isFocused = true, initialIndex = 0, indicatorComponent = Indicator_1.default, itemComponent = Item_1.default, limit: customLimit, onSelect, onHighlight }) {
141543
+ function SelectInput2({ items = [], isFocused = true, initialIndex = 0, indicatorComponent = Indicator_1.default, itemComponent = Item_1.default, limit: customLimit, onSelect, onHighlight }) {
143258
141544
  const [rotateIndex, setRotateIndex] = react_1.useState(0);
143259
141545
  const [selectedIndex, setSelectedIndex] = react_1.useState(initialIndex);
143260
141546
  const hasLimit = typeof customLimit === "number" && items.length > customLimit;
@@ -143320,13 +141606,13 @@ var require_SelectInput = __commonJS({
143320
141606
  );
143321
141607
  }));
143322
141608
  }
143323
- __name(SelectInput4, "SelectInput");
143324
- exports2.default = SelectInput4;
141609
+ __name(SelectInput2, "SelectInput");
141610
+ exports2.default = SelectInput2;
143325
141611
  }
143326
141612
  });
143327
141613
 
143328
141614
  // ../../node_modules/.pnpm/ink-select-input@4.2.1_ink@3.2.0_patch_hash=iiwbcf44d6ccmi6a27ljqs7qce_@types+react@18.3.3_react@18.3.1__react@18.3.1/node_modules/ink-select-input/build/index.js
143329
- var require_build4 = __commonJS({
141615
+ var require_build3 = __commonJS({
143330
141616
  "../../node_modules/.pnpm/ink-select-input@4.2.1_ink@3.2.0_patch_hash=iiwbcf44d6ccmi6a27ljqs7qce_@types+react@18.3.3_react@18.3.1__react@18.3.1/node_modules/ink-select-input/build/index.js"(exports2) {
143331
141617
  "use strict";
143332
141618
  init_import_meta_url();
@@ -143344,606 +141630,46 @@ var require_build4 = __commonJS({
143344
141630
  }
143345
141631
  });
143346
141632
 
143347
- // ../../node_modules/.pnpm/object-hash@2.2.0/node_modules/object-hash/index.js
143348
- var require_object_hash = __commonJS({
143349
- "../../node_modules/.pnpm/object-hash@2.2.0/node_modules/object-hash/index.js"(exports2, module3) {
141633
+ // ../../node_modules/.pnpm/react@18.3.1/node_modules/react/cjs/react-jsx-runtime.production.min.js
141634
+ var require_react_jsx_runtime_production_min = __commonJS({
141635
+ "../../node_modules/.pnpm/react@18.3.1/node_modules/react/cjs/react-jsx-runtime.production.min.js"(exports2) {
143350
141636
  "use strict";
143351
141637
  init_import_meta_url();
143352
- var crypto5 = require("crypto");
143353
- exports2 = module3.exports = objectHash;
143354
- function objectHash(object, options29) {
143355
- options29 = applyDefaults(object, options29);
143356
- return hash(object, options29);
143357
- }
143358
- __name(objectHash, "objectHash");
143359
- exports2.sha1 = function(object) {
143360
- return objectHash(object);
143361
- };
143362
- exports2.keys = function(object) {
143363
- return objectHash(object, { excludeValues: true, algorithm: "sha1", encoding: "hex" });
143364
- };
143365
- exports2.MD5 = function(object) {
143366
- return objectHash(object, { algorithm: "md5", encoding: "hex" });
143367
- };
143368
- exports2.keysMD5 = function(object) {
143369
- return objectHash(object, { algorithm: "md5", encoding: "hex", excludeValues: true });
143370
- };
143371
- var hashes = crypto5.getHashes ? crypto5.getHashes().slice() : ["sha1", "md5"];
143372
- hashes.push("passthrough");
143373
- var encodings = ["buffer", "hex", "binary", "base64"];
143374
- function applyDefaults(object, sourceOptions) {
143375
- sourceOptions = sourceOptions || {};
143376
- var options29 = {};
143377
- options29.algorithm = sourceOptions.algorithm || "sha1";
143378
- options29.encoding = sourceOptions.encoding || "hex";
143379
- options29.excludeValues = sourceOptions.excludeValues ? true : false;
143380
- options29.algorithm = options29.algorithm.toLowerCase();
143381
- options29.encoding = options29.encoding.toLowerCase();
143382
- options29.ignoreUnknown = sourceOptions.ignoreUnknown !== true ? false : true;
143383
- options29.respectType = sourceOptions.respectType === false ? false : true;
143384
- options29.respectFunctionNames = sourceOptions.respectFunctionNames === false ? false : true;
143385
- options29.respectFunctionProperties = sourceOptions.respectFunctionProperties === false ? false : true;
143386
- options29.unorderedArrays = sourceOptions.unorderedArrays !== true ? false : true;
143387
- options29.unorderedSets = sourceOptions.unorderedSets === false ? false : true;
143388
- options29.unorderedObjects = sourceOptions.unorderedObjects === false ? false : true;
143389
- options29.replacer = sourceOptions.replacer || void 0;
143390
- options29.excludeKeys = sourceOptions.excludeKeys || void 0;
143391
- if (typeof object === "undefined") {
143392
- throw new Error("Object argument required.");
143393
- }
143394
- for (var i = 0; i < hashes.length; ++i) {
143395
- if (hashes[i].toLowerCase() === options29.algorithm.toLowerCase()) {
143396
- options29.algorithm = hashes[i];
143397
- }
143398
- }
143399
- if (hashes.indexOf(options29.algorithm) === -1) {
143400
- throw new Error('Algorithm "' + options29.algorithm + '" not supported. supported values: ' + hashes.join(", "));
143401
- }
143402
- if (encodings.indexOf(options29.encoding) === -1 && options29.algorithm !== "passthrough") {
143403
- throw new Error('Encoding "' + options29.encoding + '" not supported. supported values: ' + encodings.join(", "));
143404
- }
143405
- return options29;
143406
- }
143407
- __name(applyDefaults, "applyDefaults");
143408
- function isNativeFunction(f) {
143409
- if (typeof f !== "function") {
143410
- return false;
143411
- }
143412
- var exp = /^function\s+\w*\s*\(\s*\)\s*{\s+\[native code\]\s+}$/i;
143413
- return exp.exec(Function.prototype.toString.call(f)) != null;
143414
- }
143415
- __name(isNativeFunction, "isNativeFunction");
143416
- function hash(object, options29) {
143417
- var hashingStream;
143418
- if (options29.algorithm !== "passthrough") {
143419
- hashingStream = crypto5.createHash(options29.algorithm);
143420
- } else {
143421
- hashingStream = new PassThrough2();
143422
- }
143423
- if (typeof hashingStream.write === "undefined") {
143424
- hashingStream.write = hashingStream.update;
143425
- hashingStream.end = hashingStream.update;
143426
- }
143427
- var hasher = typeHasher(options29, hashingStream);
143428
- hasher.dispatch(object);
143429
- if (!hashingStream.update) {
143430
- hashingStream.end("");
143431
- }
143432
- if (hashingStream.digest) {
143433
- return hashingStream.digest(options29.encoding === "buffer" ? void 0 : options29.encoding);
143434
- }
143435
- var buf = hashingStream.read();
143436
- if (options29.encoding === "buffer") {
143437
- return buf;
143438
- }
143439
- return buf.toString(options29.encoding);
143440
- }
143441
- __name(hash, "hash");
143442
- exports2.writeToStream = function(object, options29, stream2) {
143443
- if (typeof stream2 === "undefined") {
143444
- stream2 = options29;
143445
- options29 = {};
143446
- }
143447
- options29 = applyDefaults(object, options29);
143448
- return typeHasher(options29, stream2).dispatch(object);
143449
- };
143450
- function typeHasher(options29, writeTo, context2) {
143451
- context2 = context2 || [];
143452
- var write = /* @__PURE__ */ __name(function(str) {
143453
- if (writeTo.update) {
143454
- return writeTo.update(str, "utf8");
143455
- } else {
143456
- return writeTo.write(str, "utf8");
143457
- }
143458
- }, "write");
143459
- return {
143460
- dispatch: function(value) {
143461
- if (options29.replacer) {
143462
- value = options29.replacer(value);
143463
- }
143464
- var type = typeof value;
143465
- if (value === null) {
143466
- type = "null";
143467
- }
143468
- return this["_" + type](value);
143469
- },
143470
- _object: function(object) {
143471
- var pattern = /\[object (.*)\]/i;
143472
- var objString = Object.prototype.toString.call(object);
143473
- var objType = pattern.exec(objString);
143474
- if (!objType) {
143475
- objType = "unknown:[" + objString + "]";
143476
- } else {
143477
- objType = objType[1];
143478
- }
143479
- objType = objType.toLowerCase();
143480
- var objectNumber = null;
143481
- if ((objectNumber = context2.indexOf(object)) >= 0) {
143482
- return this.dispatch("[CIRCULAR:" + objectNumber + "]");
143483
- } else {
143484
- context2.push(object);
143485
- }
143486
- if (typeof Buffer !== "undefined" && Buffer.isBuffer && Buffer.isBuffer(object)) {
143487
- write("buffer:");
143488
- return write(object);
143489
- }
143490
- if (objType !== "object" && objType !== "function" && objType !== "asyncfunction") {
143491
- if (this["_" + objType]) {
143492
- this["_" + objType](object);
143493
- } else if (options29.ignoreUnknown) {
143494
- return write("[" + objType + "]");
143495
- } else {
143496
- throw new Error('Unknown object type "' + objType + '"');
143497
- }
143498
- } else {
143499
- var keys = Object.keys(object);
143500
- if (options29.unorderedObjects) {
143501
- keys = keys.sort();
143502
- }
143503
- if (options29.respectType !== false && !isNativeFunction(object)) {
143504
- keys.splice(0, 0, "prototype", "__proto__", "constructor");
143505
- }
143506
- if (options29.excludeKeys) {
143507
- keys = keys.filter(function(key) {
143508
- return !options29.excludeKeys(key);
143509
- });
143510
- }
143511
- write("object:" + keys.length + ":");
143512
- var self2 = this;
143513
- return keys.forEach(function(key) {
143514
- self2.dispatch(key);
143515
- write(":");
143516
- if (!options29.excludeValues) {
143517
- self2.dispatch(object[key]);
143518
- }
143519
- write(",");
143520
- });
143521
- }
143522
- },
143523
- _array: function(arr, unordered) {
143524
- unordered = typeof unordered !== "undefined" ? unordered : options29.unorderedArrays !== false;
143525
- var self2 = this;
143526
- write("array:" + arr.length + ":");
143527
- if (!unordered || arr.length <= 1) {
143528
- return arr.forEach(function(entry) {
143529
- return self2.dispatch(entry);
143530
- });
143531
- }
143532
- var contextAdditions = [];
143533
- var entries = arr.map(function(entry) {
143534
- var strm = new PassThrough2();
143535
- var localContext = context2.slice();
143536
- var hasher = typeHasher(options29, strm, localContext);
143537
- hasher.dispatch(entry);
143538
- contextAdditions = contextAdditions.concat(localContext.slice(context2.length));
143539
- return strm.read().toString();
143540
- });
143541
- context2 = context2.concat(contextAdditions);
143542
- entries.sort();
143543
- return this._array(entries, false);
143544
- },
143545
- _date: function(date) {
143546
- return write("date:" + date.toJSON());
143547
- },
143548
- _symbol: function(sym) {
143549
- return write("symbol:" + sym.toString());
143550
- },
143551
- _error: function(err) {
143552
- return write("error:" + err.toString());
143553
- },
143554
- _boolean: function(bool) {
143555
- return write("bool:" + bool.toString());
143556
- },
143557
- _string: function(string) {
143558
- write("string:" + string.length + ":");
143559
- write(string.toString());
143560
- },
143561
- _function: function(fn2) {
143562
- write("fn:");
143563
- if (isNativeFunction(fn2)) {
143564
- this.dispatch("[native]");
143565
- } else {
143566
- this.dispatch(fn2.toString());
143567
- }
143568
- if (options29.respectFunctionNames !== false) {
143569
- this.dispatch("function-name:" + String(fn2.name));
143570
- }
143571
- if (options29.respectFunctionProperties) {
143572
- this._object(fn2);
143573
- }
143574
- },
143575
- _number: function(number) {
143576
- return write("number:" + number.toString());
143577
- },
143578
- _xml: function(xml) {
143579
- return write("xml:" + xml.toString());
143580
- },
143581
- _null: function() {
143582
- return write("Null");
143583
- },
143584
- _undefined: function() {
143585
- return write("Undefined");
143586
- },
143587
- _regexp: function(regex2) {
143588
- return write("regex:" + regex2.toString());
143589
- },
143590
- _uint8array: function(arr) {
143591
- write("uint8array:");
143592
- return this.dispatch(Array.prototype.slice.call(arr));
143593
- },
143594
- _uint8clampedarray: function(arr) {
143595
- write("uint8clampedarray:");
143596
- return this.dispatch(Array.prototype.slice.call(arr));
143597
- },
143598
- _int8array: function(arr) {
143599
- write("uint8array:");
143600
- return this.dispatch(Array.prototype.slice.call(arr));
143601
- },
143602
- _uint16array: function(arr) {
143603
- write("uint16array:");
143604
- return this.dispatch(Array.prototype.slice.call(arr));
143605
- },
143606
- _int16array: function(arr) {
143607
- write("uint16array:");
143608
- return this.dispatch(Array.prototype.slice.call(arr));
143609
- },
143610
- _uint32array: function(arr) {
143611
- write("uint32array:");
143612
- return this.dispatch(Array.prototype.slice.call(arr));
143613
- },
143614
- _int32array: function(arr) {
143615
- write("uint32array:");
143616
- return this.dispatch(Array.prototype.slice.call(arr));
143617
- },
143618
- _float32array: function(arr) {
143619
- write("float32array:");
143620
- return this.dispatch(Array.prototype.slice.call(arr));
143621
- },
143622
- _float64array: function(arr) {
143623
- write("float64array:");
143624
- return this.dispatch(Array.prototype.slice.call(arr));
143625
- },
143626
- _arraybuffer: function(arr) {
143627
- write("arraybuffer:");
143628
- return this.dispatch(new Uint8Array(arr));
143629
- },
143630
- _url: function(url4) {
143631
- return write("url:" + url4.toString(), "utf8");
143632
- },
143633
- _map: function(map) {
143634
- write("map:");
143635
- var arr = Array.from(map);
143636
- return this._array(arr, options29.unorderedSets !== false);
143637
- },
143638
- _set: function(set) {
143639
- write("set:");
143640
- var arr = Array.from(set);
143641
- return this._array(arr, options29.unorderedSets !== false);
143642
- },
143643
- _file: function(file) {
143644
- write("file:");
143645
- return this.dispatch([file.name, file.size, file.type, file.lastModfied]);
143646
- },
143647
- _blob: function() {
143648
- if (options29.ignoreUnknown) {
143649
- return write("[blob]");
143650
- }
143651
- throw Error('Hashing Blob objects is currently not supported\n(see https://github.com/puleos/object-hash/issues/26)\nUse "options.replacer" or "options.ignoreUnknown"\n');
143652
- },
143653
- _domwindow: function() {
143654
- return write("domwindow");
143655
- },
143656
- _bigint: function(number) {
143657
- return write("bigint:" + number.toString());
143658
- },
143659
- /* Node.js standard native objects */
143660
- _process: function() {
143661
- return write("process");
143662
- },
143663
- _timer: function() {
143664
- return write("timer");
143665
- },
143666
- _pipe: function() {
143667
- return write("pipe");
143668
- },
143669
- _tcp: function() {
143670
- return write("tcp");
143671
- },
143672
- _udp: function() {
143673
- return write("udp");
143674
- },
143675
- _tty: function() {
143676
- return write("tty");
143677
- },
143678
- _statwatcher: function() {
143679
- return write("statwatcher");
143680
- },
143681
- _securecontext: function() {
143682
- return write("securecontext");
143683
- },
143684
- _connection: function() {
143685
- return write("connection");
143686
- },
143687
- _zlib: function() {
143688
- return write("zlib");
143689
- },
143690
- _context: function() {
143691
- return write("context");
143692
- },
143693
- _nodescript: function() {
143694
- return write("nodescript");
143695
- },
143696
- _httpparser: function() {
143697
- return write("httpparser");
143698
- },
143699
- _dataview: function() {
143700
- return write("dataview");
143701
- },
143702
- _signal: function() {
143703
- return write("signal");
143704
- },
143705
- _fsevent: function() {
143706
- return write("fsevent");
143707
- },
143708
- _tlswrap: function() {
143709
- return write("tlswrap");
143710
- }
143711
- };
143712
- }
143713
- __name(typeHasher, "typeHasher");
143714
- function PassThrough2() {
143715
- return {
143716
- buf: "",
143717
- write: function(b2) {
143718
- this.buf += b2;
143719
- },
143720
- end: function(b2) {
143721
- this.buf += b2;
143722
- },
143723
- read: function() {
143724
- return this.buf;
143725
- }
143726
- };
141638
+ var f = require_react();
141639
+ var k2 = Symbol.for("react.element");
141640
+ var l2 = Symbol.for("react.fragment");
141641
+ var m2 = Object.prototype.hasOwnProperty;
141642
+ var n3 = f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner;
141643
+ var p2 = { key: true, ref: true, __self: true, __source: true };
141644
+ function q2(c2, a, g2) {
141645
+ var b2, d2 = {}, e4 = null, h2 = null;
141646
+ void 0 !== g2 && (e4 = "" + g2);
141647
+ void 0 !== a.key && (e4 = "" + a.key);
141648
+ void 0 !== a.ref && (h2 = a.ref);
141649
+ for (b2 in a)
141650
+ m2.call(a, b2) && !p2.hasOwnProperty(b2) && (d2[b2] = a[b2]);
141651
+ if (c2 && c2.defaultProps)
141652
+ for (b2 in a = c2.defaultProps, a)
141653
+ void 0 === d2[b2] && (d2[b2] = a[b2]);
141654
+ return { $$typeof: k2, type: c2, key: e4, ref: h2, props: d2, _owner: n3.current };
143727
141655
  }
143728
- __name(PassThrough2, "PassThrough");
141656
+ __name(q2, "q");
141657
+ exports2.Fragment = l2;
141658
+ exports2.jsx = q2;
141659
+ exports2.jsxs = q2;
143729
141660
  }
143730
141661
  });
143731
141662
 
143732
- // ../../node_modules/.pnpm/ink-table@3.0.0_ink@3.2.0_patch_hash=iiwbcf44d6ccmi6a27ljqs7qce_@types+react@18.3.3_react@18.3.1__react@18.3.1/node_modules/ink-table/dist/index.js
143733
- var require_dist4 = __commonJS({
143734
- "../../node_modules/.pnpm/ink-table@3.0.0_ink@3.2.0_patch_hash=iiwbcf44d6ccmi6a27ljqs7qce_@types+react@18.3.3_react@18.3.1__react@18.3.1/node_modules/ink-table/dist/index.js"(exports2) {
141663
+ // ../../node_modules/.pnpm/react@18.3.1/node_modules/react/jsx-runtime.js
141664
+ var require_jsx_runtime = __commonJS({
141665
+ "../../node_modules/.pnpm/react@18.3.1/node_modules/react/jsx-runtime.js"(exports2, module3) {
143735
141666
  "use strict";
143736
141667
  init_import_meta_url();
143737
- var __importDefault = exports2 && exports2.__importDefault || function(mod) {
143738
- return mod && mod.__esModule ? mod : { "default": mod };
143739
- };
143740
- Object.defineProperty(exports2, "__esModule", { value: true });
143741
- exports2.Skeleton = exports2.Cell = exports2.Header = void 0;
143742
- var react_1 = __importDefault(require_react());
143743
- var ink_1 = require_build2();
143744
- var object_hash_1 = require_object_hash();
143745
- var Table10 = class extends react_1.default.Component {
143746
- constructor() {
143747
- super(...arguments);
143748
- this.header = row({
143749
- cell: this.getConfig().skeleton,
143750
- padding: this.getConfig().padding,
143751
- skeleton: {
143752
- component: this.getConfig().skeleton,
143753
- // chars
143754
- line: "\u2500",
143755
- left: "\u250C",
143756
- right: "\u2510",
143757
- cross: "\u252C"
143758
- }
143759
- });
143760
- this.heading = row({
143761
- cell: this.getConfig().header,
143762
- padding: this.getConfig().padding,
143763
- skeleton: {
143764
- component: this.getConfig().skeleton,
143765
- // chars
143766
- line: " ",
143767
- left: "\u2502",
143768
- right: "\u2502",
143769
- cross: "\u2502"
143770
- }
143771
- });
143772
- this.separator = row({
143773
- cell: this.getConfig().skeleton,
143774
- padding: this.getConfig().padding,
143775
- skeleton: {
143776
- component: this.getConfig().skeleton,
143777
- // chars
143778
- line: "\u2500",
143779
- left: "\u251C",
143780
- right: "\u2524",
143781
- cross: "\u253C"
143782
- }
143783
- });
143784
- this.data = row({
143785
- cell: this.getConfig().cell,
143786
- padding: this.getConfig().padding,
143787
- skeleton: {
143788
- component: this.getConfig().skeleton,
143789
- // chars
143790
- line: " ",
143791
- left: "\u2502",
143792
- right: "\u2502",
143793
- cross: "\u2502"
143794
- }
143795
- });
143796
- this.footer = row({
143797
- cell: this.getConfig().skeleton,
143798
- padding: this.getConfig().padding,
143799
- skeleton: {
143800
- component: this.getConfig().skeleton,
143801
- // chars
143802
- line: "\u2500",
143803
- left: "\u2514",
143804
- right: "\u2518",
143805
- cross: "\u2534"
143806
- }
143807
- });
143808
- }
143809
- /**
143810
- * Merges provided configuration with defaults.
143811
- */
143812
- getConfig() {
143813
- return {
143814
- data: this.props.data,
143815
- columns: this.props.columns || this.getDataKeys(),
143816
- padding: this.props.padding || 1,
143817
- header: this.props.header || Header,
143818
- cell: this.props.cell || Cell,
143819
- skeleton: this.props.skeleton || Skeleton
143820
- };
143821
- }
143822
- /**
143823
- * Gets all keyes used in data by traversing through the data.
143824
- */
143825
- getDataKeys() {
143826
- let keys = /* @__PURE__ */ new Set();
143827
- for (const data of this.props.data) {
143828
- for (const key in data) {
143829
- keys.add(key);
143830
- }
143831
- }
143832
- return Array.from(keys);
143833
- }
143834
- /**
143835
- * Calculates the width of each column by finding
143836
- * the longest value in a cell of a particular column.
143837
- *
143838
- * Returns a list of column names and their widths.
143839
- */
143840
- getColumns() {
143841
- const { columns, padding } = this.getConfig();
143842
- const widths = columns.map((key) => {
143843
- const header = String(key).length;
143844
- const data = this.props.data.map((data2) => {
143845
- const value = data2[key];
143846
- if (value == void 0 || value == null)
143847
- return 0;
143848
- return String(value).length;
143849
- });
143850
- const width = Math.max(...data, header) + padding * 2;
143851
- return {
143852
- column: key,
143853
- width,
143854
- key: String(key)
143855
- };
143856
- });
143857
- return widths;
143858
- }
143859
- /**
143860
- * Returns a (data) row representing the headings.
143861
- */
143862
- getHeadings() {
143863
- const { columns } = this.getConfig();
143864
- const headings = columns.reduce((acc, column) => ({ ...acc, [column]: column }), {});
143865
- return headings;
143866
- }
143867
- /* Render */
143868
- render() {
143869
- const columns = this.getColumns();
143870
- const headings = this.getHeadings();
143871
- return react_1.default.createElement(
143872
- ink_1.Box,
143873
- { flexDirection: "column" },
143874
- this.header({ key: "header", columns, data: {} }),
143875
- this.heading({ key: "heading", columns, data: headings }),
143876
- this.props.data.map((row2, index) => {
143877
- const key = `row-${object_hash_1.sha1(row2)}-${index}`;
143878
- return react_1.default.createElement(
143879
- ink_1.Box,
143880
- { flexDirection: "column", key },
143881
- this.separator({ key: `separator-${key}`, columns, data: {} }),
143882
- this.data({ key: `data-${key}`, columns, data: row2 })
143883
- );
143884
- }),
143885
- this.footer({ key: "footer", columns, data: {} })
143886
- );
143887
- }
143888
- };
143889
- __name(Table10, "Table");
143890
- exports2.default = Table10;
143891
- function row(config) {
143892
- const skeleton = config.skeleton;
143893
- return (props) => react_1.default.createElement(
143894
- ink_1.Box,
143895
- { flexDirection: "row" },
143896
- react_1.default.createElement(skeleton.component, null, skeleton.left),
143897
- intersperse(
143898
- (i) => {
143899
- const key = `${props.key}-hseparator-${i}`;
143900
- return react_1.default.createElement(skeleton.component, { key }, skeleton.cross);
143901
- },
143902
- // Values.
143903
- props.columns.map((column) => {
143904
- const value = props.data[column.column];
143905
- if (value == void 0 || value == null) {
143906
- const key = `${props.key}-empty-${column.key}`;
143907
- return react_1.default.createElement(config.cell, { key }, skeleton.line.repeat(column.width));
143908
- } else {
143909
- const key = `${props.key}-cell-${column.key}`;
143910
- const ml = config.padding;
143911
- const mr = column.width - String(value).length - config.padding;
143912
- return (
143913
- /* prettier-ignore */
143914
- react_1.default.createElement(config.cell, { key }, `${skeleton.line.repeat(ml)}${String(value)}${skeleton.line.repeat(mr)}`)
143915
- );
143916
- }
143917
- })
143918
- ),
143919
- react_1.default.createElement(skeleton.component, null, skeleton.right)
143920
- );
143921
- }
143922
- __name(row, "row");
143923
- function Header(props) {
143924
- return react_1.default.createElement(ink_1.Text, { bold: true, color: "blue" }, props.children);
143925
- }
143926
- __name(Header, "Header");
143927
- exports2.Header = Header;
143928
- function Cell(props) {
143929
- return react_1.default.createElement(ink_1.Text, null, props.children);
143930
- }
143931
- __name(Cell, "Cell");
143932
- exports2.Cell = Cell;
143933
- function Skeleton(props) {
143934
- return react_1.default.createElement(ink_1.Text, { bold: true }, props.children);
143935
- }
143936
- __name(Skeleton, "Skeleton");
143937
- exports2.Skeleton = Skeleton;
143938
- function intersperse(intersperser, elements) {
143939
- let interspersed = elements.reduce((acc, element, index) => {
143940
- if (acc.length === 0)
143941
- return [element];
143942
- return [...acc, intersperser(index), element];
143943
- }, []);
143944
- return interspersed;
141668
+ if (true) {
141669
+ module3.exports = require_react_jsx_runtime_production_min();
141670
+ } else {
141671
+ module3.exports = null;
143945
141672
  }
143946
- __name(intersperse, "intersperse");
143947
141673
  }
143948
141674
  });
143949
141675
 
@@ -144969,7 +142695,7 @@ var require_helpers = __commonJS({
144969
142695
  });
144970
142696
 
144971
142697
  // ../../node_modules/.pnpm/agent-base@7.1.0_supports-color@9.2.2/node_modules/agent-base/dist/index.js
144972
- var require_dist5 = __commonJS({
142698
+ var require_dist4 = __commonJS({
144973
142699
  "../../node_modules/.pnpm/agent-base@7.1.0_supports-color@9.2.2/node_modules/agent-base/dist/index.js"(exports2) {
144974
142700
  "use strict";
144975
142701
  init_import_meta_url();
@@ -145184,7 +142910,7 @@ var require_parse_proxy_response = __commonJS({
145184
142910
  });
145185
142911
 
145186
142912
  // ../../node_modules/.pnpm/https-proxy-agent@7.0.2_supports-color@9.2.2/node_modules/https-proxy-agent/dist/index.js
145187
- var require_dist6 = __commonJS({
142913
+ var require_dist5 = __commonJS({
145188
142914
  "../../node_modules/.pnpm/https-proxy-agent@7.0.2_supports-color@9.2.2/node_modules/https-proxy-agent/dist/index.js"(exports2) {
145189
142915
  "use strict";
145190
142916
  init_import_meta_url();
@@ -145229,7 +142955,7 @@ var require_dist6 = __commonJS({
145229
142955
  var tls = __importStar(require("tls"));
145230
142956
  var assert_1 = __importDefault(require("assert"));
145231
142957
  var debug_1 = __importDefault(require_src10());
145232
- var agent_base_1 = require_dist5();
142958
+ var agent_base_1 = require_dist4();
145233
142959
  var parse_proxy_response_1 = require_parse_proxy_response();
145234
142960
  var debug = (0, debug_1.default)("https-proxy-agent");
145235
142961
  var HttpsProxyAgent3 = class extends agent_base_1.Agent {
@@ -147635,7 +145361,7 @@ var require_websocket4 = __commonJS({
147635
145361
  "../../node_modules/.pnpm/ws@8.17.1/node_modules/ws/lib/websocket.js"(exports2, module3) {
147636
145362
  "use strict";
147637
145363
  init_import_meta_url();
147638
- var EventEmitter5 = require("events");
145364
+ var EventEmitter4 = require("events");
147639
145365
  var https3 = require("https");
147640
145366
  var http4 = require("http");
147641
145367
  var net3 = require("net");
@@ -147666,7 +145392,7 @@ var require_websocket4 = __commonJS({
147666
145392
  var protocolVersions = [8, 13];
147667
145393
  var readyStates = ["CONNECTING", "OPEN", "CLOSING", "CLOSED"];
147668
145394
  var subprotocolRegex = /^[!#$%&'*+\-.0-9A-Z^_`|a-z~]+$/;
147669
- var WebSocket2 = class extends EventEmitter5 {
145395
+ var WebSocket2 = class extends EventEmitter4 {
147670
145396
  /**
147671
145397
  * Create a new `WebSocket`.
147672
145398
  *
@@ -148592,7 +146318,7 @@ var require_websocket_server2 = __commonJS({
148592
146318
  "../../node_modules/.pnpm/ws@8.17.1/node_modules/ws/lib/websocket-server.js"(exports2, module3) {
148593
146319
  "use strict";
148594
146320
  init_import_meta_url();
148595
- var EventEmitter5 = require("events");
146321
+ var EventEmitter4 = require("events");
148596
146322
  var http4 = require("http");
148597
146323
  var { Duplex } = require("stream");
148598
146324
  var { createHash: createHash4 } = require("crypto");
@@ -148605,7 +146331,7 @@ var require_websocket_server2 = __commonJS({
148605
146331
  var RUNNING = 0;
148606
146332
  var CLOSING = 1;
148607
146333
  var CLOSED = 2;
148608
- var WebSocketServer2 = class extends EventEmitter5 {
146334
+ var WebSocketServer2 = class extends EventEmitter4 {
148609
146335
  /**
148610
146336
  * Create a `WebSocketServer` instance.
148611
146337
  *
@@ -149447,7 +147173,7 @@ var require_agent3 = __commonJS({
149447
147173
  });
149448
147174
 
149449
147175
  // ../../node_modules/.pnpm/https-proxy-agent@5.0.1_supports-color@9.2.2/node_modules/https-proxy-agent/dist/index.js
149450
- var require_dist7 = __commonJS({
147176
+ var require_dist6 = __commonJS({
149451
147177
  "../../node_modules/.pnpm/https-proxy-agent@5.0.1_supports-color@9.2.2/node_modules/https-proxy-agent/dist/index.js"(exports2, module3) {
149452
147178
  "use strict";
149453
147179
  init_import_meta_url();
@@ -151218,7 +148944,7 @@ var import_node_path65 = __toESM(require("node:path"));
151218
148944
  var import_node_util3 = __toESM(require("node:util"));
151219
148945
  var import_env2 = __toESM(require_dist());
151220
148946
  var import_chokidar6 = require("chokidar");
151221
- var import_ink13 = __toESM(require_build2());
148947
+ var import_ink4 = __toESM(require_build2());
151222
148948
 
151223
148949
  // src/api/startDevWorker/utils.ts
151224
148950
  init_import_meta_url();
@@ -151524,6 +149250,9 @@ async function convertBindingsToCfWorkerInitBindings(inputBindings) {
151524
149250
  } else if (binding.type === "logfwdr") {
151525
149251
  bindings.logfwdr ??= { bindings: [] };
151526
149252
  bindings.logfwdr.bindings.push({ ...binding, name: name2 });
149253
+ } else if (binding.type === "workflow") {
149254
+ bindings.workflows ??= [];
149255
+ bindings.workflows.push({ ...binding, binding: name2 });
151527
149256
  } else if (isUnsafeBindingType(binding.type)) {
151528
149257
  bindings.unsafe ??= {
151529
149258
  bindings: [],
@@ -156697,15 +154426,6 @@ var LOGGER_LEVEL_FORMAT_TYPE_MAP = {
156697
154426
  var getLogLevelFromEnv = getEnvironmentVariableFactory({
156698
154427
  variableName: "WRANGLER_LOG"
156699
154428
  });
156700
- var warnOnce = (() => {
156701
- let logged = false;
156702
- return (...args) => {
156703
- if (!logged) {
156704
- console.warn(...args);
156705
- logged = true;
156706
- }
156707
- };
156708
- })();
156709
154429
  function getLoggerLevel() {
156710
154430
  const fromEnv = getLogLevelFromEnv()?.toLowerCase();
156711
154431
  if (fromEnv !== void 0) {
@@ -156713,7 +154433,7 @@ function getLoggerLevel() {
156713
154433
  return fromEnv;
156714
154434
  }
156715
154435
  const expected = Object.keys(LOGGER_LEVELS).map((level) => `"${level}"`).join(" | ");
156716
- warnOnce(
154436
+ logger.warnOnce(
156717
154437
  `Unrecognised WRANGLER_LOG value ${JSON.stringify(
156718
154438
  fromEnv
156719
154439
  )}, expected ${expected}, defaulting to "log"...`
@@ -156770,6 +154490,13 @@ var _Logger = class {
156770
154490
  console[method].apply(console, args);
156771
154491
  (_b2 = __privateGet(_Logger, _afterLogHook)) == null ? void 0 : _b2.call(_Logger);
156772
154492
  }
154493
+ warnOnce(message) {
154494
+ const { warnOnceHistory } = this.constructor;
154495
+ if (!warnOnceHistory.has(message)) {
154496
+ warnOnceHistory.add(message);
154497
+ this.warn(message);
154498
+ }
154499
+ }
156773
154500
  doLog(messageLevel, args) {
156774
154501
  var _a2, _b2;
156775
154502
  const message = this.formatMessage(messageLevel, (0, import_node_util.format)(...args));
@@ -156808,6 +154535,7 @@ var Logger = _Logger;
156808
154535
  __name(Logger, "Logger");
156809
154536
  _beforeLogHook = new WeakMap();
156810
154537
  _afterLogHook = new WeakMap();
154538
+ __publicField(Logger, "warnOnceHistory", /* @__PURE__ */ new Set());
156811
154539
  __privateAdd(Logger, _beforeLogHook, void 0);
156812
154540
  __privateAdd(Logger, _afterLogHook, void 0);
156813
154541
  var logger = new Logger();
@@ -158026,7 +155754,7 @@ var import_undici3 = __toESM(require_undici());
158026
155754
 
158027
155755
  // package.json
158028
155756
  var name = "wrangler";
158029
- var version = "3.82.0";
155757
+ var version = "3.83.0";
158030
155758
 
158031
155759
  // src/user/index.ts
158032
155760
  init_import_meta_url();
@@ -158663,7 +156391,7 @@ var getCloudflareAccessToken = /* @__PURE__ */ __name(async () => {
158663
156391
  return getAccessToken(getAuthDomainFromEnv());
158664
156392
  }, "getCloudflareAccessToken");
158665
156393
 
158666
- // src/user/choose-account.tsx
156394
+ // src/user/choose-account.ts
158667
156395
  init_import_meta_url();
158668
156396
  async function getAccountChoices() {
158669
156397
  const accountIdFromEnv = getCloudflareAccountIdFromEnv();
@@ -166228,32 +163956,36 @@ async function getMigrationsToUpload(scriptName, props) {
166228
163956
  let migrations;
166229
163957
  if (config.migrations.length > 0) {
166230
163958
  let script;
166231
- if (!props.legacyEnv) {
163959
+ if (props.dispatchNamespace) {
166232
163960
  try {
166233
- if (props.env) {
166234
- const scriptData = await fetchResult(
166235
- `/accounts/${accountId}/workers/services/${scriptName}/environments/${props.env}`
166236
- );
166237
- script = scriptData.script;
166238
- } else {
166239
- const scriptData = await fetchResult(`/accounts/${accountId}/workers/services/${scriptName}`);
166240
- script = scriptData.default_environment.script;
166241
- }
163961
+ const scriptData = await fetchResult(
163962
+ `/accounts/${accountId}/workers/dispatch/namespaces/${props.dispatchNamespace}/scripts/${scriptName}`
163963
+ );
163964
+ script = scriptData.script;
166242
163965
  } catch (err) {
166243
- if (![
166244
- 10090,
166245
- // corresponds to workers.api.error.service_not_found, so the script wasn't previously published at all
166246
- 10092
166247
- // workers.api.error.environment_not_found, so the script wasn't published to this environment yet
166248
- ].includes(err.code)) {
166249
- throw err;
166250
- }
163966
+ suppressNotFoundError(err);
166251
163967
  }
166252
163968
  } else {
166253
- const scripts = await fetchResult(
166254
- `/accounts/${accountId}/workers/scripts`
166255
- );
166256
- script = scripts.find(({ id }) => id === scriptName);
163969
+ if (!props.legacyEnv) {
163970
+ try {
163971
+ if (props.env) {
163972
+ const scriptData = await fetchResult(
163973
+ `/accounts/${accountId}/workers/services/${scriptName}/environments/${props.env}`
163974
+ );
163975
+ script = scriptData.script;
163976
+ } else {
163977
+ const scriptData = await fetchResult(`/accounts/${accountId}/workers/services/${scriptName}`);
163978
+ script = scriptData.default_environment.script;
163979
+ }
163980
+ } catch (err) {
163981
+ suppressNotFoundError(err);
163982
+ }
163983
+ } else {
163984
+ const scripts = await fetchResult(
163985
+ `/accounts/${accountId}/workers/scripts`
163986
+ );
163987
+ script = scripts.find(({ id }) => id === scriptName);
163988
+ }
166257
163989
  }
166258
163990
  if (script?.migration_tag) {
166259
163991
  const scriptMigrationTag = script.migration_tag;
@@ -166288,6 +164020,16 @@ async function getMigrationsToUpload(scriptName, props) {
166288
164020
  return migrations;
166289
164021
  }
166290
164022
  __name(getMigrationsToUpload, "getMigrationsToUpload");
164023
+ var suppressNotFoundError = /* @__PURE__ */ __name((err) => {
164024
+ if (![
164025
+ 10090,
164026
+ // corresponds to workers.api.error.service_not_found, so the script wasn't previously published at all
164027
+ 10092
164028
+ // workers.api.error.environment_not_found, so the script wasn't published to this environment yet
164029
+ ].includes(err.code)) {
164030
+ throw err;
164031
+ }
164032
+ }, "suppressNotFoundError");
166291
164033
 
166292
164034
  // src/metrics/index.ts
166293
164035
  init_import_meta_url();
@@ -167544,6 +165286,17 @@ function hyperdriveEntry(hyperdrive2) {
167544
165286
  return [hyperdrive2.binding, hyperdrive2.localConnectionString ?? ""];
167545
165287
  }
167546
165288
  __name(hyperdriveEntry, "hyperdriveEntry");
165289
+ function workflowEntry(workflow) {
165290
+ return [
165291
+ workflow.binding,
165292
+ {
165293
+ name: workflow.name,
165294
+ className: workflow.class_name,
165295
+ scriptName: workflow.script_name
165296
+ }
165297
+ ];
165298
+ }
165299
+ __name(workflowEntry, "workflowEntry");
167547
165300
  function ratelimitEntry(ratelimit) {
167548
165301
  return [ratelimit.name, ratelimit];
167549
165302
  }
@@ -167739,6 +165492,7 @@ function buildMiniflareBindingOptions(config) {
167739
165492
  hyperdrives: Object.fromEntries(
167740
165493
  bindings.hyperdrive?.map(hyperdriveEntry) ?? []
167741
165494
  ),
165495
+ workflows: Object.fromEntries(bindings.workflows?.map(workflowEntry) ?? []),
167742
165496
  durableObjects: Object.fromEntries([
167743
165497
  ...internalObjects.map(({ name: name2, class_name }) => {
167744
165498
  const useSQLite = classNameToUseSQLite.get(class_name);
@@ -167790,7 +165544,8 @@ function buildPersistOptions(localPersistencePath) {
167790
165544
  durableObjectsPersist: import_node_path19.default.join(v3Path, "do"),
167791
165545
  kvPersist: import_node_path19.default.join(v3Path, "kv"),
167792
165546
  r2Persist: import_node_path19.default.join(v3Path, "r2"),
167793
- d1Persist: import_node_path19.default.join(v3Path, "d1")
165547
+ d1Persist: import_node_path19.default.join(v3Path, "d1"),
165548
+ workflowsPersist: import_node_path19.default.join(v3Path, "workflows")
167794
165549
  };
167795
165550
  }
167796
165551
  }
@@ -168043,7 +165798,7 @@ __name(MiniflareServer, "MiniflareServer");
168043
165798
 
168044
165799
  // src/kv/helpers.ts
168045
165800
  var API_MAX = 1e4;
168046
- var BATCH_KEY_MAX = API_MAX / 2;
165801
+ var BATCH_KEY_MAX = API_MAX / 10;
168047
165802
  async function createKVNamespace(accountId, title) {
168048
165803
  const response = await fetchResult(
168049
165804
  `/accounts/${accountId}/storage/kv/namespaces`,
@@ -168998,6 +166753,7 @@ ${dashLink}`);
168998
166753
  deployments2.push(...updateConsumers);
168999
166754
  }
169000
166755
  if (config.workflows?.length) {
166756
+ logger.warnOnce("Workflows is currently in open beta.");
169001
166757
  for (const workflow of config.workflows) {
169002
166758
  deployments2.push(
169003
166759
  fetchResult(`/accounts/${accountId}/workflows/${workflow.name}`, {
@@ -170281,7 +168037,7 @@ function createLogUpdate(stream2, { showCursor = false } = {}) {
170281
168037
  let previousLineCount = 0;
170282
168038
  let previousWidth = getWidth(stream2);
170283
168039
  let previousOutput = "";
170284
- const render7 = /* @__PURE__ */ __name((...arguments_) => {
168040
+ const render3 = /* @__PURE__ */ __name((...arguments_) => {
170285
168041
  if (!showCursor) {
170286
168042
  cli_cursor_default.hide();
170287
168043
  }
@@ -170301,13 +168057,13 @@ function createLogUpdate(stream2, { showCursor = false } = {}) {
170301
168057
  stream2.write(ansi_escapes_default.eraseLines(previousLineCount) + output);
170302
168058
  previousLineCount = output.split("\n").length;
170303
168059
  }, "render");
170304
- render7.clear = () => {
168060
+ render3.clear = () => {
170305
168061
  stream2.write(ansi_escapes_default.eraseLines(previousLineCount));
170306
168062
  previousOutput = "";
170307
168063
  previousWidth = getWidth(stream2);
170308
168064
  previousLineCount = 0;
170309
168065
  };
170310
- render7.done = () => {
168066
+ render3.done = () => {
170311
168067
  previousOutput = "";
170312
168068
  previousWidth = getWidth(stream2);
170313
168069
  previousLineCount = 0;
@@ -170315,7 +168071,7 @@ function createLogUpdate(stream2, { showCursor = false } = {}) {
170315
168071
  cli_cursor_default.show();
170316
168072
  }
170317
168073
  };
170318
- return render7;
168074
+ return render3;
170319
168075
  }
170320
168076
  __name(createLogUpdate, "createLogUpdate");
170321
168077
  var logUpdate = createLogUpdate(import_node_process7.default.stdout);
@@ -170971,6 +168727,9 @@ async function versionsDeployHandler(args) {
170971
168727
  'You need to provide a name of your worker. Either pass it as a cli arg with `--name <name>` or in your config file as `name = "<name>"`'
170972
168728
  );
170973
168729
  }
168730
+ if (config.workflows?.length) {
168731
+ logger.warnOnce("Workflows is currently in open beta.");
168732
+ }
170974
168733
  const versionCache = /* @__PURE__ */ new Map();
170975
168734
  const optionalVersionTraffic = parseVersionSpecs(args);
170976
168735
  startSection(
@@ -171777,7 +169536,8 @@ See https://developers.cloudflare.com/workers/platform/compatibility-dates for m
171777
169536
  accountId,
171778
169537
  config,
171779
169538
  legacyEnv: props.legacyEnv,
171780
- env: props.env
169539
+ env: props.env,
169540
+ dispatchNamespace: props.dispatchNamespace
171781
169541
  }) : void 0;
171782
169542
  const assetsJwt = props.assetsOptions && !props.dryRun ? await syncAssets(accountId, scriptName, props.assetsOptions.directory) : void 0;
171783
169543
  const legacyAssets = await syncLegacyAssets(
@@ -172284,14 +170044,12 @@ __name(noBundleWorker, "noBundleWorker");
172284
170044
  // src/assets.ts
172285
170045
  init_hash();
172286
170046
 
172287
- // src/pages/upload.tsx
170047
+ // src/pages/upload.ts
172288
170048
  init_import_meta_url();
172289
170049
  var import_promises9 = require("node:fs/promises");
172290
170050
  var import_node_path24 = require("node:path");
172291
- var import_ink = __toESM(require_build2());
172292
- var import_ink_spinner = __toESM(require_build3());
172293
170051
 
172294
- // src/pages/validate.tsx
170052
+ // src/pages/validate.ts
172295
170053
  init_import_meta_url();
172296
170054
  var import_promises8 = require("node:fs/promises");
172297
170055
  var import_node_path23 = require("node:path");
@@ -172378,8 +170136,7 @@ ${name2} is ${prettyBytes(filestat.size, {
172378
170136
  return fileMap;
172379
170137
  }, "validate");
172380
170138
 
172381
- // src/pages/upload.tsx
172382
- var import_jsx_runtime = __toESM(require_jsx_runtime());
170139
+ // src/pages/upload.ts
172383
170140
  function Options2(yargs) {
172384
170141
  return yargs.positional("directory", {
172385
170142
  type: "string",
@@ -172492,7 +170249,7 @@ var upload = /* @__PURE__ */ __name(async (args) => {
172492
170249
  bucketOffset++;
172493
170250
  }
172494
170251
  let counter = args.fileMap.size - sortedFiles.length;
172495
- const { rerender, unmount } = renderProgress(counter, args.fileMap.size);
170252
+ const { update, stop } = renderProgress(counter, args.fileMap.size);
172496
170253
  const queue = new PQueue({ concurrency: BULK_UPLOAD_CONCURRENCY });
172497
170254
  for (const bucket of buckets) {
172498
170255
  if (bucket.files.length === 0) {
@@ -172553,7 +170310,7 @@ var upload = /* @__PURE__ */ __name(async (args) => {
172553
170310
  () => doUpload().then(
172554
170311
  () => {
172555
170312
  counter += bucket.files.length;
172556
- rerender(counter, args.fileMap.size);
170313
+ update(counter, args.fileMap.size);
172557
170314
  },
172558
170315
  (error2) => {
172559
170316
  return Promise.reject(
@@ -172569,7 +170326,7 @@ var upload = /* @__PURE__ */ __name(async (args) => {
172569
170326
  );
172570
170327
  }
172571
170328
  await queue.onIdle();
172572
- unmount();
170329
+ stop();
172573
170330
  const uploadMs = Date.now() - start;
172574
170331
  const skipped = args.fileMap.size - missingHashes.length;
172575
170332
  const skippedMessage = skipped > 0 ? `(${skipped} already uploaded) ` : "";
@@ -172641,35 +170398,25 @@ function formatTime2(duration) {
172641
170398
  }
172642
170399
  __name(formatTime2, "formatTime");
172643
170400
  function renderProgress(done, total) {
170401
+ const s = spinner();
172644
170402
  if (isInteractive()) {
172645
- const { rerender, unmount } = (0, import_ink.render)(
172646
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Progress, { done, total })
172647
- );
170403
+ s.start(`Uploading... (${done}/${total})
170404
+ `);
172648
170405
  return {
172649
- // eslint-disable-next-line @typescript-eslint/no-shadow
172650
- rerender(done2, total2) {
172651
- rerender(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(Progress, { done: done2, total: total2 }));
172652
- },
172653
- unmount
170406
+ update: (d2, t4) => s.update(`Uploading... (${d2}/${t4})
170407
+ `),
170408
+ stop: s.stop
172654
170409
  };
172655
170410
  } else {
172656
- const rerender = /* @__PURE__ */ __name((done2, total2) => {
172657
- logger.log(`Uploading... (${done2}/${total2})`);
172658
- }, "rerender");
172659
- rerender(done, total);
172660
- return { rerender, unmount() {
172661
- } };
170411
+ logger.log(`Uploading... (${done}/${total})`);
170412
+ return {
170413
+ update: (d2, t4) => logger.log(`Uploading... (${d2}/${t4})`),
170414
+ stop: () => {
170415
+ }
170416
+ };
172662
170417
  }
172663
170418
  }
172664
170419
  __name(renderProgress, "renderProgress");
172665
- function Progress({ done, total }) {
172666
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_ink.Text, { children: [
172667
- isInteractive() ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ink_spinner.default, { type: "earth" }) : null,
172668
- ` Uploading... (${done}/${total})
172669
- `
172670
- ] }) });
172671
- }
172672
- __name(Progress, "Progress");
172673
170420
 
172674
170421
  // src/assets.ts
172675
170422
  var BULK_UPLOAD_CONCURRENCY2 = 3;
@@ -173836,7 +171583,7 @@ var clipboardy_default = clipboard5;
173836
171583
 
173837
171584
  // src/dev/dev.tsx
173838
171585
  var import_command_exists2 = __toESM(require_command_exists2());
173839
- var import_ink4 = __toESM(require_build2());
171586
+ var import_ink3 = __toESM(require_build2());
173840
171587
  var import_react5 = __toESM(require_react());
173841
171588
 
173842
171589
  // ../../node_modules/.pnpm/react-error-boundary@3.1.4_react@18.3.1/node_modules/react-error-boundary/dist/react-error-boundary.esm.js
@@ -173922,7 +171669,7 @@ var ErrorBoundary = /* @__PURE__ */ function(_React$Component) {
173922
171669
  this.reset();
173923
171670
  }
173924
171671
  }, "componentDidUpdate");
173925
- _proto.render = /* @__PURE__ */ __name(function render7() {
171672
+ _proto.render = /* @__PURE__ */ __name(function render3() {
173926
171673
  var error2 = this.state.error;
173927
171674
  var _this$props4 = this.props, fallbackRender = _this$props4.fallbackRender, FallbackComponent = _this$props4.FallbackComponent, fallback = _this$props4.fallback;
173928
171675
  if (error2 !== null) {
@@ -174431,8 +172178,8 @@ __name(useLocalWorker, "useLocalWorker");
174431
172178
  init_import_meta_url();
174432
172179
  var import_node_assert17 = __toESM(require("node:assert"));
174433
172180
  var import_node_path37 = __toESM(require("node:path"));
174434
- var import_ink2 = __toESM(require_build2());
174435
- var import_ink_select_input = __toESM(require_build4());
172181
+ var import_ink = __toESM(require_build2());
172182
+ var import_ink_select_input = __toESM(require_build3());
174436
172183
  var import_react3 = __toESM(require_react());
174437
172184
 
174438
172185
  // src/utils/isAbortError.ts
@@ -175107,7 +172854,7 @@ async function waitForPortToBeAvailable(port2, host, options29) {
175107
172854
  __name(waitForPortToBeAvailable, "waitForPortToBeAvailable");
175108
172855
 
175109
172856
  // src/dev/remote.tsx
175110
- var import_jsx_runtime2 = __toESM(require_jsx_runtime());
172857
+ var import_jsx_runtime = __toESM(require_jsx_runtime());
175111
172858
  function handlePreviewSessionUploadError(err, accountId) {
175112
172859
  (0, import_node_assert17.default)(err && typeof err === "object");
175113
172860
  if (isAbortError(err)) {
@@ -175188,7 +172935,7 @@ function Remote(props) {
175188
172935
  }
175189
172936
  );
175190
172937
  });
175191
- return props.accountId === void 0 && accountChoices !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
172938
+ return props.accountId === void 0 && accountChoices !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
175192
172939
  ChooseAccount,
175193
172940
  {
175194
172941
  accounts: accountChoices,
@@ -175604,9 +173351,9 @@ async function getWorkerAccountAndContext(props) {
175604
173351
  }
175605
173352
  __name(getWorkerAccountAndContext, "getWorkerAccountAndContext");
175606
173353
  function ChooseAccount(props) {
175607
- return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
175608
- /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_ink2.Text, { bold: true, children: "Select an account from below:" }),
175609
- /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
173354
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
173355
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_ink.Text, { bold: true, children: "Select an account from below:" }),
173356
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
175610
173357
  import_ink_select_input.default,
175611
173358
  {
175612
173359
  items: props.accounts.map((item) => ({
@@ -175661,7 +173408,7 @@ var import_node_assert18 = __toESM(require("node:assert"));
175661
173408
  var import_node_fs20 = require("node:fs");
175662
173409
  var import_node_path38 = __toESM(require("node:path"));
175663
173410
  var import_chokidar3 = require("chokidar");
175664
- var import_ink3 = __toESM(require_build2());
173411
+ var import_ink2 = __toESM(require_build2());
175665
173412
  var import_react4 = __toESM(require_react());
175666
173413
  function runBuild({
175667
173414
  entry,
@@ -175825,7 +173572,7 @@ function useEsbuild({
175825
173572
  defineNavigatorUserAgent
175826
173573
  }) {
175827
173574
  const [bundle, setBundle] = (0, import_react4.useState)();
175828
- const { exit: exit6 } = (0, import_ink3.useApp)();
173575
+ const { exit: exit6 } = (0, import_ink2.useApp)();
175829
173576
  (0, import_react4.useEffect)(() => {
175830
173577
  const stopWatching = runBuild(
175831
173578
  {
@@ -175899,7 +173646,7 @@ function useEsbuild({
175899
173646
  __name(useEsbuild, "useEsbuild");
175900
173647
 
175901
173648
  // src/dev/dev.tsx
175902
- var import_jsx_runtime3 = __toESM(require_jsx_runtime());
173649
+ var import_jsx_runtime2 = __toESM(require_jsx_runtime());
175903
173650
  function useDevRegistry(name2, services, durableObjects, mode) {
175904
173651
  const [workers, setWorkers] = (0, import_react5.useState)({});
175905
173652
  const hasFailedToFetch = (0, import_react5.useRef)(false);
@@ -175964,8 +173711,8 @@ function useDevRegistry(name2, services, durableObjects, mode) {
175964
173711
  __name(useDevRegistry, "useDevRegistry");
175965
173712
  function DevImplementation(props) {
175966
173713
  validateDevProps(props);
175967
- const { isRawModeSupported } = (0, import_ink4.useStdin)();
175968
- return props.showInteractiveDevSession ?? isRawModeSupported ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(InteractiveDevSession, { ...props }) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(DevSession, { ...props, local: props.initialMode === "local" });
173714
+ const { isRawModeSupported } = (0, import_ink3.useStdin)();
173715
+ return props.showInteractiveDevSession ?? isRawModeSupported ? /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(InteractiveDevSession, { ...props }) : /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(DevSession, { ...props, local: props.initialMode === "local" });
175969
173716
  }
175970
173717
  __name(DevImplementation, "DevImplementation");
175971
173718
  var ip;
@@ -175998,27 +173745,27 @@ function InteractiveDevSession(props) {
175998
173745
  port = newPort;
175999
173746
  props.onReady?.(newIp, newPort, proxyData);
176000
173747
  }, "onReady");
176001
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
176002
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(DevSession, { ...props, local: toggles.local, onReady }),
176003
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_ink4.Box, { borderStyle: "round", paddingLeft: 1, paddingRight: 1, children: [
176004
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_ink4.Text, { bold: true, children: "[b]" }),
176005
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_ink4.Text, { children: " open a browser, " }),
176006
- props.inspect ? /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
176007
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_ink4.Text, { bold: true, children: "[d]" }),
176008
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_ink4.Text, { children: " open Devtools, " })
173748
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
173749
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(DevSession, { ...props, local: toggles.local, onReady }),
173750
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_ink3.Box, { borderStyle: "round", paddingLeft: 1, paddingRight: 1, children: [
173751
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_ink3.Text, { bold: true, children: "[b]" }),
173752
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_ink3.Text, { children: " open a browser, " }),
173753
+ props.inspect ? /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
173754
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_ink3.Text, { bold: true, children: "[d]" }),
173755
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_ink3.Text, { children: " open Devtools, " })
176009
173756
  ] }) : null,
176010
- !props.forceLocal ? /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
176011
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_ink4.Text, { bold: true, children: "[l]" }),
176012
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_ink4.Text, { children: [
173757
+ !props.forceLocal ? /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
173758
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_ink3.Text, { bold: true, children: "[l]" }),
173759
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_ink3.Text, { children: [
176013
173760
  " ",
176014
173761
  toggles.local ? "turn off" : "turn on",
176015
173762
  " local mode, "
176016
173763
  ] })
176017
173764
  ] }) : null,
176018
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_ink4.Text, { bold: true, children: "[c]" }),
176019
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_ink4.Text, { children: " clear console, " }),
176020
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_ink4.Text, { bold: true, children: "[x]" }),
176021
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_ink4.Text, { children: " to exit" })
173765
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_ink3.Text, { bold: true, children: "[c]" }),
173766
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_ink3.Text, { children: " clear console, " }),
173767
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_ink3.Text, { bold: true, children: "[x]" }),
173768
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_ink3.Text, { children: " to exit" })
176022
173769
  ] })
176023
173770
  ] });
176024
173771
  }
@@ -176301,7 +174048,7 @@ function DevSession(props) {
176301
174048
  props.onReady(finalIp, finalPort, proxyData);
176302
174049
  }
176303
174050
  }, "announceAndOnReady");
176304
- return props.local ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
174051
+ return props.local ? /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
176305
174052
  Local,
176306
174053
  {
176307
174054
  name: props.name,
@@ -176335,7 +174082,7 @@ function DevSession(props) {
176335
174082
  sourceMapPath: bundle?.sourceMapPath,
176336
174083
  services: props.bindings.services
176337
174084
  }
176338
- ) : /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
174085
+ ) : /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
176339
174086
  Remote,
176340
174087
  {
176341
174088
  name: props.name,
@@ -176491,8 +174238,8 @@ __name(useTunnel, "useTunnel");
176491
174238
  function useHotkeys(props) {
176492
174239
  const { initial, inspectorPort, inspect: inspect2, localProtocol, forceLocal } = props;
176493
174240
  const [toggles, setToggles] = (0, import_react5.useState)(initial);
176494
- const { exit: exit6 } = (0, import_ink4.useApp)();
176495
- (0, import_ink4.useInput)(
174241
+ const { exit: exit6 } = (0, import_ink3.useApp)();
174242
+ (0, import_ink3.useInput)(
176496
174243
  async (input, key) => {
176497
174244
  switch (input.toLowerCase()) {
176498
174245
  case "c":
@@ -176546,11 +174293,11 @@ function useHotkeys(props) {
176546
174293
  }
176547
174294
  __name(useHotkeys, "useHotkeys");
176548
174295
  function ErrorFallback(props) {
176549
- const { exit: exit6 } = (0, import_ink4.useApp)();
174296
+ const { exit: exit6 } = (0, import_ink3.useApp)();
176550
174297
  (0, import_react5.useEffect)(() => exit6(props.error));
176551
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_jsx_runtime3.Fragment, { children: [
176552
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_ink4.Text, { children: "Something went wrong:" }),
176553
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_ink4.Text, { children: props.error.stack })
174298
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_jsx_runtime2.Fragment, { children: [
174299
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_ink3.Text, { children: "Something went wrong:" }),
174300
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_ink3.Text, { children: props.error.stack })
176554
174301
  ] });
176555
174302
  }
176556
174303
  __name(ErrorFallback, "ErrorFallback");
@@ -177449,7 +175196,7 @@ __name(mergeWithOverride, "mergeWithOverride");
177449
175196
  init_import_meta_url();
177450
175197
  var import_node_module4 = __toESM(require("node:module"));
177451
175198
  var import_node_os9 = __toESM(require("node:os"));
177452
- var import_toml8 = __toESM(require_toml());
175199
+ var import_toml9 = __toESM(require_toml());
177453
175200
  var import_undici26 = __toESM(require_undici());
177454
175201
 
177455
175202
  // ../../node_modules/.pnpm/yargs@17.7.2/node_modules/yargs/index.mjs
@@ -180758,7 +178505,7 @@ var yargs_default = Yargs;
180758
178505
  // src/ai/index.ts
180759
178506
  init_import_meta_url();
180760
178507
 
180761
- // src/ai/createFinetune.tsx
178508
+ // src/ai/createFinetune.ts
180762
178509
  init_import_meta_url();
180763
178510
  var import_fs8 = __toESM(require("fs"));
180764
178511
  var import_path10 = __toESM(require("path"));
@@ -180822,7 +178569,7 @@ var listFinetuneEntries = /* @__PURE__ */ __name(async (accountId) => {
180822
178569
  return await aiFinetuneList(accountId);
180823
178570
  }, "listFinetuneEntries");
180824
178571
 
180825
- // src/ai/createFinetune.tsx
178572
+ // src/ai/createFinetune.ts
180826
178573
  var requiredAssets = ["adapter_config.json", "adapter_model.safetensors"];
180827
178574
  function options(yargs) {
180828
178575
  return yargs.positional("model_name", {
@@ -180914,7 +178661,7 @@ var handler2 = withConfig(
180914
178661
  }
180915
178662
  );
180916
178663
 
180917
- // src/ai/listCatalog.tsx
178664
+ // src/ai/listCatalog.ts
180918
178665
  init_import_meta_url();
180919
178666
 
180920
178667
  // src/yargs-types.ts
@@ -180928,7 +178675,7 @@ function asJson(yargs) {
180928
178675
  }
180929
178676
  __name(asJson, "asJson");
180930
178677
 
180931
- // src/ai/listCatalog.tsx
178678
+ // src/ai/listCatalog.ts
180932
178679
  function options2(yargs) {
180933
178680
  return asJson(yargs);
180934
178681
  }
@@ -180959,7 +178706,7 @@ var handler3 = withConfig(
180959
178706
  }
180960
178707
  );
180961
178708
 
180962
- // src/ai/listFinetune.tsx
178709
+ // src/ai/listFinetune.ts
180963
178710
  init_import_meta_url();
180964
178711
  function options3(yargs) {
180965
178712
  return asJson(yargs);
@@ -184501,64 +182248,10 @@ __name(findNodeFor, "findNodeFor");
184501
182248
  // src/d1/index.ts
184502
182249
  init_import_meta_url();
184503
182250
 
184504
- // src/d1/backups.tsx
182251
+ // src/d1/backups.ts
184505
182252
  init_import_meta_url();
184506
182253
  var import_promises15 = __toESM(require("node:fs/promises"));
184507
182254
  var path44 = __toESM(require("path"));
184508
- var import_ink_table2 = __toESM(require_dist4());
184509
-
184510
- // src/utils/render.ts
184511
- init_import_meta_url();
184512
- var import_events = require("events");
184513
- var import_ink5 = __toESM(require_build2());
184514
- function renderToString(tree) {
184515
- const { output, cleanup } = render2(tree);
184516
- cleanup();
184517
- return output;
184518
- }
184519
- __name(renderToString, "renderToString");
184520
- var LASTFRAME_UNDEFINED = "value of stdout.lastframe() is undefined";
184521
- var OutputStream = class extends import_events.EventEmitter {
184522
- constructor(_originalStream) {
184523
- super();
184524
- this._originalStream = _originalStream;
184525
- }
184526
- frames = [];
184527
- _lastFrame;
184528
- get columns() {
184529
- return this._originalStream.columns;
184530
- }
184531
- get rows() {
184532
- return this._originalStream.rows;
184533
- }
184534
- write = (frame) => {
184535
- this.frames.push(frame);
184536
- this._lastFrame = frame;
184537
- };
184538
- lastFrame = () => {
184539
- return this._lastFrame;
184540
- };
184541
- };
184542
- __name(OutputStream, "OutputStream");
184543
- var render2 = /* @__PURE__ */ __name((tree) => {
184544
- const stdout2 = new OutputStream(process.stdout);
184545
- const stderr2 = new OutputStream(process.stderr);
184546
- const instance = (0, import_ink5.render)(tree, {
184547
- stdout: stdout2,
184548
- stderr: stderr2,
184549
- debug: true,
184550
- exitOnCtrlC: false,
184551
- patchConsole: false
184552
- });
184553
- return {
184554
- output: stdout2.lastFrame() ?? LASTFRAME_UNDEFINED,
184555
- stdout: stdout2,
184556
- stderr: stderr2,
184557
- cleanup: instance.cleanup,
184558
- unmount: instance.unmount,
184559
- frames: stdout2.frames
184560
- };
184561
- }, "render");
184562
182255
 
184563
182256
  // src/d1/formatTimeAgo.ts
184564
182257
  init_import_meta_url();
@@ -187378,10 +185071,8 @@ var DEFAULT_MIGRATION_PATH = "./migrations";
187378
185071
  var DEFAULT_MIGRATION_TABLE = "d1_migrations";
187379
185072
  var LOCATION_CHOICES = ["weur", "eeur", "apac", "oc", "wnam", "enam"];
187380
185073
 
187381
- // src/d1/list.tsx
185074
+ // src/d1/list.ts
187382
185075
  init_import_meta_url();
187383
- var import_ink_table = __toESM(require_dist4());
187384
- var import_jsx_runtime4 = __toESM(require_jsx_runtime());
187385
185076
  function Options3(d1ListYargs) {
187386
185077
  return d1ListYargs.option("json", {
187387
185078
  describe: "return output as clean JSON",
@@ -187398,7 +185089,13 @@ var Handler3 = withConfig(
187398
185089
  logger.log(JSON.stringify(dbs, null, 2));
187399
185090
  } else {
187400
185091
  await printWranglerBanner();
187401
- logger.log(renderToString(/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_ink_table.default, { data: dbs })));
185092
+ logger.table(
185093
+ dbs.map(
185094
+ (db) => Object.fromEntries(
185095
+ Object.entries(db).map(([k2, v2]) => [k2, String(v2 ?? "")])
185096
+ )
185097
+ )
185098
+ );
187402
185099
  }
187403
185100
  }
187404
185101
  );
@@ -187465,8 +185162,7 @@ var getDatabaseInfoFromId = /* @__PURE__ */ __name(async (accountId, databaseId)
187465
185162
  );
187466
185163
  }, "getDatabaseInfoFromId");
187467
185164
 
187468
- // src/d1/backups.tsx
187469
- var import_jsx_runtime5 = __toESM(require_jsx_runtime());
185165
+ // src/d1/backups.ts
187470
185166
  function ListOptions(yargs) {
187471
185167
  return Name(yargs);
187472
185168
  }
@@ -187480,16 +185176,13 @@ var ListHandler = withConfig(
187480
185176
  name2
187481
185177
  );
187482
185178
  const backups = await listBackups(accountId, db.uuid);
187483
- logger.log(
187484
- renderToString(
187485
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
187486
- import_ink_table2.default,
187487
- {
187488
- data: backups,
187489
- columns: ["created_at", "id", "num_tables", "size"]
187490
- }
187491
- )
187492
- )
185179
+ logger.table(
185180
+ backups.map((b2) => ({
185181
+ created_at: b2.created_at,
185182
+ id: b2.id,
185183
+ num_tables: String(b2.num_tables),
185184
+ size: b2.size ?? ""
185185
+ }))
187493
185186
  );
187494
185187
  }
187495
185188
  );
@@ -187527,16 +185220,13 @@ var CreateHandler = withConfig(
187527
185220
  name2
187528
185221
  );
187529
185222
  const backup = await createBackup(accountId, db.uuid);
187530
- logger.log(
187531
- renderToString(
187532
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
187533
- import_ink_table2.default,
187534
- {
187535
- data: [backup],
187536
- columns: ["created_at", "id", "num_tables", "size", "state"]
187537
- }
187538
- )
187539
- )
185223
+ logger.table(
185224
+ [backup].map((b2) => ({
185225
+ created_at: b2.created_at,
185226
+ id: b2.id,
185227
+ num_tables: String(b2.num_tables),
185228
+ size: b2.size ?? ""
185229
+ }))
187540
185230
  );
187541
185231
  }
187542
185232
  );
@@ -187623,10 +185313,9 @@ var getBackupResponse = /* @__PURE__ */ __name(async (accountId, uuid, backupId)
187623
185313
  );
187624
185314
  }, "getBackupResponse");
187625
185315
 
187626
- // src/d1/create.tsx
185316
+ // src/d1/create.ts
187627
185317
  init_import_meta_url();
187628
- var import_ink6 = __toESM(require_build2());
187629
- var import_jsx_runtime6 = __toESM(require_jsx_runtime());
185318
+ var import_toml4 = __toESM(require_toml());
187630
185319
  function Options4(yargs) {
187631
185320
  return yargs.positional("name", {
187632
185321
  describe: "The name of the new DB",
@@ -187670,30 +185359,15 @@ var Handler4 = withConfig(
187670
185359
  throw e4;
187671
185360
  }
187672
185361
  logger.log(
187673
- renderToString(
187674
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_ink6.Box, { flexDirection: "column", children: [
187675
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_ink6.Text, { children: [
187676
- "\u2705 Successfully created DB '",
187677
- db.name,
187678
- "'",
187679
- db.created_in_region ? ` in region ${db.created_in_region}` : location ? ` using primary location hint ${location}` : ``
187680
- ] }),
187681
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_ink6.Text, { children: "Created your new D1 database." }),
187682
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_ink6.Text, { children: "\xA0" }),
187683
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_ink6.Text, { children: "[[d1_databases]]" }),
187684
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(import_ink6.Text, { children: 'binding = "DB" # i.e. available in your Worker on env.DB' }),
187685
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_ink6.Text, { children: [
187686
- 'database_name = "',
187687
- db.name,
187688
- '"'
187689
- ] }),
187690
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(import_ink6.Text, { children: [
187691
- 'database_id = "',
187692
- db.uuid,
187693
- '"'
187694
- ] })
187695
- ] })
187696
- )
185362
+ `\u2705 Successfully created DB '${db.name}'${db.created_in_region ? ` in region ${db.created_in_region}` : location ? ` using primary location hint ${location}` : ``}`
185363
+ );
185364
+ logger.log("Created your new D1 database.\n");
185365
+ logger.log(
185366
+ import_toml4.default.stringify({
185367
+ d1_databases: [
185368
+ { binding: "DB", database_name: db.name, database_id: db.uuid }
185369
+ ]
185370
+ })
187697
185371
  );
187698
185372
  }
187699
185373
  );
@@ -187734,13 +185408,11 @@ var Handler5 = withConfig(
187734
185408
  }
187735
185409
  );
187736
185410
 
187737
- // src/d1/execute.tsx
185411
+ // src/d1/execute.ts
187738
185412
  init_import_meta_url();
187739
185413
  var import_fs9 = require("fs");
187740
185414
  var import_node_assert20 = __toESM(require("node:assert"));
187741
185415
  var import_node_path40 = __toESM(require("node:path"));
187742
- var import_ink7 = __toESM(require_build2());
187743
- var import_ink_table3 = __toESM(require_dist4());
187744
185416
  var import_md5_file = __toESM(require_md5_file());
187745
185417
  var import_miniflare14 = require("miniflare");
187746
185418
  var import_undici14 = __toESM(require_undici());
@@ -187887,8 +185559,7 @@ function isCompoundStatementEnd(str) {
187887
185559
  }
187888
185560
  __name(isCompoundStatementEnd, "isCompoundStatementEnd");
187889
185561
 
187890
- // src/d1/execute.tsx
187891
- var import_jsx_runtime7 = __toESM(require_jsx_runtime());
185562
+ // src/d1/execute.ts
187892
185563
  function Options6(yargs) {
187893
185564
  return Database(yargs).option("yes", {
187894
185565
  describe: 'Answer "yes" to any prompts',
@@ -187968,22 +185639,24 @@ var Handler6 = /* @__PURE__ */ __name(async (args) => {
187968
185639
  return;
187969
185640
  }
187970
185641
  if (isInteractive3 && !json) {
187971
- logger.log(
187972
- renderToString(
187973
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_ink7.Static, { items: response, children: (result) => {
187974
- if (!Array.isArray(result)) {
187975
- const { results, query } = result;
187976
- if (Array.isArray(results) && results.length > 0) {
187977
- const shortQuery = shorten(query, 48);
187978
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(import_jsx_runtime7.Fragment, { children: [
187979
- shortQuery ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_ink7.Text, { dimColor: true, children: shortQuery }) : null,
187980
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_ink_table3.default, { data: results })
187981
- ] });
187982
- }
187983
- }
187984
- } })
187985
- )
187986
- );
185642
+ for (const result of response) {
185643
+ if (!Array.isArray(result)) {
185644
+ const { results, query } = result;
185645
+ if (Array.isArray(results) && results.length > 0) {
185646
+ const shortQuery = shorten(query, 48);
185647
+ if (shortQuery) {
185648
+ logger.log(source_default.dim(shortQuery));
185649
+ }
185650
+ logger.table(
185651
+ results.map(
185652
+ (r4) => Object.fromEntries(
185653
+ Object.entries(r4).map(([k2, v2]) => [k2, String(v2)])
185654
+ )
185655
+ )
185656
+ );
185657
+ }
185658
+ }
185659
+ }
187987
185660
  } else {
187988
185661
  logger.loggerLevel = existingLogLevel;
187989
185662
  logger.log(JSON.stringify(response, null, 2));
@@ -188512,10 +186185,8 @@ async function pollExport(s, accountId, db, dumpOptions, currentBookmark, num_pa
188512
186185
  }
188513
186186
  __name(pollExport, "pollExport");
188514
186187
 
188515
- // src/d1/info.tsx
186188
+ // src/d1/info.ts
188516
186189
  init_import_meta_url();
188517
- var import_ink_table4 = __toESM(require_dist4());
188518
- var import_jsx_runtime8 = __toESM(require_jsx_runtime());
188519
186190
  function Options8(d1ListYargs) {
188520
186191
  return d1ListYargs.positional("name", {
188521
186192
  describe: "The name of the DB",
@@ -188621,7 +186292,7 @@ var Handler8 = withConfig(
188621
186292
  } else if (k2 === "read_queries_24h" || k2 === "write_queries_24h" || k2 === "rows_read_24h" || k2 === "rows_written_24h") {
188622
186293
  value = v2.toLocaleString();
188623
186294
  } else {
188624
- value = v2;
186295
+ value = String(v2);
188625
186296
  }
188626
186297
  return {
188627
186298
  [db.binding || ""]: k2,
@@ -188629,7 +186300,7 @@ var Handler8 = withConfig(
188629
186300
  };
188630
186301
  });
188631
186302
  await printWranglerBanner();
188632
- logger.log(renderToString(/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_ink_table4.default, { data })));
186303
+ logger.table(data);
188633
186304
  }
188634
186305
  }
188635
186306
  );
@@ -188811,13 +186482,11 @@ var Handler9 = withConfig(
188811
186482
  // src/d1/migrations/index.ts
188812
186483
  init_import_meta_url();
188813
186484
 
188814
- // src/d1/migrations/apply.tsx
186485
+ // src/d1/migrations/apply.ts
188815
186486
  init_import_meta_url();
188816
186487
  var import_node_assert21 = __toESM(require("node:assert"));
188817
186488
  var import_node_fs22 = __toESM(require("node:fs"));
188818
186489
  var import_path12 = __toESM(require("path"));
188819
- var import_ink8 = __toESM(require_build2());
188820
- var import_ink_table5 = __toESM(require_dist4());
188821
186490
 
188822
186491
  // src/d1/migrations/helpers.ts
188823
186492
  init_import_meta_url();
@@ -188971,8 +186640,7 @@ function MigrationOptions(yargs) {
188971
186640
  }
188972
186641
  __name(MigrationOptions, "MigrationOptions");
188973
186642
 
188974
- // src/d1/migrations/apply.tsx
188975
- var import_jsx_runtime9 = __toESM(require_jsx_runtime());
186643
+ // src/d1/migrations/apply.ts
188976
186644
  function ApplyOptions(yargs) {
188977
186645
  return MigrationOptions(yargs).option("batch-size", {
188978
186646
  describe: "Number of queries to send in a single batch",
@@ -189041,17 +186709,11 @@ var ApplyHandler = withConfig(
189041
186709
  return 0;
189042
186710
  });
189043
186711
  if (unappliedMigrations.length === 0) {
189044
- logger.log(renderToString(/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_ink8.Text, { children: "\u2705 No migrations to apply!" })));
186712
+ logger.log("\u2705 No migrations to apply!");
189045
186713
  return;
189046
186714
  }
189047
- logger.log(
189048
- renderToString(
189049
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_ink8.Box, { flexDirection: "column", children: [
189050
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_ink8.Text, { children: "Migrations to be applied:" }),
189051
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_ink_table5.default, { data: unappliedMigrations, columns: ["name"] })
189052
- ] })
189053
- )
189054
- );
186715
+ logger.log("Migrations to be applied:");
186716
+ logger.table(unappliedMigrations.map((m2) => ({ name: m2.name })));
189055
186717
  const ok = await confirm(
189056
186718
  `About to apply ${unappliedMigrations.length} migration(s)
189057
186719
  Your database may not be available to serve requests during the migration, continue?`
@@ -189067,7 +186729,7 @@ Your database may not be available to serve requests during the migration, conti
189067
186729
  const accountId = await requireAuth(config);
189068
186730
  const dbInfo = await getDatabaseInfoFromId(accountId, databaseInfo?.uuid);
189069
186731
  if (dbInfo.version === "alpha") {
189070
- logger.log(renderToString(/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_ink8.Text, { children: "\u{1F552} Creating backup..." })));
186732
+ logger.log("\u{1F552} Creating backup...");
189071
186733
  await createBackup(accountId, databaseInfo.uuid);
189072
186734
  }
189073
186735
  }
@@ -189120,22 +186782,14 @@ Your database may not be available to serve requests during the migration, conti
189120
186782
  ];
189121
186783
  }
189122
186784
  migration.status = success2 ? "\u2705" : "\u274C";
189123
- logger.log(
189124
- renderToString(
189125
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_ink8.Box, { flexDirection: "column", children: [
189126
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_ink_table5.default, { data: unappliedMigrations, columns: ["name", "status"] }),
189127
- errorNotes.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_ink8.Box, { flexDirection: "column", children: [
189128
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_ink8.Text, { children: "\xA0" }),
189129
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_ink8.Text, { children: [
189130
- "\u274C Migration ",
189131
- migration.name,
189132
- " ",
189133
- errorNotes.length > 0 ? "failed with the following errors:" : ""
189134
- ] })
189135
- ] })
189136
- ] })
189137
- )
186785
+ logger.table(
186786
+ unappliedMigrations.map((m2) => ({ name: m2.name, status: m2.status }))
189138
186787
  );
186788
+ if (errorNotes.length > 0) {
186789
+ logger.error(
186790
+ `Migration ${migration.name} failed with the following errors:`
186791
+ );
186792
+ }
189139
186793
  if (errorNotes.length > 0) {
189140
186794
  throw new UserError(
189141
186795
  errorNotes.map((err) => {
@@ -189147,12 +186801,10 @@ Your database may not be available to serve requests during the migration, conti
189147
186801
  }
189148
186802
  );
189149
186803
 
189150
- // src/d1/migrations/create.tsx
186804
+ // src/d1/migrations/create.ts
189151
186805
  init_import_meta_url();
189152
186806
  var import_node_fs23 = __toESM(require("node:fs"));
189153
186807
  var import_path13 = __toESM(require("path"));
189154
- var import_ink9 = __toESM(require_build2());
189155
- var import_jsx_runtime10 = __toESM(require_jsx_runtime());
189156
186808
  function CreateOptions2(yargs) {
189157
186809
  return Database(yargs).positional("message", {
189158
186810
  describe: "The Migration message",
@@ -189186,24 +186838,10 @@ var CreateHandler2 = withConfig(
189186
186838
  `-- Migration number: ${nextMigrationNumber} ${(/* @__PURE__ */ new Date()).toISOString()}
189187
186839
  `
189188
186840
  );
189189
- logger.log(
189190
- renderToString(
189191
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(import_ink9.Box, { flexDirection: "column", children: [
189192
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(import_ink9.Text, { children: [
189193
- "\u2705 Successfully created Migration '",
189194
- newMigrationName,
189195
- "'!"
189196
- ] }),
189197
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(import_ink9.Text, { children: "\xA0" }),
189198
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(import_ink9.Text, { children: "The migration is available for editing here" }),
189199
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(import_ink9.Text, { children: [
189200
- migrationsPath,
189201
- "/",
189202
- newMigrationName
189203
- ] })
189204
- ] })
189205
- )
189206
- );
186841
+ logger.log(`\u2705 Successfully created Migration '${newMigrationName}'!
186842
+ `);
186843
+ logger.log(`The migration is available for editing here`);
186844
+ logger.log(`${migrationsPath}/{newMigrationName}`);
189207
186845
  }
189208
186846
  );
189209
186847
  function pad(num, size) {
@@ -189215,12 +186853,9 @@ function pad(num, size) {
189215
186853
  }
189216
186854
  __name(pad, "pad");
189217
186855
 
189218
- // src/d1/migrations/list.tsx
186856
+ // src/d1/migrations/list.ts
189219
186857
  init_import_meta_url();
189220
186858
  var import_path14 = __toESM(require("path"));
189221
- var import_ink10 = __toESM(require_build2());
189222
- var import_ink_table6 = __toESM(require_dist4());
189223
- var import_jsx_runtime11 = __toESM(require_jsx_runtime());
189224
186859
  function ListOptions2(yargs) {
189225
186860
  return MigrationOptions(yargs);
189226
186861
  }
@@ -189277,17 +186912,11 @@ var ListHandler2 = withConfig(
189277
186912
  };
189278
186913
  });
189279
186914
  if (unappliedMigrations.length === 0) {
189280
- logger.log(renderToString(/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(import_ink10.Text, { children: "\u2705 No migrations to apply!" })));
186915
+ logger.log("\u2705 No migrations to apply!");
189281
186916
  return;
189282
186917
  }
189283
- logger.log(
189284
- renderToString(
189285
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(import_ink10.Box, { flexDirection: "column", children: [
189286
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(import_ink10.Text, { children: "Migrations to be applied:" }),
189287
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(import_ink_table6.default, { data: unappliedMigrations, columns: ["Name"] })
189288
- ] })
189289
- )
189290
- );
186918
+ logger.log("Migrations to be applied:");
186919
+ logger.table(unappliedMigrations.map((m2) => ({ Name: m2.Name })));
189291
186920
  }
189292
186921
  );
189293
186922
 
@@ -189987,6 +187616,9 @@ To learn more about Workers with assets, visit our documentation at https://deve
189987
187616
  "Cannot use legacy assets and Workers Sites in the same Worker."
189988
187617
  );
189989
187618
  }
187619
+ if (config.workflows?.length) {
187620
+ logger.warnOnce("Workflows is currently in open beta.");
187621
+ }
189990
187622
  validateAssetsArgsAndConfig(args, config);
189991
187623
  const assetsOptions = processAssetsArg(args, config);
189992
187624
  if (args.latest) {
@@ -190080,7 +187712,7 @@ __name(deployHandler, "deployHandler");
190080
187712
  // src/deployments.ts
190081
187713
  init_import_meta_url();
190082
187714
  var import_url3 = require("url");
190083
- var import_toml5 = __toESM(require_toml());
187715
+ var import_toml6 = __toESM(require_toml());
190084
187716
  var import_undici16 = __toESM(require_undici());
190085
187717
 
190086
187718
  // src/init.ts
@@ -190088,7 +187720,7 @@ init_import_meta_url();
190088
187720
  var fs20 = __toESM(require("node:fs"));
190089
187721
  var import_promises17 = require("node:fs/promises");
190090
187722
  var import_node_path45 = __toESM(require("node:path"));
190091
- var import_toml4 = __toESM(require_toml());
187723
+ var import_toml5 = __toESM(require_toml());
190092
187724
  init_execa();
190093
187725
 
190094
187726
  // src/git-client.ts
@@ -190561,7 +188193,7 @@ The \`init\` command will be removed in a future version.`
190561
188193
  try {
190562
188194
  await (0, import_promises17.writeFile)(
190563
188195
  wranglerTomlDestination,
190564
- import_toml4.default.stringify({
188196
+ import_toml5.default.stringify({
190565
188197
  name: workerName,
190566
188198
  compatibility_date: compatibilityDate
190567
188199
  }) + "\n"
@@ -190718,7 +188350,7 @@ ${err.message ?? err}`
190718
188350
  compatibility_date: parsedWranglerToml.compatibility_date,
190719
188351
  ...extraToml
190720
188352
  };
190721
- fs20.writeFileSync(wranglerTomlDestination, import_toml4.default.stringify(newToml));
188353
+ fs20.writeFileSync(wranglerTomlDestination, import_toml5.default.stringify(newToml));
190722
188354
  }
190723
188355
  const isNamedWorker = isCreatingWranglerToml && import_node_path45.default.dirname(packagePath) !== process.cwd();
190724
188356
  const isAddingTestScripts = isAddingTests && !packageJsonContent.scripts?.test;
@@ -191593,7 +189225,7 @@ Author ID: ${deploymentDetails.metadata.author_id}
191593
189225
  Usage Model: ${deploymentDetails.resources.script_runtime.usage_model}
191594
189226
  Handlers: ${deploymentDetails.resources.script.handlers}${compatDateStr}${compatFlagsStr}
191595
189227
  --------------------------bindings--------------------------
191596
- ${bindings.length > 0 ? import_toml5.default.stringify(await mapBindings(accountId, bindings)) : `None`}
189228
+ ${bindings.length > 0 ? import_toml6.default.stringify(await mapBindings(accountId, bindings)) : `None`}
191597
189229
  `;
191598
189230
  logger.log(version4);
191599
189231
  }
@@ -193497,6 +191129,11 @@ defineCommand({
193497
191129
  describe: "Params for the workflow instance, encoded as a JSON string",
193498
191130
  type: "string",
193499
191131
  default: ""
191132
+ },
191133
+ id: {
191134
+ describe: "Custom instance ID, if not provided it will default to a random UUIDv4",
191135
+ type: "string",
191136
+ default: void 0
193500
191137
  }
193501
191138
  },
193502
191139
  positionalArgs: ["name", "params"],
@@ -193516,7 +191153,11 @@ defineCommand({
193516
191153
  `/accounts/${accountId}/workflows/${args.name}/instances`,
193517
191154
  {
193518
191155
  method: "POST",
193519
- body: args.params.length != 0 ? args.params : void 0
191156
+ headers: { "Content-Type": "application/json" },
191157
+ body: JSON.stringify({
191158
+ instance_id: args.id,
191159
+ params: args.params.length != 0 ? JSON.parse(args.params) : void 0
191160
+ })
193520
191161
  }
193521
191162
  );
193522
191163
  logger3.info(
@@ -194638,9 +192279,13 @@ defineCommand({
194638
192279
  id = instances[0].id;
194639
192280
  }
194640
192281
  await fetchResult(
194641
- `/accounts/${accountId}/workflows/${args.name}/instances/${id}`,
192282
+ `/accounts/${accountId}/workflows/${args.name}/instances/${id}/status`,
194642
192283
  {
194643
- method: "DELETE"
192284
+ method: "PATCH",
192285
+ headers: {
192286
+ "Content-Type": "application/json"
192287
+ },
192288
+ body: JSON.stringify({ status: "terminate" })
194644
192289
  }
194645
192290
  );
194646
192291
  logger.info(
@@ -196392,13 +194037,11 @@ var Handler11 = /* @__PURE__ */ __name(async (args) => {
196392
194037
  logger.log(message);
196393
194038
  }, "Handler");
196394
194039
 
196395
- // src/pages/deploy.tsx
194040
+ // src/pages/deploy.ts
196396
194041
  init_import_meta_url();
196397
194042
  var import_node_child_process5 = require("node:child_process");
196398
- var import_ink12 = __toESM(require_build2());
196399
- var import_ink_select_input3 = __toESM(require_build4());
196400
194043
 
196401
- // src/api/pages/deploy.tsx
194044
+ // src/api/pages/deploy.ts
196402
194045
  init_import_meta_url();
196403
194046
  var import_node_crypto8 = require("node:crypto");
196404
194047
  var import_node_fs31 = require("node:fs");
@@ -196691,10 +194334,9 @@ async function deploy2({
196691
194334
  }
196692
194335
  __name(deploy2, "deploy");
196693
194336
 
196694
- // src/pages/projects.tsx
194337
+ // src/pages/projects.ts
196695
194338
  init_import_meta_url();
196696
194339
  var import_node_child_process4 = require("node:child_process");
196697
- var import_ink_table7 = __toESM(require_dist4());
196698
194340
 
196699
194341
  // ../../node_modules/.pnpm/timeago.js@4.0.2/node_modules/timeago.js/esm/index.js
196700
194342
  init_import_meta_url();
@@ -196792,8 +194434,7 @@ init_import_meta_url();
196792
194434
  register("en_US", en_US_default);
196793
194435
  register("zh_CN", zh_CN_default);
196794
194436
 
196795
- // src/pages/projects.tsx
196796
- var import_jsx_runtime12 = __toESM(require_jsx_runtime());
194437
+ // src/pages/projects.ts
196797
194438
  function ListOptions3(yargs) {
196798
194439
  return yargs;
196799
194440
  }
@@ -196813,7 +194454,7 @@ async function ListHandler3() {
196813
194454
  saveToConfigCache(PAGES_CONFIG_CACHE_FILENAME, {
196814
194455
  account_id: accountId
196815
194456
  });
196816
- logger.log(renderToString(/* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_ink_table7.default, { data })));
194457
+ logger.table(data);
196817
194458
  await sendMetricsEvent("list pages projects");
196818
194459
  }
196819
194460
  __name(ListHandler3, "ListHandler");
@@ -196968,41 +194609,22 @@ async function DeleteHandler(args) {
196968
194609
  }
196969
194610
  __name(DeleteHandler, "DeleteHandler");
196970
194611
 
196971
- // src/pages/prompt-select-project.tsx
194612
+ // src/pages/prompt-select-project.ts
196972
194613
  init_import_meta_url();
196973
- var import_ink11 = __toESM(require_build2());
196974
- var import_ink_select_input2 = __toESM(require_build4());
196975
- var import_jsx_runtime13 = __toESM(require_jsx_runtime());
196976
194614
  async function promptSelectProject({
196977
194615
  accountId
196978
194616
  }) {
196979
194617
  const projects = await listProjects({ accountId });
196980
- return new Promise((resolve22) => {
196981
- const { unmount } = (0, import_ink11.render)(
196982
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(import_jsx_runtime13.Fragment, { children: [
196983
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(import_ink11.Text, { children: "Select a project:" }),
196984
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
196985
- import_ink_select_input2.default,
196986
- {
196987
- items: projects.map((project) => ({
196988
- key: project.name,
196989
- label: project.name,
196990
- value: project
196991
- })),
196992
- onSelect: async (selected) => {
196993
- resolve22(selected.value.name);
196994
- unmount();
196995
- }
196996
- }
196997
- )
196998
- ] })
196999
- );
194618
+ return select("Select a project:", {
194619
+ choices: projects.map((project) => ({
194620
+ title: project.name,
194621
+ value: project.name
194622
+ }))
197000
194623
  });
197001
194624
  }
197002
194625
  __name(promptSelectProject, "promptSelectProject");
197003
194626
 
197004
- // src/pages/deploy.tsx
197005
- var import_jsx_runtime14 = __toESM(require_jsx_runtime());
194627
+ // src/pages/deploy.ts
197006
194628
  function Options12(yargs) {
197007
194629
  return yargs.positional("directory", {
197008
194630
  type: "string",
@@ -197325,22 +194947,8 @@ ${failureMessage}`,
197325
194947
  await sendMetricsEvent("create pages deployment");
197326
194948
  }, "Handler");
197327
194949
  function promptSelectExistingOrNewProject(message, items) {
197328
- return new Promise((resolve22) => {
197329
- const { unmount } = (0, import_ink12.render)(
197330
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(import_jsx_runtime14.Fragment, { children: [
197331
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(import_ink12.Text, { children: message }),
197332
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
197333
- import_ink_select_input3.default,
197334
- {
197335
- items,
197336
- onSelect: async (selected) => {
197337
- resolve22(selected.value);
197338
- unmount();
197339
- }
197340
- }
197341
- )
197342
- ] })
197343
- );
194950
+ return select(message, {
194951
+ choices: items.map((i) => ({ title: i.label, value: i.value }))
197344
194952
  });
197345
194953
  }
197346
194954
  __name(promptSelectExistingOrNewProject, "promptSelectExistingOrNewProject");
@@ -197352,7 +194960,7 @@ var import_signal_exit8 = __toESM(require_signal_exit());
197352
194960
 
197353
194961
  // src/tail/createTail.ts
197354
194962
  init_import_meta_url();
197355
- var import_https_proxy_agent = __toESM(require_dist6());
194963
+ var import_https_proxy_agent = __toESM(require_dist5());
197356
194964
 
197357
194965
  // ../../node_modules/.pnpm/ws@8.17.1/node_modules/ws/wrapper.mjs
197358
194966
  init_import_meta_url();
@@ -197874,10 +195482,8 @@ async function Handler13({
197874
195482
  }
197875
195483
  __name(Handler13, "Handler");
197876
195484
 
197877
- // src/pages/deployments.tsx
195485
+ // src/pages/deployments.ts
197878
195486
  init_import_meta_url();
197879
- var import_ink_table8 = __toESM(require_dist4());
197880
- var import_jsx_runtime15 = __toESM(require_jsx_runtime());
197881
195487
  function ListOptions4(yargs) {
197882
195488
  return yargs.options({
197883
195489
  "project-name": {
@@ -197923,7 +195529,7 @@ async function ListHandler4({ projectName }) {
197923
195529
  saveToConfigCache(PAGES_CONFIG_CACHE_FILENAME, {
197924
195530
  account_id: accountId
197925
195531
  });
197926
- logger.log(renderToString(/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_ink_table8.default, { data })));
195532
+ logger.table(data);
197927
195533
  await sendMetricsEvent("list pages deployments");
197928
195534
  }
197929
195535
  __name(ListHandler4, "ListHandler");
@@ -198814,7 +196420,7 @@ __name(getBindingsFromArgs, "getBindingsFromArgs");
198814
196420
  init_import_meta_url();
198815
196421
  var import_fs10 = require("fs");
198816
196422
  var import_promises25 = require("node:fs/promises");
198817
- var import_toml6 = __toESM(require_toml());
196423
+ var import_toml7 = __toESM(require_toml());
198818
196424
  var import_miniflare16 = require("miniflare");
198819
196425
  async function toEnvironment(deploymentConfig, accountId) {
198820
196426
  const configObj = {};
@@ -198924,7 +196530,7 @@ async function toEnvironment(deploymentConfig, accountId) {
198924
196530
  }
198925
196531
  __name(toEnvironment, "toEnvironment");
198926
196532
  async function writeWranglerToml(toml) {
198927
- let tomlString = import_toml6.default.stringify(toml);
196533
+ let tomlString = import_toml7.default.stringify(toml);
198928
196534
  tomlString = tomlString.split("\n").map((line) => line.trimStart()).join("\n");
198929
196535
  await (0, import_promises25.writeFile)(
198930
196536
  "wrangler.toml",
@@ -201309,15 +198915,17 @@ async function listEventNotificationConfig(apiCredentials, accountId, bucketName
201309
198915
  return newResult;
201310
198916
  }
201311
198917
  __name(listEventNotificationConfig, "listEventNotificationConfig");
201312
- async function putEventNotificationConfig(config, apiCredentials, accountId, bucketName, jurisdiction, queueName, eventTypes, prefix, suffix) {
198918
+ async function putEventNotificationConfig(config, apiCredentials, accountId, bucketName, jurisdiction, queueName, eventTypes, prefix, suffix, description) {
201313
198919
  const queue = await getQueue(config, queueName);
201314
198920
  const headers = eventNotificationHeaders(apiCredentials, jurisdiction);
201315
198921
  let actions = [];
201316
198922
  for (const et of eventTypes) {
201317
198923
  actions = actions.concat(actionsForEventCategories[et]);
201318
198924
  }
201319
- const body = {
198925
+ const body = description === void 0 ? {
201320
198926
  rules: [{ prefix, suffix, actions }]
198927
+ } : {
198928
+ rules: [{ prefix, suffix, actions, description }]
201321
198929
  };
201322
198930
  const ruleFor = eventTypes.map(
201323
198931
  (et) => et === "object-create" ? "creation" : "deletion"
@@ -201426,6 +199034,9 @@ function CreateOptions4(yargs) {
201426
199034
  alias: "J",
201427
199035
  requiresArg: true,
201428
199036
  type: "string"
199037
+ }).option("description", {
199038
+ describe: "A description that can be used to identify the event notification rule after creation",
199039
+ type: "string"
201429
199040
  });
201430
199041
  }
201431
199042
  __name(CreateOptions4, "CreateOptions");
@@ -201440,7 +199051,8 @@ async function CreateHandler4(args) {
201440
199051
  eventTypes,
201441
199052
  prefix = "",
201442
199053
  suffix = "",
201443
- jurisdiction = ""
199054
+ jurisdiction = "",
199055
+ description
201444
199056
  } = args;
201445
199057
  await putEventNotificationConfig(
201446
199058
  config,
@@ -201451,7 +199063,8 @@ async function CreateHandler4(args) {
201451
199063
  queue,
201452
199064
  eventTypes,
201453
199065
  prefix,
201454
- suffix
199066
+ suffix,
199067
+ description
201455
199068
  );
201456
199069
  logger.log("Event notification rule created successfully!");
201457
199070
  }
@@ -209573,7 +207186,7 @@ var https2 = __toESM(require("https"));
209573
207186
  var import_stream4 = require("stream");
209574
207187
  var import_url6 = require("url");
209575
207188
  var import_zlib = require("zlib");
209576
- var import_https_proxy_agent2 = __toESM(require_dist7());
207189
+ var import_https_proxy_agent2 = __toESM(require_dist6());
209577
207190
  var GZIP_THRESHOLD = 1024 * 32;
209578
207191
  function streamFromBody(body) {
209579
207192
  return new import_stream4.Readable({
@@ -212061,7 +209674,7 @@ async function triggersDeployHandler(args) {
212061
209674
  routes: args.routes,
212062
209675
  legacyEnv: isLegacyEnv(config),
212063
209676
  dryRun: args.dryRun,
212064
- experimentalVersions: args.experimentalJsonConfig,
209677
+ experimentalVersions: args.experimentalVersions,
212065
209678
  assetsOptions
212066
209679
  });
212067
209680
  }
@@ -212647,9 +210260,9 @@ async function* getBatchFromFile(rl, batchSize = VECTORIZE_MAX_BATCH_SIZE) {
212647
210260
  }
212648
210261
  __name(getBatchFromFile, "getBatchFromFile");
212649
210262
 
212650
- // src/vectorize/create.tsx
210263
+ // src/vectorize/create.ts
212651
210264
  init_import_meta_url();
212652
- var import_toml7 = __toESM(require_toml());
210265
+ var import_toml8 = __toESM(require_toml());
212653
210266
 
212654
210267
  // src/vectorize/client.ts
212655
210268
  init_import_meta_url();
@@ -212829,7 +210442,7 @@ async function deleteMetadataIndex(config, indexName, payload) {
212829
210442
  }
212830
210443
  __name(deleteMetadataIndex, "deleteMetadataIndex");
212831
210444
 
212832
- // src/vectorize/create.tsx
210445
+ // src/vectorize/create.ts
212833
210446
  function options16(yargs) {
212834
210447
  return yargs.positional("name", {
212835
210448
  type: "string",
@@ -212918,7 +210531,7 @@ async function handler17(args) {
212918
210531
  `
212919
210532
  );
212920
210533
  logger.log(
212921
- (0, import_toml7.stringify)({
210534
+ (0, import_toml8.stringify)({
212922
210535
  vectorize: [
212923
210536
  {
212924
210537
  binding: bindingName,
@@ -214438,7 +212051,8 @@ See https://developers.cloudflare.com/workers/platform/compatibility-dates for m
214438
212051
  accountId,
214439
212052
  config,
214440
212053
  legacyEnv: props.legacyEnv,
214441
- env: props.env
212054
+ env: props.env,
212055
+ dispatchNamespace: void 0
214442
212056
  }) : void 0;
214443
212057
  const assetsJwt = props.assetsOptions && !props.dryRun ? await syncAssets(accountId, scriptName, props.assetsOptions.directory) : void 0;
214444
212058
  const bindings = {
@@ -214972,6 +212586,9 @@ async function versionsUploadHandler(args) {
214972
212586
  "Legacy assets does not support uploading versions through `wrangler versions upload`. You must use `wrangler deploy` instead."
214973
212587
  );
214974
212588
  }
212589
+ if (config.workflows?.length) {
212590
+ logger.warnOnce("Workflows is currently in open beta.");
212591
+ }
214975
212592
  validateAssetsArgsAndConfig(
214976
212593
  {
214977
212594
  // given that legacyAssets and sites are not supported by
@@ -215587,7 +213204,7 @@ function getRules(config) {
215587
213204
  logger.warn(
215588
213205
  `Deprecation: The \`build.upload.rules\` config field is no longer used, the rules should be specified via the \`rules\` config field. Delete the \`build.upload\` field from the configuration file, and add this:
215589
213206
 
215590
- ${import_toml8.default.stringify({ rules: config.build.upload.rules })}`
213207
+ ${import_toml9.default.stringify({ rules: config.build.upload.rules })}`
215591
213208
  );
215592
213209
  }
215593
213210
  return rules;
@@ -216183,7 +213800,7 @@ async function logPossibleBugMessage() {
216183
213800
  __name(logPossibleBugMessage, "logPossibleBugMessage");
216184
213801
 
216185
213802
  // src/dev.tsx
216186
- var import_jsx_runtime16 = __toESM(require_jsx_runtime());
213803
+ var import_jsx_runtime3 = __toESM(require_jsx_runtime());
216187
213804
  function devOptions(yargs) {
216188
213805
  return yargs.positional("script", {
216189
213806
  describe: "The path to an entry point for your worker",
@@ -216652,11 +214269,14 @@ use --persist-to=./wrangler-local-state to keep using the old path.`
216652
214269
  },
216653
214270
  dev: {
216654
214271
  auth: async (config) => {
214272
+ const hotkeysDisplayed = !!unregisterHotKeys;
216655
214273
  let accountId = args.accountId;
216656
214274
  if (!accountId) {
216657
214275
  unregisterHotKeys?.();
216658
214276
  accountId = await requireAuth(config);
216659
- unregisterHotKeys = registerDevHotKeys(devEnv, args);
214277
+ if (hotkeysDisplayed) {
214278
+ unregisterHotKeys = registerDevHotKeys(devEnv, args);
214279
+ }
216660
214280
  }
216661
214281
  return {
216662
214282
  accountId,
@@ -216818,7 +214438,7 @@ use --persist-to=./wrangler-local-state to keep using the old path.`
216818
214438
  args,
216819
214439
  configParam
216820
214440
  );
216821
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
214441
+ return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
216822
214442
  dev_default,
216823
214443
  {
216824
214444
  name: getScriptName(
@@ -216886,7 +214506,7 @@ use --persist-to=./wrangler-local-state to keep using the old path.`
216886
214506
  );
216887
214507
  }
216888
214508
  __name(getDevReactElement, "getDevReactElement");
216889
- const devReactElement = (0, import_ink13.render)(await getDevReactElement(config));
214509
+ const devReactElement = (0, import_ink4.render)(await getDevReactElement(config));
216890
214510
  rerender = devReactElement.rerender;
216891
214511
  if (assetsOptions && !args.experimentalDevEnv) {
216892
214512
  const debouncedRerender = debounce(async () => {
@@ -219497,7 +217117,8 @@ function getMiniflarePersistOptions(persist) {
219497
217117
  kvPersist: false,
219498
217118
  durableObjectsPersist: false,
219499
217119
  r2Persist: false,
219500
- d1Persist: false
217120
+ d1Persist: false,
217121
+ workflowsPersist: false
219501
217122
  };
219502
217123
  }
219503
217124
  const defaultPersistPath = ".wrangler/state/v3";
@@ -219506,7 +217127,8 @@ function getMiniflarePersistOptions(persist) {
219506
217127
  kvPersist: `${persistPath}/kv`,
219507
217128
  durableObjectsPersist: `${persistPath}/do`,
219508
217129
  r2Persist: `${persistPath}/r2`,
219509
- d1Persist: `${persistPath}/d1`
217130
+ d1Persist: `${persistPath}/d1`,
217131
+ workflowsPersist: `${persistPath}/workflows`
219510
217132
  };
219511
217133
  }
219512
217134
  __name(getMiniflarePersistOptions, "getMiniflarePersistOptions");
@@ -219768,17 +217390,6 @@ deep-extend/lib/deep-extend.js:
219768
217390
  safe-buffer/index.js:
219769
217391
  (*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
219770
217392
 
219771
- react/cjs/react-jsx-runtime.production.min.js:
219772
- (**
219773
- * @license React
219774
- * react-jsx-runtime.production.min.js
219775
- *
219776
- * Copyright (c) Facebook, Inc. and its affiliates.
219777
- *
219778
- * This source code is licensed under the MIT license found in the
219779
- * LICENSE file in the root directory of this source tree.
219780
- *)
219781
-
219782
217393
  depd/index.js:
219783
217394
  (*!
219784
217395
  * depd
@@ -220212,6 +217823,17 @@ undici/lib/fetch/body.js:
220212
217823
  undici/lib/websocket/frame.js:
220213
217824
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
220214
217825
 
217826
+ react/cjs/react-jsx-runtime.production.min.js:
217827
+ (**
217828
+ * @license React
217829
+ * react-jsx-runtime.production.min.js
217830
+ *
217831
+ * Copyright (c) Facebook, Inc. and its affiliates.
217832
+ *
217833
+ * This source code is licensed under the MIT license found in the
217834
+ * LICENSE file in the root directory of this source tree.
217835
+ *)
217836
+
220215
217837
  yargs-parser/build/lib/string-utils.js:
220216
217838
  (**
220217
217839
  * @license
@@ -220250,4 +217872,3 @@ yargs-parser/build/lib/index.js:
220250
217872
  * SPDX-License-Identifier: ISC
220251
217873
  *)
220252
217874
  */
220253
- //# sourceMappingURL=cli.js.map