@ddd-tool/domain-designer-cli 0.1.0-beta.10 → 0.1.0-beta.12

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.
@@ -26,9 +26,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
26
26
  mod
27
27
  ));
28
28
 
29
- // node_modules/.pnpm/@vue+shared@3.5.13/node_modules/@vue/shared/dist/shared.cjs.prod.js
29
+ // node_modules/.pnpm/@vue+shared@3.5.14/node_modules/@vue/shared/dist/shared.cjs.prod.js
30
30
  var require_shared_cjs_prod = __commonJS({
31
- "node_modules/.pnpm/@vue+shared@3.5.13/node_modules/@vue/shared/dist/shared.cjs.prod.js"(exports2) {
31
+ "node_modules/.pnpm/@vue+shared@3.5.14/node_modules/@vue/shared/dist/shared.cjs.prod.js"(exports2) {
32
32
  "use strict";
33
33
  Object.defineProperty(exports2, "__esModule", { value: true });
34
34
  // @__NO_SIDE_EFFECTS__
@@ -605,9 +605,9 @@ var require_shared_cjs_prod = __commonJS({
605
605
  }
606
606
  });
607
607
 
608
- // node_modules/.pnpm/@vue+shared@3.5.13/node_modules/@vue/shared/dist/shared.cjs.js
608
+ // node_modules/.pnpm/@vue+shared@3.5.14/node_modules/@vue/shared/dist/shared.cjs.js
609
609
  var require_shared_cjs = __commonJS({
610
- "node_modules/.pnpm/@vue+shared@3.5.13/node_modules/@vue/shared/dist/shared.cjs.js"(exports2) {
610
+ "node_modules/.pnpm/@vue+shared@3.5.14/node_modules/@vue/shared/dist/shared.cjs.js"(exports2) {
611
611
  "use strict";
612
612
  Object.defineProperty(exports2, "__esModule", { value: true });
613
613
  // @__NO_SIDE_EFFECTS__
@@ -1184,9 +1184,9 @@ var require_shared_cjs = __commonJS({
1184
1184
  }
1185
1185
  });
1186
1186
 
1187
- // node_modules/.pnpm/@vue+shared@3.5.13/node_modules/@vue/shared/index.js
1187
+ // node_modules/.pnpm/@vue+shared@3.5.14/node_modules/@vue/shared/index.js
1188
1188
  var require_shared = __commonJS({
1189
- "node_modules/.pnpm/@vue+shared@3.5.13/node_modules/@vue/shared/index.js"(exports2, module2) {
1189
+ "node_modules/.pnpm/@vue+shared@3.5.14/node_modules/@vue/shared/index.js"(exports2, module2) {
1190
1190
  "use strict";
1191
1191
  if (process.env.NODE_ENV === "production") {
1192
1192
  module2.exports = require_shared_cjs_prod();
@@ -1196,9 +1196,9 @@ var require_shared = __commonJS({
1196
1196
  }
1197
1197
  });
1198
1198
 
1199
- // node_modules/.pnpm/@vue+reactivity@3.5.13/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js
1199
+ // node_modules/.pnpm/@vue+reactivity@3.5.14/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js
1200
1200
  var require_reactivity_cjs_prod = __commonJS({
1201
- "node_modules/.pnpm/@vue+reactivity@3.5.13/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js"(exports2) {
1201
+ "node_modules/.pnpm/@vue+reactivity@3.5.14/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js"(exports2) {
1202
1202
  "use strict";
1203
1203
  Object.defineProperty(exports2, "__esModule", { value: true });
1204
1204
  var shared = require_shared();
@@ -1207,6 +1207,7 @@ var require_reactivity_cjs_prod = __commonJS({
1207
1207
  constructor(detached = false) {
1208
1208
  this.detached = detached;
1209
1209
  this._active = true;
1210
+ this._on = 0;
1210
1211
  this.effects = [];
1211
1212
  this.cleanups = [];
1212
1213
  this._isPaused = false;
@@ -1269,14 +1270,20 @@ var require_reactivity_cjs_prod = __commonJS({
1269
1270
  * @internal
1270
1271
  */
1271
1272
  on() {
1272
- activeEffectScope = this;
1273
+ if (++this._on === 1) {
1274
+ this.prevScope = activeEffectScope;
1275
+ activeEffectScope = this;
1276
+ }
1273
1277
  }
1274
1278
  /**
1275
1279
  * This should only be called on non-detached scopes
1276
1280
  * @internal
1277
1281
  */
1278
1282
  off() {
1279
- activeEffectScope = this.parent;
1283
+ if (this._on > 0 && --this._on === 0) {
1284
+ activeEffectScope = this.prevScope;
1285
+ this.prevScope = void 0;
1286
+ }
1280
1287
  }
1281
1288
  stop(fromParent) {
1282
1289
  if (this._active) {
@@ -1333,7 +1340,9 @@ var require_reactivity_cjs_prod = __commonJS({
1333
1340
  "ALLOW_RECURSE": 32,
1334
1341
  "32": "ALLOW_RECURSE",
1335
1342
  "PAUSED": 64,
1336
- "64": "PAUSED"
1343
+ "64": "PAUSED",
1344
+ "EVALUATED": 128,
1345
+ "128": "EVALUATED"
1337
1346
  };
1338
1347
  var pausedQueueEffects = /* @__PURE__ */ new WeakSet();
1339
1348
  var ReactiveEffect = class {
@@ -1354,7 +1363,7 @@ var require_reactivity_cjs_prod = __commonJS({
1354
1363
  }
1355
1364
  resume() {
1356
1365
  if (this.flags & 64) {
1357
- this.flags &= ~64;
1366
+ this.flags &= -65;
1358
1367
  if (pausedQueueEffects.has(this)) {
1359
1368
  pausedQueueEffects.delete(this);
1360
1369
  this.trigger();
@@ -1389,7 +1398,7 @@ var require_reactivity_cjs_prod = __commonJS({
1389
1398
  cleanupDeps(this);
1390
1399
  activeSub = prevEffect;
1391
1400
  shouldTrack = prevShouldTrack;
1392
- this.flags &= ~2;
1401
+ this.flags &= -3;
1393
1402
  }
1394
1403
  }
1395
1404
  stop() {
@@ -1400,7 +1409,7 @@ var require_reactivity_cjs_prod = __commonJS({
1400
1409
  this.deps = this.depsTail = void 0;
1401
1410
  cleanupEffect(this);
1402
1411
  this.onStop && this.onStop();
1403
- this.flags &= ~1;
1412
+ this.flags &= -2;
1404
1413
  }
1405
1414
  }
1406
1415
  trigger() {
@@ -1450,7 +1459,7 @@ var require_reactivity_cjs_prod = __commonJS({
1450
1459
  while (e) {
1451
1460
  const next = e.next;
1452
1461
  e.next = void 0;
1453
- e.flags &= ~8;
1462
+ e.flags &= -9;
1454
1463
  e = next;
1455
1464
  }
1456
1465
  }
@@ -1461,7 +1470,7 @@ var require_reactivity_cjs_prod = __commonJS({
1461
1470
  while (e) {
1462
1471
  const next = e.next;
1463
1472
  e.next = void 0;
1464
- e.flags &= ~8;
1473
+ e.flags &= -9;
1465
1474
  if (e.flags & 1) {
1466
1475
  try {
1467
1476
  ;
@@ -1517,17 +1526,16 @@ var require_reactivity_cjs_prod = __commonJS({
1517
1526
  if (computed2.flags & 4 && !(computed2.flags & 16)) {
1518
1527
  return;
1519
1528
  }
1520
- computed2.flags &= ~16;
1529
+ computed2.flags &= -17;
1521
1530
  if (computed2.globalVersion === globalVersion) {
1522
1531
  return;
1523
1532
  }
1524
1533
  computed2.globalVersion = globalVersion;
1525
- const dep = computed2.dep;
1526
- computed2.flags |= 2;
1527
- if (dep.version > 0 && !computed2.isSSR && computed2.deps && !isDirty(computed2)) {
1528
- computed2.flags &= ~2;
1534
+ if (!computed2.isSSR && computed2.flags & 128 && (!computed2.deps && !computed2._dirty || !isDirty(computed2))) {
1529
1535
  return;
1530
1536
  }
1537
+ computed2.flags |= 2;
1538
+ const dep = computed2.dep;
1531
1539
  const prevSub = activeSub;
1532
1540
  const prevShouldTrack = shouldTrack;
1533
1541
  activeSub = computed2;
@@ -1536,6 +1544,7 @@ var require_reactivity_cjs_prod = __commonJS({
1536
1544
  prepareDeps(computed2);
1537
1545
  const value = computed2.fn(computed2._value);
1538
1546
  if (dep.version === 0 || shared.hasChanged(value, computed2._value)) {
1547
+ computed2.flags |= 128;
1539
1548
  computed2._value = value;
1540
1549
  dep.version++;
1541
1550
  }
@@ -1546,7 +1555,7 @@ var require_reactivity_cjs_prod = __commonJS({
1546
1555
  activeSub = prevSub;
1547
1556
  shouldTrack = prevShouldTrack;
1548
1557
  cleanupDeps(computed2);
1549
- computed2.flags &= ~2;
1558
+ computed2.flags &= -3;
1550
1559
  }
1551
1560
  }
1552
1561
  function removeSub(link, soft = false) {
@@ -1562,7 +1571,7 @@ var require_reactivity_cjs_prod = __commonJS({
1562
1571
  if (dep.subs === link) {
1563
1572
  dep.subs = prevSub;
1564
1573
  if (!prevSub && dep.computed) {
1565
- dep.computed.flags &= ~4;
1574
+ dep.computed.flags &= -5;
1566
1575
  for (let l2 = dep.computed.deps; l2; l2 = l2.nextDep) {
1567
1576
  removeSub(l2, true);
1568
1577
  }
@@ -2406,14 +2415,14 @@ var require_reactivity_cjs_prod = __commonJS({
2406
2415
  if (target["__v_raw"] && !(isReadonly2 && target["__v_isReactive"])) {
2407
2416
  return target;
2408
2417
  }
2409
- const existingProxy = proxyMap.get(target);
2410
- if (existingProxy) {
2411
- return existingProxy;
2412
- }
2413
2418
  const targetType = getTargetType(target);
2414
2419
  if (targetType === 0) {
2415
2420
  return target;
2416
2421
  }
2422
+ const existingProxy = proxyMap.get(target);
2423
+ if (existingProxy) {
2424
+ return existingProxy;
2425
+ }
2417
2426
  const proxy = new Proxy(
2418
2427
  target,
2419
2428
  targetType === 2 ? collectionHandlers : baseHandlers
@@ -2910,9 +2919,9 @@ var require_reactivity_cjs_prod = __commonJS({
2910
2919
  }
2911
2920
  });
2912
2921
 
2913
- // node_modules/.pnpm/@vue+reactivity@3.5.13/node_modules/@vue/reactivity/dist/reactivity.cjs.js
2922
+ // node_modules/.pnpm/@vue+reactivity@3.5.14/node_modules/@vue/reactivity/dist/reactivity.cjs.js
2914
2923
  var require_reactivity_cjs = __commonJS({
2915
- "node_modules/.pnpm/@vue+reactivity@3.5.13/node_modules/@vue/reactivity/dist/reactivity.cjs.js"(exports2) {
2924
+ "node_modules/.pnpm/@vue+reactivity@3.5.14/node_modules/@vue/reactivity/dist/reactivity.cjs.js"(exports2) {
2916
2925
  "use strict";
2917
2926
  Object.defineProperty(exports2, "__esModule", { value: true });
2918
2927
  var shared = require_shared();
@@ -2924,6 +2933,7 @@ var require_reactivity_cjs = __commonJS({
2924
2933
  constructor(detached = false) {
2925
2934
  this.detached = detached;
2926
2935
  this._active = true;
2936
+ this._on = 0;
2927
2937
  this.effects = [];
2928
2938
  this.cleanups = [];
2929
2939
  this._isPaused = false;
@@ -2988,14 +2998,20 @@ var require_reactivity_cjs = __commonJS({
2988
2998
  * @internal
2989
2999
  */
2990
3000
  on() {
2991
- activeEffectScope = this;
3001
+ if (++this._on === 1) {
3002
+ this.prevScope = activeEffectScope;
3003
+ activeEffectScope = this;
3004
+ }
2992
3005
  }
2993
3006
  /**
2994
3007
  * This should only be called on non-detached scopes
2995
3008
  * @internal
2996
3009
  */
2997
3010
  off() {
2998
- activeEffectScope = this.parent;
3011
+ if (this._on > 0 && --this._on === 0) {
3012
+ activeEffectScope = this.prevScope;
3013
+ this.prevScope = void 0;
3014
+ }
2999
3015
  }
3000
3016
  stop(fromParent) {
3001
3017
  if (this._active) {
@@ -3056,7 +3072,9 @@ var require_reactivity_cjs = __commonJS({
3056
3072
  "ALLOW_RECURSE": 32,
3057
3073
  "32": "ALLOW_RECURSE",
3058
3074
  "PAUSED": 64,
3059
- "64": "PAUSED"
3075
+ "64": "PAUSED",
3076
+ "EVALUATED": 128,
3077
+ "128": "EVALUATED"
3060
3078
  };
3061
3079
  var pausedQueueEffects = /* @__PURE__ */ new WeakSet();
3062
3080
  var ReactiveEffect = class {
@@ -3077,7 +3095,7 @@ var require_reactivity_cjs = __commonJS({
3077
3095
  }
3078
3096
  resume() {
3079
3097
  if (this.flags & 64) {
3080
- this.flags &= ~64;
3098
+ this.flags &= -65;
3081
3099
  if (pausedQueueEffects.has(this)) {
3082
3100
  pausedQueueEffects.delete(this);
3083
3101
  this.trigger();
@@ -3117,7 +3135,7 @@ var require_reactivity_cjs = __commonJS({
3117
3135
  cleanupDeps(this);
3118
3136
  activeSub = prevEffect;
3119
3137
  shouldTrack = prevShouldTrack;
3120
- this.flags &= ~2;
3138
+ this.flags &= -3;
3121
3139
  }
3122
3140
  }
3123
3141
  stop() {
@@ -3128,7 +3146,7 @@ var require_reactivity_cjs = __commonJS({
3128
3146
  this.deps = this.depsTail = void 0;
3129
3147
  cleanupEffect(this);
3130
3148
  this.onStop && this.onStop();
3131
- this.flags &= ~1;
3149
+ this.flags &= -2;
3132
3150
  }
3133
3151
  }
3134
3152
  trigger() {
@@ -3178,7 +3196,7 @@ var require_reactivity_cjs = __commonJS({
3178
3196
  while (e) {
3179
3197
  const next = e.next;
3180
3198
  e.next = void 0;
3181
- e.flags &= ~8;
3199
+ e.flags &= -9;
3182
3200
  e = next;
3183
3201
  }
3184
3202
  }
@@ -3189,7 +3207,7 @@ var require_reactivity_cjs = __commonJS({
3189
3207
  while (e) {
3190
3208
  const next = e.next;
3191
3209
  e.next = void 0;
3192
- e.flags &= ~8;
3210
+ e.flags &= -9;
3193
3211
  if (e.flags & 1) {
3194
3212
  try {
3195
3213
  ;
@@ -3245,17 +3263,16 @@ var require_reactivity_cjs = __commonJS({
3245
3263
  if (computed2.flags & 4 && !(computed2.flags & 16)) {
3246
3264
  return;
3247
3265
  }
3248
- computed2.flags &= ~16;
3266
+ computed2.flags &= -17;
3249
3267
  if (computed2.globalVersion === globalVersion) {
3250
3268
  return;
3251
3269
  }
3252
3270
  computed2.globalVersion = globalVersion;
3253
- const dep = computed2.dep;
3254
- computed2.flags |= 2;
3255
- if (dep.version > 0 && !computed2.isSSR && computed2.deps && !isDirty(computed2)) {
3256
- computed2.flags &= ~2;
3271
+ if (!computed2.isSSR && computed2.flags & 128 && (!computed2.deps && !computed2._dirty || !isDirty(computed2))) {
3257
3272
  return;
3258
3273
  }
3274
+ computed2.flags |= 2;
3275
+ const dep = computed2.dep;
3259
3276
  const prevSub = activeSub;
3260
3277
  const prevShouldTrack = shouldTrack;
3261
3278
  activeSub = computed2;
@@ -3264,6 +3281,7 @@ var require_reactivity_cjs = __commonJS({
3264
3281
  prepareDeps(computed2);
3265
3282
  const value = computed2.fn(computed2._value);
3266
3283
  if (dep.version === 0 || shared.hasChanged(value, computed2._value)) {
3284
+ computed2.flags |= 128;
3267
3285
  computed2._value = value;
3268
3286
  dep.version++;
3269
3287
  }
@@ -3274,7 +3292,7 @@ var require_reactivity_cjs = __commonJS({
3274
3292
  activeSub = prevSub;
3275
3293
  shouldTrack = prevShouldTrack;
3276
3294
  cleanupDeps(computed2);
3277
- computed2.flags &= ~2;
3295
+ computed2.flags &= -3;
3278
3296
  }
3279
3297
  }
3280
3298
  function removeSub(link, soft = false) {
@@ -3293,7 +3311,7 @@ var require_reactivity_cjs = __commonJS({
3293
3311
  if (dep.subs === link) {
3294
3312
  dep.subs = prevSub;
3295
3313
  if (!prevSub && dep.computed) {
3296
- dep.computed.flags &= ~4;
3314
+ dep.computed.flags &= -5;
3297
3315
  for (let l2 = dep.computed.deps; l2; l2 = l2.nextDep) {
3298
3316
  removeSub(l2, true);
3299
3317
  }
@@ -4222,14 +4240,14 @@ var require_reactivity_cjs = __commonJS({
4222
4240
  if (target["__v_raw"] && !(isReadonly2 && target["__v_isReactive"])) {
4223
4241
  return target;
4224
4242
  }
4225
- const existingProxy = proxyMap.get(target);
4226
- if (existingProxy) {
4227
- return existingProxy;
4228
- }
4229
4243
  const targetType = getTargetType(target);
4230
4244
  if (targetType === 0) {
4231
4245
  return target;
4232
4246
  }
4247
+ const existingProxy = proxyMap.get(target);
4248
+ if (existingProxy) {
4249
+ return existingProxy;
4250
+ }
4233
4251
  const proxy = new Proxy(
4234
4252
  target,
4235
4253
  targetType === 2 ? collectionHandlers : baseHandlers
@@ -4772,9 +4790,9 @@ var require_reactivity_cjs = __commonJS({
4772
4790
  }
4773
4791
  });
4774
4792
 
4775
- // node_modules/.pnpm/@vue+reactivity@3.5.13/node_modules/@vue/reactivity/index.js
4793
+ // node_modules/.pnpm/@vue+reactivity@3.5.14/node_modules/@vue/reactivity/index.js
4776
4794
  var require_reactivity = __commonJS({
4777
- "node_modules/.pnpm/@vue+reactivity@3.5.13/node_modules/@vue/reactivity/index.js"(exports2, module2) {
4795
+ "node_modules/.pnpm/@vue+reactivity@3.5.14/node_modules/@vue/reactivity/index.js"(exports2, module2) {
4778
4796
  "use strict";
4779
4797
  if (process.env.NODE_ENV === "production") {
4780
4798
  module2.exports = require_reactivity_cjs_prod();
@@ -7996,14 +8014,14 @@ var require_clear = __commonJS({
7996
8014
  if (Array.isArray(o) || (it2 = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
7997
8015
  if (it2) o = it2;
7998
8016
  var i = 0;
7999
- var F4 = function F5() {
8017
+ var F3 = function F4() {
8000
8018
  };
8001
- return { s: F4, n: function n() {
8019
+ return { s: F3, n: function n() {
8002
8020
  if (i >= o.length) return { done: true };
8003
8021
  return { done: false, value: o[i++] };
8004
8022
  }, e: function e(_e3) {
8005
8023
  throw _e3;
8006
- }, f: F4 };
8024
+ }, f: F3 };
8007
8025
  }
8008
8026
  throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
8009
8027
  }
@@ -10300,14 +10318,14 @@ var require_dist = __commonJS({
10300
10318
  if (Array.isArray(o) || (it2 = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
10301
10319
  if (it2) o = it2;
10302
10320
  var i = 0;
10303
- var F4 = function F5() {
10321
+ var F3 = function F4() {
10304
10322
  };
10305
- return { s: F4, n: function n() {
10323
+ return { s: F3, n: function n() {
10306
10324
  if (i >= o.length) return { done: true };
10307
10325
  return { done: false, value: o[i++] };
10308
10326
  }, e: function e(_e3) {
10309
10327
  throw _e3;
10310
- }, f: F4 };
10328
+ }, f: F3 };
10311
10329
  }
10312
10330
  throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
10313
10331
  }
@@ -13213,10 +13231,10 @@ function toString(...args) {
13213
13231
  // src/domain/i18n-agg/index.ts
13214
13232
  var import_reactivity2 = __toESM(require_reactivity(), 1);
13215
13233
 
13216
- // node_modules/.pnpm/vue-fn@0.1.0-beta.1_@vue+re_4ca1cd6871b8a9d3850126940100dd32/node_modules/vue-fn/domain-server/index.mjs
13234
+ // node_modules/.pnpm/vue-fn@0.1.0-beta.1_@vue+re_6c6f2c418066476e32047d51b707ca14/node_modules/vue-fn/domain-server/index.mjs
13217
13235
  var import_reactivity = __toESM(require_reactivity(), 1);
13218
13236
 
13219
- // node_modules/.pnpm/vue-fn@0.1.0-beta.1_@vue+re_4ca1cd6871b8a9d3850126940100dd32/node_modules/vue-fn/index.browser-CWCjzKuA.js
13237
+ // node_modules/.pnpm/vue-fn@0.1.0-beta.1_@vue+re_6c6f2c418066476e32047d51b707ca14/node_modules/vue-fn/index.browser-CWCjzKuA.js
13220
13238
  var l = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";
13221
13239
  var r = (t = 21) => {
13222
13240
  let e = "", n = crypto.getRandomValues(new Uint8Array(t |= 0));
@@ -13225,7 +13243,7 @@ var r = (t = 21) => {
13225
13243
  return e;
13226
13244
  };
13227
13245
 
13228
- // node_modules/.pnpm/vue-fn@0.1.0-beta.1_@vue+re_4ca1cd6871b8a9d3850126940100dd32/node_modules/vue-fn/domain-server/index.mjs
13246
+ // node_modules/.pnpm/vue-fn@0.1.0-beta.1_@vue+re_6c6f2c418066476e32047d51b707ca14/node_modules/vue-fn/domain-server/index.mjs
13229
13247
  function I(r2, o = true, a = false) {
13230
13248
  const n = (0, import_reactivity.ref)();
13231
13249
  let e;
@@ -13511,7 +13529,7 @@ function onCancel() {
13511
13529
  // src/utils/package-info.ts
13512
13530
  var package_info_default = {
13513
13531
  "name": "@ddd-tool/domain-designer-cli",
13514
- "version": "0.1.0-beta.10",
13532
+ "version": "0.1.0-beta.12",
13515
13533
  "private": true,
13516
13534
  "type": "module",
13517
13535
  "files": [
@@ -13526,7 +13544,7 @@ var package_info_default = {
13526
13544
  },
13527
13545
  "readme": "ERROR: No README data found!",
13528
13546
  "homepage": "https://github.com/ddd-tool/domain-designer-cli-node#readme",
13529
- "_id": "@ddd-tool/domain-designer-cli@0.1.0-beta.10"
13547
+ "_id": "@ddd-tool/domain-designer-cli@0.1.0-beta.12"
13530
13548
  };
13531
13549
 
13532
13550
  // src/domain/environment-agg/index.ts
@@ -14160,12 +14178,12 @@ var import_fs6 = __toESM(require("fs"), 1);
14160
14178
  var import_path7 = __toESM(require("path"), 1);
14161
14179
  var import_child_process5 = require("child_process");
14162
14180
 
14163
- // node_modules/.pnpm/@ddd-tool+domain-designer-core@0.1.0-beta.7/node_modules/@ddd-tool/domain-designer-core/index.js
14181
+ // node_modules/.pnpm/@ddd-tool+domain-designer-core@0.1.0-beta.10/node_modules/@ddd-tool/domain-designer-core/index.js
14164
14182
  function tr(t) {
14165
14183
  const e = t;
14166
14184
  return e && typeof e.actor == "function" && typeof e.startWorkflow == "function" && typeof e.defineUserStory == "function" && typeof e._getContext == "function" && typeof e.note == "function" && typeof e.info == "object" && typeof e.command == "function" && typeof e.facadeCmd == "function" && typeof e.agg == "function" && typeof e.event == "function" && typeof e.system == "function" && typeof e.policy == "function" && typeof e.service == "function" && typeof e.readModel == "function";
14167
14185
  }
14168
- var Et = process.env.NODE_ENV !== "production" ? Object.freeze({}) : {};
14186
+ var Nt = process.env.NODE_ENV !== "production" ? Object.freeze({}) : {};
14169
14187
  process.env.NODE_ENV !== "production" && Object.freeze([]);
14170
14188
  var Lt = () => {
14171
14189
  };
@@ -14184,11 +14202,11 @@ var De = (t) => {
14184
14202
  var xe = De((t) => t.charAt(0).toUpperCase() + t.slice(1));
14185
14203
  var $t4;
14186
14204
  var dt = () => $t4 || ($t4 = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typeof window < "u" ? window : typeof global < "u" ? global : {});
14187
- function Ft(t) {
14205
+ function Dt(t) {
14188
14206
  if (y2(t)) {
14189
14207
  const e = {};
14190
14208
  for (let n = 0; n < t.length; n++) {
14191
- const s = t[n], r2 = x(s) ? Me(s) : Ft(s);
14209
+ const s = t[n], r2 = x(s) ? Me(s) : Dt(s);
14192
14210
  if (r2)
14193
14211
  for (const o in r2)
14194
14212
  e[o] = r2[o];
@@ -14209,13 +14227,13 @@ function Me(t) {
14209
14227
  }
14210
14228
  }), e;
14211
14229
  }
14212
- function Ct(t) {
14230
+ function xt(t) {
14213
14231
  let e = "";
14214
14232
  if (x(t))
14215
14233
  e = t;
14216
14234
  else if (y2(t))
14217
14235
  for (let n = 0; n < t.length; n++) {
14218
- const s = Ct(t[n]);
14236
+ const s = xt(t[n]);
14219
14237
  s && (e += s + " ");
14220
14238
  }
14221
14239
  else if (R(t))
@@ -14225,17 +14243,17 @@ function Ct(t) {
14225
14243
  }
14226
14244
  var st = true;
14227
14245
  var Yt = [];
14228
- function At() {
14246
+ function _t() {
14229
14247
  Yt.push(st), st = false;
14230
14248
  }
14231
- function Vt() {
14249
+ function pt() {
14232
14250
  const t = Yt.pop();
14233
14251
  st = t === void 0 ? true : t;
14234
14252
  }
14235
14253
  var j2 = Symbol(
14236
14254
  process.env.NODE_ENV !== "production" ? "Object iterate" : ""
14237
14255
  );
14238
- var vt = Symbol(
14256
+ var Ot = Symbol(
14239
14257
  process.env.NODE_ENV !== "production" ? "Map keys iterate" : ""
14240
14258
  );
14241
14259
  var Q = Symbol(
@@ -14251,7 +14269,7 @@ function ee(t) {
14251
14269
  function P2(t) {
14252
14270
  return !!(t && t.__v_isReadonly);
14253
14271
  }
14254
- function F2(t) {
14272
+ function C2(t) {
14255
14273
  return !!(t && t.__v_isShallow);
14256
14274
  }
14257
14275
  function ct(t) {
@@ -14271,10 +14289,10 @@ function tn(t) {
14271
14289
  function en() {
14272
14290
  k.pop();
14273
14291
  }
14274
- var bt = false;
14292
+ var yt = false;
14275
14293
  function W(t, ...e) {
14276
- if (bt) return;
14277
- bt = true, At();
14294
+ if (yt) return;
14295
+ yt = true, _t();
14278
14296
  const n = k.length ? k[k.length - 1].component : null, s = n && n.appContext.config.warnHandler, r2 = nn();
14279
14297
  if (s)
14280
14298
  Mt(
@@ -14300,7 +14318,7 @@ function W(t, ...e) {
14300
14318
  r2.length && o.push(`
14301
14319
  `, ...rn(r2));
14302
14320
  }
14303
- Vt(), bt = false;
14321
+ pt(), yt = false;
14304
14322
  }
14305
14323
  function nn() {
14306
14324
  let t = k[k.length - 1];
@@ -14383,25 +14401,25 @@ function Mt(t, e, n, s) {
14383
14401
  }
14384
14402
  }
14385
14403
  function oe(t, e, n, s = true) {
14386
- const r2 = e ? e.vnode : null, { errorHandler: o, throwUnhandledErrorInProduction: c } = e && e.appContext.config || Et;
14404
+ const r2 = e ? e.vnode : null, { errorHandler: o, throwUnhandledErrorInProduction: c } = e && e.appContext.config || Nt;
14387
14405
  if (e) {
14388
14406
  let i = e.parent;
14389
- const a = e.proxy, d = process.env.NODE_ENV !== "production" ? re[n] : `https://vuejs.org/error-reference/#runtime-${n}`;
14407
+ const f = e.proxy, p = process.env.NODE_ENV !== "production" ? re[n] : `https://vuejs.org/error-reference/#runtime-${n}`;
14390
14408
  for (; i; ) {
14391
- const l2 = i.ec;
14392
- if (l2) {
14393
- for (let u = 0; u < l2.length; u++)
14394
- if (l2[u](t, a, d) === false)
14409
+ const a = i.ec;
14410
+ if (a) {
14411
+ for (let u = 0; u < a.length; u++)
14412
+ if (a[u](t, f, p) === false)
14395
14413
  return;
14396
14414
  }
14397
14415
  i = i.parent;
14398
14416
  }
14399
14417
  if (o) {
14400
- At(), Mt(o, null, 10, [
14418
+ _t(), Mt(o, null, 10, [
14401
14419
  t,
14402
- a,
14403
- d
14404
- ]), Vt();
14420
+ f,
14421
+ p
14422
+ ]), pt();
14405
14423
  return;
14406
14424
  }
14407
14425
  }
@@ -14421,7 +14439,7 @@ var L = [];
14421
14439
  var V = null;
14422
14440
  var K = 0;
14423
14441
  var un = /* @__PURE__ */ Promise.resolve();
14424
- var Tt = null;
14442
+ var Ct = null;
14425
14443
  var an = 100;
14426
14444
  function ln(t) {
14427
14445
  let e = D + 1, n = O.length;
@@ -14439,7 +14457,7 @@ function fn(t) {
14439
14457
  }
14440
14458
  }
14441
14459
  function se() {
14442
- Tt || (Tt = un.then(ie));
14460
+ Ct || (Ct = un.then(ie));
14443
14461
  }
14444
14462
  function dn(t) {
14445
14463
  y2(t) ? L.push(...t) : V && t.id === -1 ? V.splice(K + 1, 0, t) : t.flags & 1 || (L.push(t), t.flags |= 1), se();
@@ -14482,7 +14500,7 @@ function ie(t) {
14482
14500
  const n = O[D];
14483
14501
  n && (n.flags &= -2);
14484
14502
  }
14485
- D = -1, O.length = 0, _n(t), Tt = null, (O.length || L.length) && ie(t);
14503
+ D = -1, O.length = 0, _n(t), Ct = null, (O.length || L.length) && ie(t);
14486
14504
  }
14487
14505
  }
14488
14506
  function ce(t, e) {
@@ -14497,11 +14515,11 @@ function ce(t, e) {
14497
14515
  }
14498
14516
  return t.set(e, n + 1), false;
14499
14517
  }
14500
- var mt = /* @__PURE__ */ new Map();
14518
+ var Et = /* @__PURE__ */ new Map();
14501
14519
  process.env.NODE_ENV !== "production" && (dt().__VUE_HMR_RUNTIME__ = {
14502
- createRecord: yt(pn),
14503
- rerender: yt(hn),
14504
- reload: yt(gn)
14520
+ createRecord: wt(pn),
14521
+ rerender: wt(hn),
14522
+ reload: wt(gn)
14505
14523
  });
14506
14524
  var ut = /* @__PURE__ */ new Map();
14507
14525
  function pn(t, e) {
@@ -14526,13 +14544,13 @@ function gn(t, e) {
14526
14544
  const s = [...n.instances];
14527
14545
  for (let r2 = 0; r2 < s.length; r2++) {
14528
14546
  const o = s[r2], c = at(o.type);
14529
- let i = mt.get(c);
14530
- i || (c !== n.initialDef && Ht(c, e), mt.set(c, i = /* @__PURE__ */ new Set())), i.add(o), o.appContext.propsCache.delete(o.type), o.appContext.emitsCache.delete(o.type), o.appContext.optionsCache.delete(o.type), o.ceReload ? (i.add(o), o.ceReload(e.styles), i.delete(o)) : o.parent ? fn(() => {
14547
+ let i = Et.get(c);
14548
+ i || (c !== n.initialDef && Ht(c, e), Et.set(c, i = /* @__PURE__ */ new Set())), i.add(o), o.appContext.propsCache.delete(o.type), o.appContext.emitsCache.delete(o.type), o.appContext.optionsCache.delete(o.type), o.ceReload ? (i.add(o), o.ceReload(e.styles), i.delete(o)) : o.parent ? fn(() => {
14531
14549
  o.parent.update(), i.delete(o);
14532
14550
  }) : o.appContext.reload ? o.appContext.reload() : typeof window < "u" && window.location.reload(), o.root.ce && o !== o.root && o.root.ce._removeChildStyle(c);
14533
14551
  }
14534
14552
  dn(() => {
14535
- mt.clear();
14553
+ Et.clear();
14536
14554
  });
14537
14555
  }
14538
14556
  function Ht(t, e) {
@@ -14540,7 +14558,7 @@ function Ht(t, e) {
14540
14558
  for (const n in t)
14541
14559
  n !== "__file" && !(n in e) && delete t[n];
14542
14560
  }
14543
- function yt(t) {
14561
+ function wt(t) {
14544
14562
  return (e, n) => {
14545
14563
  try {
14546
14564
  return t(e, n);
@@ -14580,7 +14598,7 @@ var ot = ({
14580
14598
  ref_for: n
14581
14599
  }) => (typeof t == "number" && (t = "" + t), t != null ? x(t) || M2(t) || $(t) ? { i: lt, r: t, k: e, f: !!n } : t : null);
14582
14600
  function Rn(t, e = null, n = null, s = 0, r2 = null, o = t === fe ? 0 : 1, c = false, i = false) {
14583
- const a = {
14601
+ const f = {
14584
14602
  __v_isVNode: true,
14585
14603
  __v_skip: true,
14586
14604
  type: t,
@@ -14609,9 +14627,9 @@ function Rn(t, e = null, n = null, s = 0, r2 = null, o = t === fe ? 0 : 1, c = f
14609
14627
  appContext: null,
14610
14628
  ctx: lt
14611
14629
  };
14612
- return i ? (Pt(a, n), o & 128 && t.normalize(a)) : n && (a.shapeFlag |= x(n) ? 8 : 16), process.env.NODE_ENV !== "production" && a.key !== a.key && W("VNode created with invalid key (NaN). VNode type:", a.type), a;
14630
+ return i ? (Pt(f, n), o & 128 && t.normalize(f)) : n && (f.shapeFlag |= x(n) ? 8 : 16), process.env.NODE_ENV !== "production" && f.key !== f.key && W("VNode created with invalid key (NaN). VNode type:", f.type), f;
14613
14631
  }
14614
- var Fn = process.env.NODE_ENV !== "production" ? Tn : _e;
14632
+ var Cn = process.env.NODE_ENV !== "production" ? Tn : _e;
14615
14633
  function _e(t, e = null, n = null, s = 0, r2 = null, o = false) {
14616
14634
  if ((!t || t === yn) && (process.env.NODE_ENV !== "production" && !t && W(`Invalid vnode type when creating vnode: ${t}.`), t = Sn), On(t)) {
14617
14635
  const i = ft(
@@ -14623,9 +14641,9 @@ function _e(t, e = null, n = null, s = 0, r2 = null, o = false) {
14623
14641
  return n && Pt(i, n), i.patchFlag = -2, i;
14624
14642
  }
14625
14643
  if (be(t) && (t = t.__vccOpts), e) {
14626
- e = Cn(e);
14627
- let { class: i, style: a } = e;
14628
- i && !x(i) && (e.class = Ct(i)), R(a) && (ct(a) && !y2(a) && (a = B({}, a)), e.style = Ft(a));
14644
+ e = Fn(e);
14645
+ let { class: i, style: f } = e;
14646
+ i && !x(i) && (e.class = xt(i)), R(f) && (ct(f) && !y2(f) && (f = B({}, f)), e.style = Dt(f));
14629
14647
  }
14630
14648
  const c = x(t) ? 1 : Nn(t) ? 128 : mn(t) ? 64 : R(t) ? 4 : $(t) ? 2 : 0;
14631
14649
  return process.env.NODE_ENV !== "production" && c & 4 && ct(t) && (t = h(t), W(
@@ -14644,16 +14662,16 @@ Component that was made reactive: `,
14644
14662
  true
14645
14663
  );
14646
14664
  }
14647
- function Cn(t) {
14665
+ function Fn(t) {
14648
14666
  return t ? ct(t) || le(t) ? B({}, t) : t : null;
14649
14667
  }
14650
14668
  function ft(t, e, n = false, s = false) {
14651
- const { props: r2, ref: o, patchFlag: c, children: i, transition: a } = t, d = e ? xn(r2 || {}, e) : r2, l2 = {
14669
+ const { props: r2, ref: o, patchFlag: c, children: i, transition: f } = t, p = e ? xn(r2 || {}, e) : r2, a = {
14652
14670
  __v_isVNode: true,
14653
14671
  __v_skip: true,
14654
14672
  type: t.type,
14655
- props: d,
14656
- key: d && de(d),
14673
+ props: p,
14674
+ key: p && de(p),
14657
14675
  ref: e && e.ref ? (
14658
14676
  // #2078 in the case of <component :is="vnode" ref="extra"/>
14659
14677
  // if the vnode itself already has a ref, cloneVNode will need to merge
@@ -14677,7 +14695,7 @@ function ft(t, e, n = false, s = false) {
14677
14695
  dynamicChildren: t.dynamicChildren,
14678
14696
  appContext: t.appContext,
14679
14697
  dirs: t.dirs,
14680
- transition: a,
14698
+ transition: f,
14681
14699
  // These should technically only be non-null on mounted VNodes. However,
14682
14700
  // they *should* be copied for kept-alive vnodes. So we just always copy
14683
14701
  // them since them being non-null during a mount doesn't affect the logic as
@@ -14691,17 +14709,17 @@ function ft(t, e, n = false, s = false) {
14691
14709
  ctx: t.ctx,
14692
14710
  ce: t.ce
14693
14711
  };
14694
- return a && s && ae(
14695
- l2,
14696
- a.clone(l2)
14697
- ), l2;
14712
+ return f && s && ae(
14713
+ a,
14714
+ f.clone(a)
14715
+ ), a;
14698
14716
  }
14699
14717
  function pe(t) {
14700
14718
  const e = ft(t);
14701
14719
  return y2(t.children) && (e.children = t.children.map(pe)), e;
14702
14720
  }
14703
14721
  function Dn(t = " ", e = 0) {
14704
- return Fn(vn, null, t, e);
14722
+ return Cn(vn, null, t, e);
14705
14723
  }
14706
14724
  function Pt(t, e) {
14707
14725
  let n = 0;
@@ -14726,9 +14744,9 @@ function xn(...t) {
14726
14744
  const s = t[n];
14727
14745
  for (const r2 in s)
14728
14746
  if (r2 === "class")
14729
- e.class !== s.class && (e.class = Ct([e.class, s.class]));
14747
+ e.class !== s.class && (e.class = xt([e.class, s.class]));
14730
14748
  else if (r2 === "style")
14731
- e.style = Ft([e.style, s.style]);
14749
+ e.style = Dt([e.style, s.style]);
14732
14750
  else if (Re(r2)) {
14733
14751
  const o = e[r2], c = s[r2];
14734
14752
  c && o !== c && !(y2(o) && o.includes(c)) && (e[r2] = o ? [].concat(o, c) : c);
@@ -14784,29 +14802,42 @@ function In() {
14784
14802
  const t = { style: "color:#3ba776" }, e = { style: "color:#1677ff" }, n = { style: "color:#f5222d" }, s = { style: "color:#eb2f96" }, r2 = {
14785
14803
  __vue_custom_formatter: true,
14786
14804
  header(u) {
14787
- return R(u) ? u.__isVue ? ["div", t, "VueInstance"] : M2(u) ? [
14788
- "div",
14789
- {},
14790
- ["span", t, l2(u)],
14791
- "<",
14792
- // avoid debugger accessing value affecting behavior
14793
- i("_value" in u ? u._value : u),
14794
- ">"
14795
- ] : ee(u) ? [
14796
- "div",
14797
- {},
14798
- ["span", t, F2(u) ? "ShallowReactive" : "Reactive"],
14799
- "<",
14800
- i(u),
14801
- `>${P2(u) ? " (readonly)" : ""}`
14802
- ] : P2(u) ? [
14803
- "div",
14804
- {},
14805
- ["span", t, F2(u) ? "ShallowReadonly" : "Readonly"],
14806
- "<",
14807
- i(u),
14808
- ">"
14809
- ] : null : null;
14805
+ if (!R(u))
14806
+ return null;
14807
+ if (u.__isVue)
14808
+ return ["div", t, "VueInstance"];
14809
+ if (M2(u)) {
14810
+ _t();
14811
+ const l2 = u.value;
14812
+ return pt(), [
14813
+ "div",
14814
+ {},
14815
+ ["span", t, a(u)],
14816
+ "<",
14817
+ i(l2),
14818
+ ">"
14819
+ ];
14820
+ } else {
14821
+ if (ee(u))
14822
+ return [
14823
+ "div",
14824
+ {},
14825
+ ["span", t, C2(u) ? "ShallowReactive" : "Reactive"],
14826
+ "<",
14827
+ i(u),
14828
+ `>${P2(u) ? " (readonly)" : ""}`
14829
+ ];
14830
+ if (P2(u))
14831
+ return [
14832
+ "div",
14833
+ {},
14834
+ ["span", t, C2(u) ? "ShallowReadonly" : "Readonly"],
14835
+ "<",
14836
+ i(u),
14837
+ ">"
14838
+ ];
14839
+ }
14840
+ return null;
14810
14841
  },
14811
14842
  hasBody(u) {
14812
14843
  return u && u.__isVue;
@@ -14821,12 +14852,12 @@ function In() {
14821
14852
  }
14822
14853
  };
14823
14854
  function o(u) {
14824
- const f = [];
14825
- u.type.props && u.props && f.push(c("props", h(u.props))), u.setupState !== Et && f.push(c("setup", u.setupState)), u.data !== Et && f.push(c("data", h(u.data)));
14826
- const _ = a(u, "computed");
14827
- _ && f.push(c("computed", _));
14828
- const g2 = a(u, "inject");
14829
- return g2 && f.push(c("injected", g2)), f.push([
14855
+ const l2 = [];
14856
+ u.type.props && u.props && l2.push(c("props", h(u.props))), u.setupState !== Nt && l2.push(c("setup", u.setupState)), u.data !== Nt && l2.push(c("data", h(u.data)));
14857
+ const d = f(u, "computed");
14858
+ d && l2.push(c("computed", d));
14859
+ const g2 = f(u, "inject");
14860
+ return g2 && l2.push(c("injected", g2)), l2.push([
14830
14861
  "div",
14831
14862
  {},
14832
14863
  [
@@ -14837,10 +14868,10 @@ function In() {
14837
14868
  "$ (internal): "
14838
14869
  ],
14839
14870
  ["object", { object: u }]
14840
- ]), f;
14871
+ ]), l2;
14841
14872
  }
14842
- function c(u, f) {
14843
- return f = B({}, f), Object.keys(f).length ? [
14873
+ function c(u, l2) {
14874
+ return l2 = B({}, l2), Object.keys(l2).length ? [
14844
14875
  "div",
14845
14876
  { style: "line-height:1.25em;margin-bottom:0.6em" },
14846
14877
  [
@@ -14855,34 +14886,34 @@ function In() {
14855
14886
  {
14856
14887
  style: "padding-left:1.25em"
14857
14888
  },
14858
- ...Object.keys(f).map((_) => [
14889
+ ...Object.keys(l2).map((d) => [
14859
14890
  "div",
14860
14891
  {},
14861
- ["span", s, _ + ": "],
14862
- i(f[_], false)
14892
+ ["span", s, d + ": "],
14893
+ i(l2[d], false)
14863
14894
  ])
14864
14895
  ]
14865
14896
  ] : ["span", {}];
14866
14897
  }
14867
- function i(u, f = true) {
14868
- return typeof u == "number" ? ["span", e, u] : typeof u == "string" ? ["span", n, JSON.stringify(u)] : typeof u == "boolean" ? ["span", s, u] : R(u) ? ["object", { object: f ? h(u) : u }] : ["span", n, String(u)];
14898
+ function i(u, l2 = true) {
14899
+ return typeof u == "number" ? ["span", e, u] : typeof u == "string" ? ["span", n, JSON.stringify(u)] : typeof u == "boolean" ? ["span", s, u] : R(u) ? ["object", { object: l2 ? h(u) : u }] : ["span", n, String(u)];
14869
14900
  }
14870
- function a(u, f) {
14871
- const _ = u.type;
14872
- if ($(_))
14901
+ function f(u, l2) {
14902
+ const d = u.type;
14903
+ if ($(d))
14873
14904
  return;
14874
14905
  const g2 = {};
14875
14906
  for (const b2 in u.ctx)
14876
- d(_, b2, f) && (g2[b2] = u.ctx[b2]);
14907
+ p(d, b2, l2) && (g2[b2] = u.ctx[b2]);
14877
14908
  return g2;
14878
14909
  }
14879
- function d(u, f, _) {
14880
- const g2 = u[_];
14881
- if (y2(g2) && g2.includes(f) || R(g2) && f in g2 || u.extends && d(u.extends, f, _) || u.mixins && u.mixins.some((b2) => d(b2, f, _)))
14910
+ function p(u, l2, d) {
14911
+ const g2 = u[d];
14912
+ if (y2(g2) && g2.includes(l2) || R(g2) && l2 in g2 || u.extends && p(u.extends, l2, d) || u.mixins && u.mixins.some((b2) => p(b2, l2, d)))
14882
14913
  return true;
14883
14914
  }
14884
- function l2(u) {
14885
- return F2(u) ? "ShallowRef" : u.effect ? "ComputedRef" : "Ref";
14915
+ function a(u) {
14916
+ return C2(u) ? "ShallowRef" : u.effect ? "ComputedRef" : "Ref";
14886
14917
  }
14887
14918
  window.devtoolsFormatters ? window.devtoolsFormatters.push(r2) : window.devtoolsFormatters = [r2];
14888
14919
  }
@@ -14894,7 +14925,7 @@ function Mn() {
14894
14925
  }
14895
14926
  process.env.NODE_ENV !== "production" && Mn();
14896
14927
 
14897
- // node_modules/.pnpm/@ddd-tool+domain-designer-g_01515f1f919a13786c6bf13504cc0ffd/node_modules/@ddd-tool/domain-designer-generator/index.js
14928
+ // node_modules/.pnpm/@ddd-tool+domain-designer-g_09ad5c92bf98bddbd3411b9a1b60aa9a/node_modules/@ddd-tool/domain-designer-generator/index.js
14898
14929
  // @__NO_SIDE_EFFECTS__
14899
14930
  function Bn(e) {
14900
14931
  const n = /* @__PURE__ */ Object.create(null);
@@ -14983,20 +15014,15 @@ function Xn(e) {
14983
15014
  return !!e._dirty;
14984
15015
  }
14985
15016
  function hn2(e) {
14986
- if (e.flags & 4 && !(e.flags & 16) || (e.flags &= -17, e.globalVersion === re2))
14987
- return;
14988
- e.globalVersion = re2;
14989
- const n = e.dep;
14990
- if (e.flags |= 2, n.version > 0 && !e.isSSR && e.deps && !Xn(e)) {
14991
- e.flags &= -3;
15017
+ if (e.flags & 4 && !(e.flags & 16) || (e.flags &= -17, e.globalVersion === re2) || (e.globalVersion = re2, !e.isSSR && e.flags & 128 && (!e.deps && !e._dirty || !Xn(e))))
14992
15018
  return;
14993
- }
14994
- const t = A, r2 = R2;
15019
+ e.flags |= 2;
15020
+ const n = e.dep, t = A, r2 = R2;
14995
15021
  A = e, R2 = true;
14996
15022
  try {
14997
15023
  Zn(e);
14998
15024
  const o = e.fn(e._value);
14999
- (n.version === 0 || q(o, e._value)) && (e._value = o, n.version++);
15025
+ (n.version === 0 || q(o, e._value)) && (e.flags |= 128, e._value = o, n.version++);
15000
15026
  } catch (o) {
15001
15027
  throw n.version++, o;
15002
15028
  } finally {
@@ -15117,21 +15143,21 @@ function V2(e, n, t, r2, o, s) {
15117
15143
  re2++;
15118
15144
  return;
15119
15145
  }
15120
- const _ = (C2) => {
15121
- C2 && (process.env.NODE_ENV !== "production" ? C2.trigger({
15146
+ const _ = (C3) => {
15147
+ C3 && (process.env.NODE_ENV !== "production" ? C3.trigger({
15122
15148
  target: e,
15123
15149
  type: n,
15124
15150
  key: t,
15125
15151
  newValue: r2,
15126
15152
  oldValue: o,
15127
15153
  oldTarget: s
15128
- }) : C2.trigger());
15154
+ }) : C3.trigger());
15129
15155
  };
15130
15156
  if (qe(), n === "clear")
15131
15157
  p.forEach(_);
15132
15158
  else {
15133
- const C2 = Y(e), m2 = C2 && Ye(t);
15134
- if (C2 && t === "length") {
15159
+ const C3 = Y(e), m2 = C3 && Ye(t);
15160
+ if (C3 && t === "length") {
15135
15161
  const i = Number(r2);
15136
15162
  p.forEach((a, l2) => {
15137
15163
  (l2 === "length" || l2 === ae2 || !ue(l2) && l2 >= i) && _(a);
@@ -15139,10 +15165,10 @@ function V2(e, n, t, r2, o, s) {
15139
15165
  } else
15140
15166
  switch ((t !== void 0 || p.has(void 0)) && _(p.get(t)), m2 && _(p.get(ae2)), n) {
15141
15167
  case "add":
15142
- C2 ? m2 && _(p.get("length")) : (_(p.get(K2)), te(e) && _(p.get(He)));
15168
+ C3 ? m2 && _(p.get("length")) : (_(p.get(K2)), te(e) && _(p.get(He)));
15143
15169
  break;
15144
15170
  case "delete":
15145
- C2 || (_(p.get(K2)), te(e) && _(p.get(He)));
15171
+ C3 || (_(p.get(K2)), te(e) && _(p.get(He)));
15146
15172
  break;
15147
15173
  case "set":
15148
15174
  te(e) && _(p.get(K2));
@@ -15256,9 +15282,9 @@ function Oe(e, n, t) {
15256
15282
  }
15257
15283
  var rt = Array.prototype;
15258
15284
  function D2(e, n, t, r2, o, s) {
15259
- const p = Xe(e), _ = p !== e && !H(e), C2 = p[n];
15260
- if (C2 !== rt[n]) {
15261
- const a = C2.apply(e, s);
15285
+ const p = Xe(e), _ = p !== e && !H(e), C3 = p[n];
15286
+ if (C3 !== rt[n]) {
15287
+ const a = C3.apply(e, s);
15262
15288
  return _ ? I2(a) : a;
15263
15289
  }
15264
15290
  let m2 = t;
@@ -15267,16 +15293,16 @@ function D2(e, n, t, r2, o, s) {
15267
15293
  } : t.length > 2 && (m2 = function(a, l2) {
15268
15294
  return t.call(this, a, l2, e);
15269
15295
  }));
15270
- const i = C2.call(p, m2, r2);
15296
+ const i = C3.call(p, m2, r2);
15271
15297
  return _ && o ? o(i) : i;
15272
15298
  }
15273
15299
  function cn2(e, n, t, r2) {
15274
15300
  const o = Xe(e);
15275
15301
  let s = t;
15276
- return o !== e && (H(e) ? t.length > 3 && (s = function(p, _, C2) {
15277
- return t.call(this, p, _, C2, e);
15278
- }) : s = function(p, _, C2) {
15279
- return t.call(this, p, I2(_), C2, e);
15302
+ return o !== e && (H(e) ? t.length > 3 && (s = function(p, _, C3) {
15303
+ return t.call(this, p, _, C3, e);
15304
+ }) : s = function(p, _, C3) {
15305
+ return t.call(this, p, I2(_), C3, e);
15280
15306
  }), o[n](s, ...r2);
15281
15307
  }
15282
15308
  function Ie2(e, n, t) {
@@ -15318,9 +15344,9 @@ var $n = class {
15318
15344
  Object.getPrototypeOf(n) === Object.getPrototypeOf(r2) ? n : void 0;
15319
15345
  const p = Y(n);
15320
15346
  if (!o) {
15321
- let C2;
15322
- if (p && (C2 = st2[t]))
15323
- return C2;
15347
+ let C3;
15348
+ if (p && (C3 = st2[t]))
15349
+ return C3;
15324
15350
  if (t === "hasOwnProperty")
15325
15351
  return it;
15326
15352
  }
@@ -15342,9 +15368,9 @@ var ct2 = class extends $n {
15342
15368
  set(n, t, r2, o) {
15343
15369
  let s = n[t];
15344
15370
  if (!this._isShallow) {
15345
- const C2 = ee2(s);
15371
+ const C3 = ee2(s);
15346
15372
  if (!H(r2) && !ee2(r2) && (s = E2(s), r2 = E2(r2)), !Y(n) && Z2(s) && !Z2(r2))
15347
- return C2 ? false : (s.value = r2, true);
15373
+ return C3 ? false : (s.value = r2, true);
15348
15374
  }
15349
15375
  const p = Y(n) && Ye(t) ? Number(t) < n.length : Ve2(n, t), _ = Reflect.set(
15350
15376
  n,
@@ -15389,16 +15415,16 @@ var bn2 = class extends $n {
15389
15415
  };
15390
15416
  var ut2 = /* @__PURE__ */ new ct2();
15391
15417
  var lt2 = /* @__PURE__ */ new bn2();
15392
- var pt = /* @__PURE__ */ new bn2(true);
15418
+ var pt2 = /* @__PURE__ */ new bn2(true);
15393
15419
  var Le = (e) => e;
15394
15420
  var pe2 = (e) => Reflect.getPrototypeOf(e);
15395
15421
  function dt2(e, n, t) {
15396
15422
  return function(...r2) {
15397
- const o = this.__v_raw, s = E2(o), p = te(s), _ = e === "entries" || e === Symbol.iterator && p, C2 = e === "keys" && p, m2 = o[e](...r2), i = t ? Le : n ? Me2 : I2;
15423
+ const o = this.__v_raw, s = E2(o), p = te(s), _ = e === "entries" || e === Symbol.iterator && p, C3 = e === "keys" && p, m2 = o[e](...r2), i = t ? Le : n ? Me2 : I2;
15398
15424
  return !n && k2(
15399
15425
  s,
15400
15426
  "iterate",
15401
- C2 ? He : K2
15427
+ C3 ? He : K2
15402
15428
  ), {
15403
15429
  // iterator protocol
15404
15430
  next() {
@@ -15427,15 +15453,15 @@ function de2(e) {
15427
15453
  return e === "delete" ? false : e === "clear" ? void 0 : this;
15428
15454
  };
15429
15455
  }
15430
- function mt2(e, n) {
15456
+ function mt(e, n) {
15431
15457
  const t = {
15432
15458
  get(o) {
15433
15459
  const s = this.__v_raw, p = E2(s), _ = E2(o);
15434
15460
  e || (q(o, _) && k2(p, "get", o), k2(p, "get", _));
15435
- const { has: C2 } = pe2(p), m2 = n ? Le : e ? Me2 : I2;
15436
- if (C2.call(p, o))
15461
+ const { has: C3 } = pe2(p), m2 = n ? Le : e ? Me2 : I2;
15462
+ if (C3.call(p, o))
15437
15463
  return m2(s.get(o));
15438
- if (C2.call(p, _))
15464
+ if (C3.call(p, _))
15439
15465
  return m2(s.get(_));
15440
15466
  s !== p && s.get(o);
15441
15467
  },
@@ -15448,8 +15474,8 @@ function mt2(e, n) {
15448
15474
  return e || (q(o, _) && k2(p, "has", o), k2(p, "has", _)), o === _ ? s.has(o) : s.has(o) || s.has(_);
15449
15475
  },
15450
15476
  forEach(o, s) {
15451
- const p = this, _ = p.__v_raw, C2 = E2(_), m2 = n ? Le : e ? Me2 : I2;
15452
- return !e && k2(C2, "iterate", K2), _.forEach((i, a) => o.call(s, m2(i), m2(a), p));
15477
+ const p = this, _ = p.__v_raw, C3 = E2(_), m2 = n ? Le : e ? Me2 : I2;
15478
+ return !e && k2(C3, "iterate", K2), _.forEach((i, a) => o.call(s, m2(i), m2(a), p));
15453
15479
  }
15454
15480
  };
15455
15481
  return Fe(
@@ -15467,18 +15493,18 @@ function mt2(e, n) {
15467
15493
  },
15468
15494
  set(o, s) {
15469
15495
  !n && !H(s) && !ee2(s) && (s = E2(s));
15470
- const p = E2(this), { has: _, get: C2 } = pe2(p);
15496
+ const p = E2(this), { has: _, get: C3 } = pe2(p);
15471
15497
  let m2 = _.call(p, o);
15472
15498
  m2 ? process.env.NODE_ENV !== "production" && un2(p, _, o) : (o = E2(o), m2 = _.call(p, o));
15473
- const i = C2.call(p, o);
15499
+ const i = C3.call(p, o);
15474
15500
  return p.set(o, s), m2 ? q(s, i) && V2(p, "set", o, s, i) : V2(p, "add", o, s), this;
15475
15501
  },
15476
15502
  delete(o) {
15477
15503
  const s = E2(this), { has: p, get: _ } = pe2(s);
15478
- let C2 = p.call(s, o);
15479
- C2 ? process.env.NODE_ENV !== "production" && un2(s, p, o) : (o = E2(o), C2 = p.call(s, o));
15504
+ let C3 = p.call(s, o);
15505
+ C3 ? process.env.NODE_ENV !== "production" && un2(s, p, o) : (o = E2(o), C3 = p.call(s, o));
15480
15506
  const m2 = _ ? _.call(s, o) : void 0, i = s.delete(o);
15481
- return C2 && V2(s, "delete", o, void 0, m2), i;
15507
+ return C3 && V2(s, "delete", o, void 0, m2), i;
15482
15508
  },
15483
15509
  clear() {
15484
15510
  const o = E2(this), s = o.size !== 0, p = process.env.NODE_ENV !== "production" ? te(o) ? new Map(o) : new Set(o) : void 0, _ = o.clear();
@@ -15501,7 +15527,7 @@ function mt2(e, n) {
15501
15527
  }), t;
15502
15528
  }
15503
15529
  function en2(e, n) {
15504
- const t = mt2(e, n);
15530
+ const t = mt(e, n);
15505
15531
  return (r2, o, s) => o === "__v_isReactive" ? !e : o === "__v_isReadonly" ? e : o === "__v_raw" ? r2 : Reflect.get(
15506
15532
  Ve2(t, o) && o in r2 ? t : r2,
15507
15533
  o,
@@ -15514,7 +15540,7 @@ var ft2 = {
15514
15540
  var ht = {
15515
15541
  get: /* @__PURE__ */ en2(true, false)
15516
15542
  };
15517
- var vt2 = {
15543
+ var vt = {
15518
15544
  get: /* @__PURE__ */ en2(true, true)
15519
15545
  };
15520
15546
  function un2(e, n, t) {
@@ -15530,7 +15556,7 @@ var wn2 = /* @__PURE__ */ new WeakMap();
15530
15556
  var gt = /* @__PURE__ */ new WeakMap();
15531
15557
  var Nn2 = /* @__PURE__ */ new WeakMap();
15532
15558
  var yn2 = /* @__PURE__ */ new WeakMap();
15533
- function _t(e) {
15559
+ function _t2(e) {
15534
15560
  switch (e) {
15535
15561
  case "Object":
15536
15562
  case "Array":
@@ -15545,7 +15571,7 @@ function _t(e) {
15545
15571
  }
15546
15572
  }
15547
15573
  function Ct2(e) {
15548
- return e.__v_skip || !Object.isExtensible(e) ? 0 : _t(mn2(e));
15574
+ return e.__v_skip || !Object.isExtensible(e) ? 0 : _t2(mn2(e));
15549
15575
  }
15550
15576
  function jn(e) {
15551
15577
  return ee2(e) ? e : nn2(
@@ -15569,8 +15595,8 @@ function fe2(e) {
15569
15595
  return nn2(
15570
15596
  e,
15571
15597
  true,
15572
- pt,
15573
- vt2,
15598
+ pt2,
15599
+ vt,
15574
15600
  yn2
15575
15601
  );
15576
15602
  }
@@ -15583,15 +15609,15 @@ function nn2(e, n, t, r2, o) {
15583
15609
  ), e;
15584
15610
  if (e.__v_raw && !(n && e.__v_isReactive))
15585
15611
  return e;
15586
- const s = o.get(e);
15587
- if (s)
15588
- return s;
15589
- const p = Ct2(e);
15590
- if (p === 0)
15612
+ const s = Ct2(e);
15613
+ if (s === 0)
15591
15614
  return e;
15615
+ const p = o.get(e);
15616
+ if (p)
15617
+ return p;
15592
15618
  const _ = new Proxy(
15593
15619
  e,
15594
- p === 2 ? r2 : t
15620
+ s === 2 ? r2 : t
15595
15621
  );
15596
15622
  return o.set(e, _), _;
15597
15623
  }
@@ -15614,12 +15640,12 @@ function Z2(e) {
15614
15640
  return e ? e.__v_isRef === true : false;
15615
15641
  }
15616
15642
  function ge2(e) {
15617
- return bt2(e, false);
15643
+ return bt(e, false);
15618
15644
  }
15619
- function bt2(e, n) {
15620
- return Z2(e) ? e : new wt(e, n);
15645
+ function bt(e, n) {
15646
+ return Z2(e) ? e : new wt2(e, n);
15621
15647
  }
15622
- var wt = class {
15648
+ var wt2 = class {
15623
15649
  constructor(n, t) {
15624
15650
  this.dep = new Qe(), this.__v_isRef = true, this.__v_isShallow = false, this._rawValue = t ? n : E2(n), this._value = t ? n : I2(n), this.__v_isShallow = t;
15625
15651
  }
@@ -15641,7 +15667,7 @@ var wt = class {
15641
15667
  }) : this.dep.trigger());
15642
15668
  }
15643
15669
  };
15644
- var Nt = class {
15670
+ var Nt2 = class {
15645
15671
  constructor(n, t, r2) {
15646
15672
  this.fn = n, this.setter = t, this._value = void 0, this.dep = new Qe(this), this.__v_isRef = true, this.deps = void 0, this.depsTail = void 0, this.flags = 16, this.globalVersion = re2 - 1, this.next = void 0, this.effect = this, this.__v_isReadonly = !t, this.isSSR = r2;
15647
15673
  }
@@ -15669,7 +15695,7 @@ var Nt = class {
15669
15695
  function Ke(e, n, t = false) {
15670
15696
  let r2, o;
15671
15697
  zn(e) ? r2 = e : (r2 = e.get, o = e.set);
15672
- const s = new Nt(r2, o, t);
15698
+ const s = new Nt2(r2, o, t);
15673
15699
  return process.env.NODE_ENV, s;
15674
15700
  }
15675
15701
  var yt2 = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";
@@ -15699,14 +15725,14 @@ function Et2(e, n = true, t = false) {
15699
15725
  } else
15700
15726
  s.value = true, r2.value = void 0, o = true, p();
15701
15727
  }
15702
- }), C2 = () => {
15728
+ }), C3 = () => {
15703
15729
  }, m2 = new Proxy(
15704
15730
  (i) => {
15705
15731
  r2.value = i;
15706
15732
  },
15707
15733
  {
15708
15734
  apply: function(i, a, l2) {
15709
- i(...l2), C2(...l2);
15735
+ i(...l2), C3(...l2);
15710
15736
  }
15711
15737
  }
15712
15738
  );
@@ -15736,7 +15762,7 @@ function Et2(e, n = true, t = false) {
15736
15762
  function Be() {
15737
15763
  return jt();
15738
15764
  }
15739
- function At2() {
15765
+ function At() {
15740
15766
  const e = {}, n = {}, t = /* @__PURE__ */ new WeakMap(), r2 = {};
15741
15767
  return Object.freeze({
15742
15768
  registerAgg(o) {
@@ -15806,9 +15832,9 @@ function At2() {
15806
15832
  });
15807
15833
  }
15808
15834
  function St(e) {
15809
- return At2();
15835
+ return At();
15810
15836
  }
15811
- function Ot(e) {
15837
+ function Ot2(e) {
15812
15838
  const n = It(e);
15813
15839
  return fe2({
15814
15840
  states: n.states,
@@ -15859,12 +15885,12 @@ function kt(e) {
15859
15885
  }),
15860
15886
  0
15861
15887
  );
15862
- const C2 = _.states || {}, m2 = _.commands || {}, i = _.events || {};
15888
+ const C3 = _.states || {}, m2 = _.commands || {}, i = _.events || {};
15863
15889
  return {
15864
15890
  __id: Be(),
15865
15891
  type: "Singleton",
15866
- api: Ot({
15867
- states: C2,
15892
+ api: Ot2({
15893
+ states: C3,
15868
15894
  commands: m2,
15869
15895
  events: i,
15870
15896
  destroy: () => {
@@ -15880,10 +15906,10 @@ Stack : ${a.stack || "unkown"}`);
15880
15906
  };
15881
15907
  }
15882
15908
  var me;
15883
- function xt(e) {
15909
+ function xt2(e) {
15884
15910
  return kt(() => {
15885
15911
  const n = ge2(e), t = ge2({});
15886
- let r2 = () => [], o = () => [], s = () => [], p = () => [], _ = () => [], C2 = () => [], m2 = () => [];
15912
+ let r2 = () => [], o = () => [], s = () => [], p = () => [], _ = () => [], C3 = () => [], m2 = () => [];
15887
15913
  return {
15888
15914
  states: {
15889
15915
  designer: n,
@@ -15932,10 +15958,10 @@ function xt(e) {
15932
15958
  _ = i;
15933
15959
  },
15934
15960
  _genReadModelCode(...i) {
15935
- return C2(...i);
15961
+ return C3(...i);
15936
15962
  },
15937
15963
  _setReadModelCodeProvider(i) {
15938
- C2 = i;
15964
+ C3 = i;
15939
15965
  },
15940
15966
  _setCodeFileProvider(i) {
15941
15967
  m2 = i;
@@ -15949,26 +15975,26 @@ function Ao(e) {
15949
15975
  if (!me) {
15950
15976
  if (!e)
15951
15977
  throw new Error("designer is required");
15952
- me = xt(e), le2.registerAgg(me);
15978
+ me = xt2(e), le2.registerAgg(me);
15953
15979
  }
15954
15980
  return me.api;
15955
15981
  }
15956
15982
  function Ee(e) {
15957
15983
  return e && e._attributes && e._attributes.rule === "Info";
15958
15984
  }
15959
- function Tt2(e) {
15985
+ function Tt(e) {
15960
15986
  return e && e._attributes && e._attributes.rule === "Agg";
15961
15987
  }
15962
- function Dt(e) {
15988
+ function Dt2(e) {
15963
15989
  return e && e._attributes && e._attributes.rule === "Command";
15964
15990
  }
15965
15991
  function Pt2(e) {
15966
15992
  return e && e._attributes && e._attributes.rule === "FacadeCommand";
15967
15993
  }
15968
- function Ft2(e) {
15994
+ function Ft(e) {
15969
15995
  return e && e._attributes && e._attributes.rule === "Event";
15970
15996
  }
15971
- function Vt2(e) {
15997
+ function Vt(e) {
15972
15998
  return e && e._attributes && e._attributes.rule === "ReadModel";
15973
15999
  }
15974
16000
  var Ue = process.env.NODE_ENV !== "production" ? Object.freeze({}) : {};
@@ -16177,12 +16203,12 @@ function On2(e, n, t, r2 = true) {
16177
16203
  const o = n ? n.vnode : null, { errorHandler: s, throwUnhandledErrorInProduction: p } = n && n.appContext.config || Ue;
16178
16204
  if (n) {
16179
16205
  let _ = n.parent;
16180
- const C2 = n.proxy, m2 = process.env.NODE_ENV !== "production" ? Sn2[t] : `https://vuejs.org/error-reference/#runtime-${t}`;
16206
+ const C3 = n.proxy, m2 = process.env.NODE_ENV !== "production" ? Sn2[t] : `https://vuejs.org/error-reference/#runtime-${t}`;
16181
16207
  for (; _; ) {
16182
16208
  const i = _.ec;
16183
16209
  if (i) {
16184
16210
  for (let a = 0; a < i.length; a++)
16185
- if (i[a](e, C2, m2) === false)
16211
+ if (i[a](e, C3, m2) === false)
16186
16212
  return;
16187
16213
  }
16188
16214
  _ = _.parent;
@@ -16190,7 +16216,7 @@ function On2(e, n, t, r2 = true) {
16190
16216
  if (s) {
16191
16217
  rn2(s, null, 10, [
16192
16218
  e,
16193
- C2,
16219
+ C3,
16194
16220
  m2
16195
16221
  ]);
16196
16222
  return;
@@ -16209,7 +16235,7 @@ function Zt(e, n, t, r2 = true, o = false) {
16209
16235
  var x2 = [];
16210
16236
  var P3 = -1;
16211
16237
  var Q2 = [];
16212
- var F3 = null;
16238
+ var F2 = null;
16213
16239
  var W2 = 0;
16214
16240
  var Qt = /* @__PURE__ */ Promise.resolve();
16215
16241
  var Je = null;
@@ -16233,22 +16259,22 @@ function In2() {
16233
16259
  Je || (Je = Qt.then(kn));
16234
16260
  }
16235
16261
  function to(e) {
16236
- T(e) ? Q2.push(...e) : F3 && e.id === -1 ? F3.splice(W2 + 1, 0, e) : e.flags & 1 || (Q2.push(e), e.flags |= 1), In2();
16262
+ T(e) ? Q2.push(...e) : F2 && e.id === -1 ? F2.splice(W2 + 1, 0, e) : e.flags & 1 || (Q2.push(e), e.flags |= 1), In2();
16237
16263
  }
16238
16264
  function oo(e) {
16239
16265
  if (Q2.length) {
16240
16266
  const n = [...new Set(Q2)].sort(
16241
16267
  (t, r2) => ce2(t) - ce2(r2)
16242
16268
  );
16243
- if (Q2.length = 0, F3) {
16244
- F3.push(...n);
16269
+ if (Q2.length = 0, F2) {
16270
+ F2.push(...n);
16245
16271
  return;
16246
16272
  }
16247
- for (F3 = n, process.env.NODE_ENV !== "production" && (e = e || /* @__PURE__ */ new Map()), W2 = 0; W2 < F3.length; W2++) {
16248
- const t = F3[W2];
16273
+ for (F2 = n, process.env.NODE_ENV !== "production" && (e = e || /* @__PURE__ */ new Map()), W2 = 0; W2 < F2.length; W2++) {
16274
+ const t = F2[W2];
16249
16275
  process.env.NODE_ENV !== "production" && xn2(e, t) || (t.flags & 4 && (t.flags &= -2), t.flags & 8 || t(), t.flags &= -2);
16250
16276
  }
16251
- F3 = null, W2 = 0;
16277
+ F2 = null, W2 = 0;
16252
16278
  }
16253
16279
  }
16254
16280
  var ce2 = (e) => e.id == null ? e.flags & 2 ? -1 : 1 / 0 : e.id;
@@ -16368,7 +16394,7 @@ var he2 = ({
16368
16394
  ref_for: t
16369
16395
  }) => (typeof e == "number" && (e = "" + e), e != null ? L2(e) || sn2(e) || G(e) ? { i: $e2, r: e, k: n, f: !!t } : e : null);
16370
16396
  function go(e, n = null, t = null, r2 = 0, o = null, s = e === Pn ? 0 : 1, p = false, _ = false) {
16371
- const C2 = {
16397
+ const C3 = {
16372
16398
  __v_isVNode: true,
16373
16399
  __v_skip: true,
16374
16400
  type: e,
@@ -16397,7 +16423,7 @@ function go(e, n = null, t = null, r2 = 0, o = null, s = e === Pn ? 0 : 1, p = f
16397
16423
  appContext: null,
16398
16424
  ctx: $e2
16399
16425
  };
16400
- return _ ? (an2(C2, t), s & 128 && e.normalize(C2)) : t && (C2.shapeFlag |= L2(t) ? 8 : 16), process.env.NODE_ENV !== "production" && C2.key !== C2.key && ie2("VNode created with invalid key (NaN). VNode type:", C2.type), C2;
16426
+ return _ ? (an2(C3, t), s & 128 && e.normalize(C3)) : t && (C3.shapeFlag |= L2(t) ? 8 : 16), process.env.NODE_ENV !== "production" && C3.key !== C3.key && ie2("VNode created with invalid key (NaN). VNode type:", C3.type), C3;
16401
16427
  }
16402
16428
  var _o = process.env.NODE_ENV !== "production" ? vo : Vn2;
16403
16429
  function Vn2(e, n = null, t = null, r2 = 0, o = null, s = false) {
@@ -16412,8 +16438,8 @@ function Vn2(e, n = null, t = null, r2 = 0, o = null, s = false) {
16412
16438
  }
16413
16439
  if (Mn2(e) && (e = e.__vccOpts), n) {
16414
16440
  n = Co(n);
16415
- let { class: _, style: C2 } = n;
16416
- _ && !L2(_) && (n.class = on2(_)), B2(C2) && (Ge(C2) && !T(C2) && (C2 = Ae2({}, C2)), n.style = tn2(C2));
16441
+ let { class: _, style: C3 } = n;
16442
+ _ && !L2(_) && (n.class = on2(_)), B2(C3) && (Ge(C3) && !T(C3) && (C3 = Ae2({}, C3)), n.style = tn2(C3));
16417
16443
  }
16418
16444
  const p = L2(e) ? 1 : po(e) ? 128 : co(e) ? 64 : B2(e) ? 4 : G(e) ? 2 : 0;
16419
16445
  return process.env.NODE_ENV !== "production" && p & 4 && Ge(e) && (e = U(e), ie2(
@@ -16436,7 +16462,7 @@ function Co(e) {
16436
16462
  return e ? Ge(e) || Dn2(e) ? Ae2({}, e) : e : null;
16437
16463
  }
16438
16464
  function be2(e, n, t = false, r2 = false) {
16439
- const { props: o, ref: s, patchFlag: p, children: _, transition: C2 } = e, m2 = n ? bo(o || {}, n) : o, i = {
16465
+ const { props: o, ref: s, patchFlag: p, children: _, transition: C3 } = e, m2 = n ? bo(o || {}, n) : o, i = {
16440
16466
  __v_isVNode: true,
16441
16467
  __v_skip: true,
16442
16468
  type: e.type,
@@ -16465,7 +16491,7 @@ function be2(e, n, t = false, r2 = false) {
16465
16491
  dynamicChildren: e.dynamicChildren,
16466
16492
  appContext: e.appContext,
16467
16493
  dirs: e.dirs,
16468
- transition: C2,
16494
+ transition: C3,
16469
16495
  // These should technically only be non-null on mounted VNodes. However,
16470
16496
  // they *should* be copied for kept-alive vnodes. So we just always copy
16471
16497
  // them since them being non-null during a mount doesn't affect the logic as
@@ -16479,9 +16505,9 @@ function be2(e, n, t = false, r2 = false) {
16479
16505
  ctx: e.ctx,
16480
16506
  ce: e.ce
16481
16507
  };
16482
- return C2 && r2 && Tn2(
16508
+ return C3 && r2 && Tn2(
16483
16509
  i,
16484
- C2.clone(i)
16510
+ C3.clone(i)
16485
16511
  ), i;
16486
16512
  }
16487
16513
  function Rn2(e) {
@@ -16572,29 +16598,41 @@ function yo() {
16572
16598
  const e = { style: "color:#3ba776" }, n = { style: "color:#1677ff" }, t = { style: "color:#f5222d" }, r2 = { style: "color:#eb2f96" }, o = {
16573
16599
  __vue_custom_formatter: true,
16574
16600
  header(a) {
16575
- return B2(a) ? a.__isVue ? ["div", e, "VueInstance"] : sn2(a) ? [
16576
- "div",
16577
- {},
16578
- ["span", e, i(a)],
16579
- "<",
16580
- // avoid debugger accessing value affecting behavior
16581
- _("_value" in a ? a._value : a),
16582
- ">"
16583
- ] : En2(a) ? [
16584
- "div",
16585
- {},
16586
- ["span", e, ke(a) ? "ShallowReactive" : "Reactive"],
16587
- "<",
16588
- _(a),
16589
- `>${ze(a) ? " (readonly)" : ""}`
16590
- ] : ze(a) ? [
16591
- "div",
16592
- {},
16593
- ["span", e, ke(a) ? "ShallowReadonly" : "Readonly"],
16594
- "<",
16595
- _(a),
16596
- ">"
16597
- ] : null : null;
16601
+ if (!B2(a))
16602
+ return null;
16603
+ if (a.__isVue)
16604
+ return ["div", e, "VueInstance"];
16605
+ if (sn2(a)) {
16606
+ const l2 = a.value;
16607
+ return [
16608
+ "div",
16609
+ {},
16610
+ ["span", e, i(a)],
16611
+ "<",
16612
+ _(l2),
16613
+ ">"
16614
+ ];
16615
+ } else {
16616
+ if (En2(a))
16617
+ return [
16618
+ "div",
16619
+ {},
16620
+ ["span", e, ke(a) ? "ShallowReactive" : "Reactive"],
16621
+ "<",
16622
+ _(a),
16623
+ `>${ze(a) ? " (readonly)" : ""}`
16624
+ ];
16625
+ if (ze(a))
16626
+ return [
16627
+ "div",
16628
+ {},
16629
+ ["span", e, ke(a) ? "ShallowReadonly" : "Readonly"],
16630
+ "<",
16631
+ _(a),
16632
+ ">"
16633
+ ];
16634
+ }
16635
+ return null;
16598
16636
  },
16599
16637
  hasBody(a) {
16600
16638
  return a && a.__isVue;
@@ -16611,9 +16649,9 @@ function yo() {
16611
16649
  function s(a) {
16612
16650
  const l2 = [];
16613
16651
  a.type.props && a.props && l2.push(p("props", U(a.props))), a.setupState !== Ue && l2.push(p("setup", a.setupState)), a.data !== Ue && l2.push(p("data", U(a.data)));
16614
- const f = C2(a, "computed");
16652
+ const f = C3(a, "computed");
16615
16653
  f && l2.push(p("computed", f));
16616
- const b2 = C2(a, "inject");
16654
+ const b2 = C3(a, "inject");
16617
16655
  return b2 && l2.push(p("injected", b2)), l2.push([
16618
16656
  "div",
16619
16657
  {},
@@ -16655,7 +16693,7 @@ function yo() {
16655
16693
  function _(a, l2 = true) {
16656
16694
  return typeof a == "number" ? ["span", n, a] : typeof a == "string" ? ["span", t, JSON.stringify(a)] : typeof a == "boolean" ? ["span", r2, a] : B2(a) ? ["object", { object: l2 ? U(a) : a }] : ["span", t, String(a)];
16657
16695
  }
16658
- function C2(a, l2) {
16696
+ function C3(a, l2) {
16659
16697
  const f = a.type;
16660
16698
  if (G(f))
16661
16699
  return;
@@ -16682,7 +16720,7 @@ function jo() {
16682
16720
  }
16683
16721
  process.env.NODE_ENV !== "production" && jo();
16684
16722
  function Eo(e) {
16685
- return Dt(e) || Pt2(e) || Tt2(e) || Ft2(e) || Vt2(e);
16723
+ return Dt2(e) || Pt2(e) || Tt(e) || Ft(e) || Vt(e);
16686
16724
  }
16687
16725
  var Kn = /* @__PURE__ */ ((e) => (e.Java = "java", e.Kotlin = "kotlin", e.CSharp = "csharp", e.Go = "go", e))(Kn || {});
16688
16726
  var S2 = class {
@@ -16801,10 +16839,10 @@ var N2;
16801
16839
  return m2.trim().charAt(0).toLowerCase() + m2.slice(1);
16802
16840
  }
16803
16841
  e.lowerFirst = _;
16804
- function C2(m2) {
16842
+ function C3(m2) {
16805
16843
  return m2.trim().charAt(0).toUpperCase() + m2.slice(1);
16806
16844
  }
16807
- e.upperFirst = C2;
16845
+ e.upperFirst = C3;
16808
16846
  })(N2 || (N2 = {}));
16809
16847
  var j3 = we.JavaGeneratorAddition;
16810
16848
  var Oo = le2.createHotSwapPlugin(() => {
@@ -16821,7 +16859,7 @@ var Oo = le2.createHotSwapPlugin(() => {
16821
16859
  function _(a) {
16822
16860
  return !p.includes(N2.stringToLowerCamel(a._attributes.name));
16823
16861
  }
16824
- function C2(a, l2) {
16862
+ function C3(a, l2) {
16825
16863
  if (_(l2)) {
16826
16864
  const f = r2(l2);
16827
16865
  return a.add(`${s.value.namespace}.${s.value.moduleName}.${e}.${f}`), f;
@@ -16877,7 +16915,7 @@ var Oo = le2.createHotSwapPlugin(() => {
16877
16915
  const c = r2(w2);
16878
16916
  d.push(
16879
16917
  ` @${b2}
16880
- ${C2(
16918
+ ${C3(
16881
16919
  g2,
16882
16920
  w2
16883
16921
  )} ${N2.lowerFirst(c)}`
@@ -16890,7 +16928,7 @@ var Oo = le2.createHotSwapPlugin(() => {
16890
16928
  for (const d of v) {
16891
16929
  const w2 = r2(d);
16892
16930
  $2.push(` @${b2}`), $2.push(
16893
- ` private final ${C2(g2, d)} ${N2.lowerFirst(w2)};`
16931
+ ` private final ${C3(g2, d)} ${N2.lowerFirst(w2)};`
16894
16932
  );
16895
16933
  }
16896
16934
  $2.push("}");
@@ -16899,7 +16937,7 @@ var Oo = le2.createHotSwapPlugin(() => {
16899
16937
  for (const c of v) {
16900
16938
  const h2 = r2(c);
16901
16939
  $2.push(` @${b2}`), $2.push(
16902
- ` private final ${C2(g2, c)} ${N2.lowerFirst(h2)};`
16940
+ ` private final ${C3(g2, c)} ${N2.lowerFirst(h2)};`
16903
16941
  );
16904
16942
  }
16905
16943
  $2.push("");
@@ -16914,7 +16952,7 @@ var Oo = le2.createHotSwapPlugin(() => {
16914
16952
  `)}`), $2.push(" }");
16915
16953
  for (const c of v) {
16916
16954
  const h2 = r2(c);
16917
- $2.push(""), $2.push(` public ${C2(g2, c)} get${h2} () {`), $2.push(` return this.${N2.lowerFirst(h2)};`), $2.push(" }");
16955
+ $2.push(""), $2.push(` public ${C3(g2, c)} get${h2} () {`), $2.push(` return this.${N2.lowerFirst(h2)};`), $2.push(" }");
16918
16956
  }
16919
16957
  $2.push("}");
16920
16958
  }
@@ -16959,7 +16997,7 @@ var Oo = le2.createHotSwapPlugin(() => {
16959
16997
  const c = r2(w2);
16960
16998
  d.push(
16961
16999
  ` @${b2}
16962
- ${C2(
17000
+ ${C3(
16963
17001
  g2,
16964
17002
  w2
16965
17003
  )} ${N2.lowerFirst(c)}`
@@ -16972,7 +17010,7 @@ var Oo = le2.createHotSwapPlugin(() => {
16972
17010
  for (const d of v) {
16973
17011
  const w2 = r2(d);
16974
17012
  $2.push(` @${b2}`), $2.push(
16975
- ` private final ${C2(g2, d)} ${N2.lowerFirst(w2)};`
17013
+ ` private final ${C3(g2, d)} ${N2.lowerFirst(w2)};`
16976
17014
  );
16977
17015
  }
16978
17016
  $2.push("}");
@@ -16981,7 +17019,7 @@ var Oo = le2.createHotSwapPlugin(() => {
16981
17019
  for (const c of v) {
16982
17020
  const h2 = r2(c);
16983
17021
  $2.push(` @${b2}`), $2.push(
16984
- ` private final ${C2(g2, c)} ${N2.lowerFirst(h2)};`
17022
+ ` private final ${C3(g2, c)} ${N2.lowerFirst(h2)};`
16985
17023
  );
16986
17024
  }
16987
17025
  $2.push("");
@@ -16996,7 +17034,7 @@ var Oo = le2.createHotSwapPlugin(() => {
16996
17034
  `)}`), $2.push(" }");
16997
17035
  for (const c of v) {
16998
17036
  const h2 = r2(c);
16999
- $2.push(""), $2.push(` public ${C2(g2, c)} get${h2} () {`), $2.push(` return this.${N2.lowerFirst(h2)};`), $2.push(" }");
17037
+ $2.push(""), $2.push(` public ${C3(g2, c)} get${h2} () {`), $2.push(` return this.${N2.lowerFirst(h2)};`), $2.push(" }");
17000
17038
  }
17001
17039
  $2.push("}");
17002
17040
  }
@@ -17037,7 +17075,7 @@ var Oo = le2.createHotSwapPlugin(() => {
17037
17075
  d.push(`public interface ${g2} {`);
17038
17076
  for (const c of $2) {
17039
17077
  const h2 = r2(c);
17040
- d.push(` public ${C2(v, c)} get${h2}();`), d.push("");
17078
+ d.push(` public ${C3(v, c)} get${h2}();`), d.push("");
17041
17079
  }
17042
17080
  const w2 = [...f._getContext().getAssociationMap()[a._attributes.__id]].filter((c) => c._attributes.rule === "Command" || c._attributes.rule === "FacadeCommand");
17043
17081
  for (const c of w2) {
@@ -17085,7 +17123,7 @@ var Oo = le2.createHotSwapPlugin(() => {
17085
17123
  )}"))`
17086
17124
  )) : (v.add(
17087
17125
  s.value.jdkVersion === "8" ? "javax.persistence.Column" : "jakarta.persistence.Column"
17088
- ), d.push(` @Column(name = "${N2.camelToLowerSnake(h2)}")`))), d.push(` private ${C2(v, c)} ${N2.lowerFirst(h2)};`);
17126
+ ), d.push(` @Column(name = "${N2.camelToLowerSnake(h2)}")`))), d.push(` private ${C3(v, c)} ${N2.lowerFirst(h2)};`);
17089
17127
  }
17090
17128
  const w2 = [...f._getContext().getAssociationMap()[a._attributes.__id]].filter((c) => c._attributes.rule === "Command" || c._attributes.rule === "FacadeCommand");
17091
17129
  for (const c of w2) {
@@ -17125,7 +17163,7 @@ var Oo = le2.createHotSwapPlugin(() => {
17125
17163
  )}"))`
17126
17164
  )) : (v.add(
17127
17165
  s.value.jdkVersion === "8" ? "javax.persistence.Column" : "jakarta.persistence.Column"
17128
- ), d.push(` @Column(name = "${N2.camelToLowerSnake(O2)}")`))), d.push(` private ${C2(v, y3)} ${N2.lowerFirst(O2)};`);
17166
+ ), d.push(` @Column(name = "${N2.camelToLowerSnake(O2)}")`))), d.push(` private ${C3(v, y3)} ${N2.lowerFirst(O2)};`);
17129
17167
  }
17130
17168
  d.push("");
17131
17169
  const w2 = [], c = [];
@@ -17134,14 +17172,14 @@ var Oo = le2.createHotSwapPlugin(() => {
17134
17172
  break;
17135
17173
  const O2 = r2(y3);
17136
17174
  w2.push(
17137
- `@${b2} ${C2(v, y3)} ${N2.lowerFirst(O2)}`
17175
+ `@${b2} ${C3(v, y3)} ${N2.lowerFirst(O2)}`
17138
17176
  ), c.push(`this.${N2.lowerFirst(O2)} = ${N2.lowerFirst(O2)};`);
17139
17177
  }
17140
17178
  d.push(` public ${g2}Impl(${w2.join(", ")}) {`), d.push(` ${c.join(`
17141
17179
  `)}`), d.push(" }");
17142
17180
  for (const y3 of $2) {
17143
17181
  const O2 = r2(y3);
17144
- d.push(""), d.push(` @${b2}`), d.push(` public ${C2(v, y3)} get${O2}() {`), d.push(` return this.${N2.lowerFirst(O2)};`), d.push(" }");
17182
+ d.push(""), d.push(` @${b2}`), d.push(` public ${C3(v, y3)} get${O2}() {`), d.push(` return this.${N2.lowerFirst(O2)};`), d.push(" }");
17145
17183
  }
17146
17184
  const h2 = [...f._getContext().getAssociationMap()[a._attributes.__id]].filter(
17147
17185
  (y3) => y3._attributes.rule === "Command" || y3._attributes.rule === "FacadeCommand"
@@ -17177,7 +17215,7 @@ var Oo = le2.createHotSwapPlugin(() => {
17177
17215
  const w2 = r2(d);
17178
17216
  v.push(
17179
17217
  ` @${f}
17180
- ${C2(
17218
+ ${C3(
17181
17219
  l2,
17182
17220
  d
17183
17221
  )} ${N2.lowerFirst(w2)}`
@@ -17190,7 +17228,7 @@ var Oo = le2.createHotSwapPlugin(() => {
17190
17228
  for (const v of $2) {
17191
17229
  const d = r2(v);
17192
17230
  u.push(` @${f}`), u.push(
17193
- ` private final ${C2(l2, v)} ${N2.lowerFirst(d)};`
17231
+ ` private final ${C3(l2, v)} ${N2.lowerFirst(d)};`
17194
17232
  );
17195
17233
  }
17196
17234
  u.push("}");
@@ -17335,7 +17373,7 @@ var Io = le2.createHotSwapPlugin(() => ({
17335
17373
  return !r2.includes(N2.stringToLowerCamel(m2._attributes.name));
17336
17374
  }
17337
17375
  function s(m2, i) {
17338
- return o(i) ? N2.stringToUpperCamel(i._attributes.name) : C2(m2, i);
17376
+ return o(i) ? N2.stringToUpperCamel(i._attributes.name) : C3(m2, i);
17339
17377
  }
17340
17378
  function p(m2) {
17341
17379
  return N2.stringToUpperCamel(m2._attributes.name);
@@ -17343,7 +17381,7 @@ var Io = le2.createHotSwapPlugin(() => ({
17343
17381
  function _(m2, i) {
17344
17382
  for (const a of i) {
17345
17383
  if (!o(a)) {
17346
- C2(m2, a);
17384
+ C3(m2, a);
17347
17385
  continue;
17348
17386
  }
17349
17387
  m2.add(
@@ -17351,14 +17389,14 @@ var Io = le2.createHotSwapPlugin(() => ({
17351
17389
  );
17352
17390
  }
17353
17391
  }
17354
- function C2(m2, i) {
17392
+ function C3(m2, i) {
17355
17393
  const a = t.value.additions, l2 = N2.stringToLowerSnake(i._attributes.name).replace(/_/, " ");
17356
17394
  return /\b(time|timestamp|date|deadline|expire)\b/.test(l2) ? a.has(Pe.Timezone) ? (m2.add("java.time.OffsetDateTime"), "OffsetDateTime") : (m2.add("java.time.LocalDateTime"), "LocalDateTime") : /\b(enum|gender|sex|count|amount|num|number|flag|times)\b/.test(l2) ? "Integer" : /\b(price)$/.test(l2) ? (m2.add("java.math.BigDecimal"), "BigDecimal") : /^(if|is)\b/.test(l2) ? "Boolean" : Ee(i) && (i._attributes.type === "Id" || i._attributes.type === "Version") || /\b(id|identifier|ver|version)$/.test(l2) ? "Long" : "String";
17357
17395
  }
17358
17396
  e.commands._setInfoCodeProvider(
17359
17397
  (m2) => {
17360
17398
  const i = /* @__PURE__ */ new Set(), a = p(m2), l2 = t.value.additions, f = [];
17361
- return l2.has(Pe.ValueClass) ? (i.add("kotlin.jvm.JvmInline"), f.push("@JvmInline"), f.push(`value class ${a}(val value: ${C2(i, m2)})`)) : f.push(`data class ${a}(val value: ${C2(i, m2)})`), [
17399
+ return l2.has(Pe.ValueClass) ? (i.add("kotlin.jvm.JvmInline"), f.push("@JvmInline"), f.push(`value class ${a}(val value: ${C3(i, m2)})`)) : f.push(`data class ${a}(val value: ${C3(i, m2)})`), [
17362
17400
  {
17363
17401
  type: "Info",
17364
17402
  imports: i,
@@ -17554,44 +17592,44 @@ var ko = le2.createHotSwapPlugin(() => ({
17554
17592
  e.commands.clearCaches(), e.commands._setCommandCodeProvider(() => []), e.commands._setFacadeCommandCodeProvider(() => []), e.commands._setAggCodeProvider(() => []), e.commands._setEventCodeProvider(() => []), e.commands._setReadModelCodeProvider(() => []), e.commands._setCodeFileProvider(() => []), e.commands.setContext({});
17555
17593
  },
17556
17594
  mount({ api: e }) {
17557
- const n = e.states.context, t = e.states.designer.value._getContext().getDesignerOptions().ignoreValueObjects.map((C2) => N2.stringToLowerCamel(C2));
17558
- function r2(C2) {
17559
- return !t.includes(N2.stringToLowerCamel(C2._attributes.name));
17595
+ const n = e.states.context, t = e.states.designer.value._getContext().getDesignerOptions().ignoreValueObjects.map((C3) => N2.stringToLowerCamel(C3));
17596
+ function r2(C3) {
17597
+ return !t.includes(N2.stringToLowerCamel(C3._attributes.name));
17560
17598
  }
17561
- function o(C2, m2) {
17562
- return r2(m2) ? N2.stringToUpperCamel(m2._attributes.name) : _(C2, m2);
17599
+ function o(C3, m2) {
17600
+ return r2(m2) ? N2.stringToUpperCamel(m2._attributes.name) : _(C3, m2);
17563
17601
  }
17564
- function s(C2) {
17565
- return N2.stringToUpperCamel(C2._attributes.name);
17602
+ function s(C3) {
17603
+ return N2.stringToUpperCamel(C3._attributes.name);
17566
17604
  }
17567
- function p(C2) {
17568
- return N2.stringToLowerCamel(C2._attributes.name);
17605
+ function p(C3) {
17606
+ return N2.stringToLowerCamel(C3._attributes.name);
17569
17607
  }
17570
- function _(C2, m2) {
17608
+ function _(C3, m2) {
17571
17609
  const i = N2.stringToLowerSnake(m2._attributes.name).replace(/_/, " ");
17572
- return /\b(time|timestamp|date|deadline|expire)\b/.test(i) ? (C2.add("time"), "time.Time") : /\b(enum|gender|sex|count|amount|num|number|flag|times)\b/.test(i) ? "int" : /\b(price)$/.test(i) ? "string" : /^(if|is)\b/.test(i) ? "bool" : Ee(m2) && (m2._attributes.type === "Id" || m2._attributes.type === "Version" || /\b(id|identifier|ver|version)$/.test(i)) ? "int64" : "string";
17610
+ return /\b(time|timestamp|date|deadline|expire)\b/.test(i) ? (C3.add("time"), "time.Time") : /\b(enum|gender|sex|count|amount|num|number|flag|times)\b/.test(i) ? "int" : /\b(price)$/.test(i) ? "string" : /^(if|is)\b/.test(i) ? "bool" : Ee(m2) && (m2._attributes.type === "Id" || m2._attributes.type === "Version" || /\b(id|identifier|ver|version)$/.test(i)) ? "int64" : "string";
17573
17611
  }
17574
17612
  e.commands._setInfoCodeProvider(
17575
- (C2) => {
17613
+ (C3) => {
17576
17614
  const m2 = /* @__PURE__ */ new Set(), i = [];
17577
- return i.push(`type ${s(C2)} struct {`), i.push(` value ${_(m2, C2)}`), i.push("}"), i.push(""), i.push(
17578
- `func New${s(C2)}(value ${_(
17615
+ return i.push(`type ${s(C3)} struct {`), i.push(` value ${_(m2, C3)}`), i.push("}"), i.push(""), i.push(
17616
+ `func New${s(C3)}(value ${_(
17579
17617
  m2,
17580
- C2
17581
- )}) ${s(C2)} {`
17582
- ), i.push(" // HACK check value"), i.push(` return ${s(C2)}{value}`), i.push("}"), i.push(
17583
- `func (${p(C2)} ${s(C2)}) GetValue() ${_(
17618
+ C3
17619
+ )}) ${s(C3)} {`
17620
+ ), i.push(" // HACK check value"), i.push(` return ${s(C3)}{value}`), i.push("}"), i.push(
17621
+ `func (${p(C3)} ${s(C3)}) GetValue() ${_(
17584
17622
  m2,
17585
- C2
17623
+ C3
17586
17624
  )} {`
17587
- ), i.push(` return ${p(C2)}.value`), i.push("}"), [{ type: "Info", imports: m2, content: i.join(`
17625
+ ), i.push(` return ${p(C3)}.value`), i.push("}"), [{ type: "Info", imports: m2, content: i.join(`
17588
17626
  `) }];
17589
17627
  }
17590
17628
  ), e.commands._setCommandCodeProvider(
17591
- (C2) => {
17592
- const m2 = s(C2), i = p(C2), a = /* @__PURE__ */ new Set(), l2 = [];
17629
+ (C3) => {
17630
+ const m2 = s(C3), i = p(C3), a = /* @__PURE__ */ new Set(), l2 = [];
17593
17631
  l2.push(`type ${m2} struct {`);
17594
- const f = Object.values(C2.inner);
17632
+ const f = Object.values(C3.inner);
17595
17633
  for (const u of f)
17596
17634
  l2.push(` ${p(u)} ${o(a, u)}`);
17597
17635
  l2.push("}");
@@ -17610,8 +17648,8 @@ var ko = le2.createHotSwapPlugin(() => ({
17610
17648
  `) }];
17611
17649
  }
17612
17650
  ), e.commands._setFacadeCommandCodeProvider(
17613
- (C2) => {
17614
- const m2 = s(C2), i = p(C2), a = Object.values(C2.inner), l2 = /* @__PURE__ */ new Set(), f = [];
17651
+ (C3) => {
17652
+ const m2 = s(C3), i = p(C3), a = Object.values(C3.inner), l2 = /* @__PURE__ */ new Set(), f = [];
17615
17653
  f.push(`type ${m2} struct {`);
17616
17654
  for (const u of a)
17617
17655
  f.push(` ${p(u)} ${o(l2, u)}`);
@@ -17636,8 +17674,8 @@ var ko = le2.createHotSwapPlugin(() => ({
17636
17674
  }
17637
17675
  ];
17638
17676
  }
17639
- ), e.commands._setAggCodeProvider((C2) => {
17640
- const m2 = e.states.designer.value, i = s(C2), a = p(C2), l2 = Object.values(C2.inner), f = /* @__PURE__ */ new Set(), b2 = [];
17677
+ ), e.commands._setAggCodeProvider((C3) => {
17678
+ const m2 = e.states.designer.value, i = s(C3), a = p(C3), l2 = Object.values(C3.inner), f = /* @__PURE__ */ new Set(), b2 = [];
17641
17679
  b2.push(`type ${i} struct {`);
17642
17680
  for (const v of l2)
17643
17681
  b2.push(` ${p(v)} ${o(f, v)}`);
@@ -17654,7 +17692,7 @@ var ko = le2.createHotSwapPlugin(() => ({
17654
17692
  g2.push(`${p(v)} ${o(f, v)}`), u.push(p(v));
17655
17693
  b2.push(`func New${i}(${g2.join(", ")}) ${i} {`), b2.push(" // HACK check value"), b2.push(` return ${i}{`), b2.push(` ${u.join(`,
17656
17694
  `)},`), b2.push(" }"), b2.push("}"), b2.push("");
17657
- const $2 = [...m2._getContext().getAssociationMap()[C2._attributes.__id]].filter((v) => v._attributes.rule === "Command" || v._attributes.rule === "FacadeCommand");
17695
+ const $2 = [...m2._getContext().getAssociationMap()[C3._attributes.__id]].filter((v) => v._attributes.rule === "Command" || v._attributes.rule === "FacadeCommand");
17658
17696
  for (const v of $2) {
17659
17697
  const d = s(v), w2 = p(v);
17660
17698
  b2.push(`func (${a} ${i}) Handle${d} (${w2} ${d}) {`), b2.push(" // HACK implement"), b2.push("}");
@@ -17668,8 +17706,8 @@ var ko = le2.createHotSwapPlugin(() => ({
17668
17706
  }
17669
17707
  ];
17670
17708
  }), e.commands._setEventCodeProvider(
17671
- (C2) => {
17672
- const m2 = [], i = /* @__PURE__ */ new Set(), a = Object.values(C2.inner), l2 = s(C2), f = p(C2);
17709
+ (C3) => {
17710
+ const m2 = [], i = /* @__PURE__ */ new Set(), a = Object.values(C3.inner), l2 = s(C3), f = p(C3);
17673
17711
  m2.push(`type ${l2} struct {`);
17674
17712
  for (const u of a)
17675
17713
  m2.push(` ${p(u)} ${o(i, u)}`);
@@ -17695,7 +17733,7 @@ var ko = le2.createHotSwapPlugin(() => ({
17695
17733
  ];
17696
17734
  }
17697
17735
  ), e.commands._setCodeFileProvider(() => {
17698
- const C2 = [], m2 = {}, i = [...n.value.namespace.split(/\./), n.value.moduleName], a = new S2(i, `${n.value.moduleName}.go`), l2 = [], f = new S2(i, `${n.value.moduleName}_value_object.go`), b2 = [];
17736
+ const C3 = [], m2 = {}, i = [...n.value.namespace.split(/\./), n.value.moduleName], a = new S2(i, `${n.value.moduleName}.go`), l2 = [], f = new S2(i, `${n.value.moduleName}_value_object.go`), b2 = [];
17699
17737
  function g2(w2) {
17700
17738
  for (const c of Object.values(w2)) {
17701
17739
  if (!r2(c))
@@ -17739,7 +17777,7 @@ var ko = le2.createHotSwapPlugin(() => ({
17739
17777
  `)}`), a.appendContentln(")")), a.appendContentln(l2.join(`
17740
17778
  `)), f.appendContentln(`package ${n.value.moduleName}`), f.appendContentln(""), f.getImports().length > 0 && (f.appendContentln("import ("), f.appendContentln(` ${[...f.getImports()].map((w2) => `"${w2}"`).join(`
17741
17779
  `)}`), f.appendContentln(")"), f.appendContentln("")), f.appendContentln(b2.join(`
17742
- `)), C2.push(a), C2.push(f), C2;
17780
+ `)), C3.push(a), C3.push(f), C3;
17743
17781
  });
17744
17782
  }
17745
17783
  }));
@@ -17766,7 +17804,7 @@ var xo = le2.createHotSwapPlugin(() => {
17766
17804
  function _(i) {
17767
17805
  return N2.stringToUpperCamel(i._attributes.name);
17768
17806
  }
17769
- function C2(i) {
17807
+ function C3(i) {
17770
17808
  return i.has(M3.RecordStruct) ? " struct" : "";
17771
17809
  }
17772
17810
  function m2(i, a) {
@@ -17777,7 +17815,7 @@ var xo = le2.createHotSwapPlugin(() => {
17777
17815
  (i) => {
17778
17816
  const a = r2.value.additions, l2 = /* @__PURE__ */ new Set(), f = [];
17779
17817
  return f.push(
17780
- `public record${C2(a)} ${_(i)}(${m2(
17818
+ `public record${C3(a)} ${_(i)}(${m2(
17781
17819
  l2,
17782
17820
  i
17783
17821
  )} value);`
@@ -17795,7 +17833,7 @@ var xo = le2.createHotSwapPlugin(() => {
17795
17833
  const a = [], l2 = r2.value.additions, f = /* @__PURE__ */ new Set(), b2 = _(i);
17796
17834
  {
17797
17835
  const g2 = [], u = Object.values(i.inner);
17798
- g2.push(`public record${C2(l2)} ${b2}`), g2.push("(");
17836
+ g2.push(`public record${C3(l2)} ${b2}`), g2.push("(");
17799
17837
  const $2 = [];
17800
17838
  for (const v of u) {
17801
17839
  const d = _(v);
@@ -17825,7 +17863,7 @@ var xo = le2.createHotSwapPlugin(() => {
17825
17863
  const a = [], l2 = r2.value.additions, f = /* @__PURE__ */ new Set(), b2 = _(i);
17826
17864
  {
17827
17865
  const g2 = [], u = Object.values(i.inner);
17828
- g2.push(`public record${C2(l2)} ${b2}`), g2.push("(");
17866
+ g2.push(`public record${C3(l2)} ${b2}`), g2.push("(");
17829
17867
  const $2 = [];
17830
17868
  for (const v of u) {
17831
17869
  const d = _(v);
@@ -17938,7 +17976,7 @@ var xo = le2.createHotSwapPlugin(() => {
17938
17976
  ), t.commands._setEventCodeProvider(
17939
17977
  (i) => {
17940
17978
  const a = r2.value.additions, l2 = _(i), f = /* @__PURE__ */ new Set(), b2 = Object.values(i.inner), g2 = [];
17941
- g2.push(`public record${C2(a)} ${l2}`), g2.push("(");
17979
+ g2.push(`public record${C3(a)} ${l2}`), g2.push("(");
17942
17980
  const u = [];
17943
17981
  for (const $2 of b2) {
17944
17982
  const v = _($2);
@@ -18608,7 +18646,7 @@ async function start() {
18608
18646
 
18609
18647
  @vue/shared/dist/shared.cjs.prod.js:
18610
18648
  (**
18611
- * @vue/shared v3.5.13
18649
+ * @vue/shared v3.5.14
18612
18650
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
18613
18651
  * @license MIT
18614
18652
  **)
@@ -18616,7 +18654,7 @@ async function start() {
18616
18654
 
18617
18655
  @vue/shared/dist/shared.cjs.js:
18618
18656
  (**
18619
- * @vue/shared v3.5.13
18657
+ * @vue/shared v3.5.14
18620
18658
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
18621
18659
  * @license MIT
18622
18660
  **)
@@ -18624,21 +18662,21 @@ async function start() {
18624
18662
 
18625
18663
  @vue/reactivity/dist/reactivity.cjs.prod.js:
18626
18664
  (**
18627
- * @vue/reactivity v3.5.13
18665
+ * @vue/reactivity v3.5.14
18628
18666
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
18629
18667
  * @license MIT
18630
18668
  **)
18631
18669
 
18632
18670
  @vue/reactivity/dist/reactivity.cjs.js:
18633
18671
  (**
18634
- * @vue/reactivity v3.5.13
18672
+ * @vue/reactivity v3.5.14
18635
18673
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
18636
18674
  * @license MIT
18637
18675
  **)
18638
18676
 
18639
18677
  @ddd-tool/domain-designer-core/index.js:
18640
18678
  (**
18641
- * @vue/shared v3.5.13
18679
+ * @vue/shared v3.5.15
18642
18680
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
18643
18681
  * @license MIT
18644
18682
  **)
@@ -18646,44 +18684,44 @@ async function start() {
18646
18684
 
18647
18685
  @ddd-tool/domain-designer-core/index.js:
18648
18686
  (**
18649
- * @vue/reactivity v3.5.13
18687
+ * @vue/reactivity v3.5.15
18650
18688
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
18651
18689
  * @license MIT
18652
18690
  **)
18653
18691
 
18654
18692
  @ddd-tool/domain-designer-core/index.js:
18655
18693
  (**
18656
- * @vue/runtime-core v3.5.13
18694
+ * @vue/runtime-core v3.5.15
18657
18695
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
18658
18696
  * @license MIT
18659
18697
  **)
18660
18698
 
18661
18699
  @ddd-tool/domain-designer-core/index.js:
18662
18700
  (**
18663
- * vue v3.5.13
18701
+ * vue v3.5.15
18664
18702
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
18665
18703
  * @license MIT
18666
18704
  **)
18667
18705
 
18668
18706
  @ddd-tool/domain-designer-generator/index.js:
18669
18707
  (**
18670
- * @vue/shared v3.5.13
18708
+ * @vue/shared v3.5.14
18671
18709
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
18672
18710
  * @license MIT
18673
18711
  **)
18674
18712
  (*! #__NO_SIDE_EFFECTS__ *)
18675
18713
  (**
18676
- * @vue/reactivity v3.5.13
18714
+ * @vue/reactivity v3.5.14
18677
18715
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
18678
18716
  * @license MIT
18679
18717
  **)
18680
18718
  (**
18681
- * @vue/runtime-core v3.5.13
18719
+ * @vue/runtime-core v3.5.15
18682
18720
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
18683
18721
  * @license MIT
18684
18722
  **)
18685
18723
  (**
18686
- * vue v3.5.13
18724
+ * vue v3.5.15
18687
18725
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
18688
18726
  * @license MIT
18689
18727
  **)