@takeshape/cli 11.80.2 → 11.82.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +465 -426
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -189995,363 +189995,6 @@ var require_gte2 = __commonJS({
|
|
|
189995
189995
|
}
|
|
189996
189996
|
});
|
|
189997
189997
|
|
|
189998
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePick.js
|
|
189999
|
-
var require_basePick = __commonJS({
|
|
190000
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePick.js"(exports2, module2) {
|
|
190001
|
-
var basePickBy = require_basePickBy();
|
|
190002
|
-
var hasIn = require_hasIn();
|
|
190003
|
-
function basePick(object, paths) {
|
|
190004
|
-
return basePickBy(object, paths, function(value2, path16) {
|
|
190005
|
-
return hasIn(object, path16);
|
|
190006
|
-
});
|
|
190007
|
-
}
|
|
190008
|
-
module2.exports = basePick;
|
|
190009
|
-
}
|
|
190010
|
-
});
|
|
190011
|
-
|
|
190012
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/pick.js
|
|
190013
|
-
var require_pick = __commonJS({
|
|
190014
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/pick.js"(exports2, module2) {
|
|
190015
|
-
var basePick = require_basePick();
|
|
190016
|
-
var flatRest = require_flatRest();
|
|
190017
|
-
var pick6 = flatRest(function(object, paths) {
|
|
190018
|
-
return object == null ? {} : basePick(object, paths);
|
|
190019
|
-
});
|
|
190020
|
-
module2.exports = pick6;
|
|
190021
|
-
}
|
|
190022
|
-
});
|
|
190023
|
-
|
|
190024
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/assign.js
|
|
190025
|
-
var require_assign2 = __commonJS({
|
|
190026
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/assign.js"(exports2, module2) {
|
|
190027
|
-
var convert = require_convert();
|
|
190028
|
-
var func = convert("assign", require_assign());
|
|
190029
|
-
func.placeholder = require_placeholder();
|
|
190030
|
-
module2.exports = func;
|
|
190031
|
-
}
|
|
190032
|
-
});
|
|
190033
|
-
|
|
190034
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/omit.js
|
|
190035
|
-
var require_omit2 = __commonJS({
|
|
190036
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/omit.js"(exports2, module2) {
|
|
190037
|
-
var convert = require_convert();
|
|
190038
|
-
var func = convert("omit", require_omit());
|
|
190039
|
-
func.placeholder = require_placeholder();
|
|
190040
|
-
module2.exports = func;
|
|
190041
|
-
}
|
|
190042
|
-
});
|
|
190043
|
-
|
|
190044
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseHas.js
|
|
190045
|
-
var require_baseHas = __commonJS({
|
|
190046
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseHas.js"(exports2, module2) {
|
|
190047
|
-
var objectProto = Object.prototype;
|
|
190048
|
-
var hasOwnProperty3 = objectProto.hasOwnProperty;
|
|
190049
|
-
function baseHas(object, key) {
|
|
190050
|
-
return object != null && hasOwnProperty3.call(object, key);
|
|
190051
|
-
}
|
|
190052
|
-
module2.exports = baseHas;
|
|
190053
|
-
}
|
|
190054
|
-
});
|
|
190055
|
-
|
|
190056
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/has.js
|
|
190057
|
-
var require_has = __commonJS({
|
|
190058
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/has.js"(exports2, module2) {
|
|
190059
|
-
var baseHas = require_baseHas();
|
|
190060
|
-
var hasPath = require_hasPath();
|
|
190061
|
-
function has2(object, path16) {
|
|
190062
|
-
return object != null && hasPath(object, path16, baseHas);
|
|
190063
|
-
}
|
|
190064
|
-
module2.exports = has2;
|
|
190065
|
-
}
|
|
190066
|
-
});
|
|
190067
|
-
|
|
190068
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isUndefined.js
|
|
190069
|
-
var require_isUndefined = __commonJS({
|
|
190070
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isUndefined.js"(exports2, module2) {
|
|
190071
|
-
function isUndefined4(value2) {
|
|
190072
|
-
return value2 === void 0;
|
|
190073
|
-
}
|
|
190074
|
-
module2.exports = isUndefined4;
|
|
190075
|
-
}
|
|
190076
|
-
});
|
|
190077
|
-
|
|
190078
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/unset.js
|
|
190079
|
-
var require_unset = __commonJS({
|
|
190080
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/unset.js"(exports2, module2) {
|
|
190081
|
-
var baseUnset = require_baseUnset();
|
|
190082
|
-
function unset7(object, path16) {
|
|
190083
|
-
return object == null ? true : baseUnset(object, path16);
|
|
190084
|
-
}
|
|
190085
|
-
module2.exports = unset7;
|
|
190086
|
-
}
|
|
190087
|
-
});
|
|
190088
|
-
|
|
190089
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSortBy.js
|
|
190090
|
-
var require_baseSortBy = __commonJS({
|
|
190091
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSortBy.js"(exports2, module2) {
|
|
190092
|
-
function baseSortBy(array, comparer) {
|
|
190093
|
-
var length = array.length;
|
|
190094
|
-
array.sort(comparer);
|
|
190095
|
-
while (length--) {
|
|
190096
|
-
array[length] = array[length].value;
|
|
190097
|
-
}
|
|
190098
|
-
return array;
|
|
190099
|
-
}
|
|
190100
|
-
module2.exports = baseSortBy;
|
|
190101
|
-
}
|
|
190102
|
-
});
|
|
190103
|
-
|
|
190104
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_compareAscending.js
|
|
190105
|
-
var require_compareAscending = __commonJS({
|
|
190106
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_compareAscending.js"(exports2, module2) {
|
|
190107
|
-
var isSymbol = require_isSymbol();
|
|
190108
|
-
function compareAscending(value2, other) {
|
|
190109
|
-
if (value2 !== other) {
|
|
190110
|
-
var valIsDefined = value2 !== void 0, valIsNull = value2 === null, valIsReflexive = value2 === value2, valIsSymbol = isSymbol(value2);
|
|
190111
|
-
var othIsDefined = other !== void 0, othIsNull = other === null, othIsReflexive = other === other, othIsSymbol = isSymbol(other);
|
|
190112
|
-
if (!othIsNull && !othIsSymbol && !valIsSymbol && value2 > other || valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol || valIsNull && othIsDefined && othIsReflexive || !valIsDefined && othIsReflexive || !valIsReflexive) {
|
|
190113
|
-
return 1;
|
|
190114
|
-
}
|
|
190115
|
-
if (!valIsNull && !valIsSymbol && !othIsSymbol && value2 < other || othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol || othIsNull && valIsDefined && valIsReflexive || !othIsDefined && valIsReflexive || !othIsReflexive) {
|
|
190116
|
-
return -1;
|
|
190117
|
-
}
|
|
190118
|
-
}
|
|
190119
|
-
return 0;
|
|
190120
|
-
}
|
|
190121
|
-
module2.exports = compareAscending;
|
|
190122
|
-
}
|
|
190123
|
-
});
|
|
190124
|
-
|
|
190125
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_compareMultiple.js
|
|
190126
|
-
var require_compareMultiple = __commonJS({
|
|
190127
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_compareMultiple.js"(exports2, module2) {
|
|
190128
|
-
var compareAscending = require_compareAscending();
|
|
190129
|
-
function compareMultiple(object, other, orders) {
|
|
190130
|
-
var index2 = -1, objCriteria = object.criteria, othCriteria = other.criteria, length = objCriteria.length, ordersLength = orders.length;
|
|
190131
|
-
while (++index2 < length) {
|
|
190132
|
-
var result = compareAscending(objCriteria[index2], othCriteria[index2]);
|
|
190133
|
-
if (result) {
|
|
190134
|
-
if (index2 >= ordersLength) {
|
|
190135
|
-
return result;
|
|
190136
|
-
}
|
|
190137
|
-
var order = orders[index2];
|
|
190138
|
-
return result * (order == "desc" ? -1 : 1);
|
|
190139
|
-
}
|
|
190140
|
-
}
|
|
190141
|
-
return object.index - other.index;
|
|
190142
|
-
}
|
|
190143
|
-
module2.exports = compareMultiple;
|
|
190144
|
-
}
|
|
190145
|
-
});
|
|
190146
|
-
|
|
190147
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseOrderBy.js
|
|
190148
|
-
var require_baseOrderBy = __commonJS({
|
|
190149
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseOrderBy.js"(exports2, module2) {
|
|
190150
|
-
var arrayMap = require_arrayMap();
|
|
190151
|
-
var baseGet = require_baseGet();
|
|
190152
|
-
var baseIteratee = require_baseIteratee();
|
|
190153
|
-
var baseMap = require_baseMap();
|
|
190154
|
-
var baseSortBy = require_baseSortBy();
|
|
190155
|
-
var baseUnary = require_baseUnary();
|
|
190156
|
-
var compareMultiple = require_compareMultiple();
|
|
190157
|
-
var identity2 = require_identity();
|
|
190158
|
-
var isArray3 = require_isArray();
|
|
190159
|
-
function baseOrderBy(collection, iteratees, orders) {
|
|
190160
|
-
if (iteratees.length) {
|
|
190161
|
-
iteratees = arrayMap(iteratees, function(iteratee) {
|
|
190162
|
-
if (isArray3(iteratee)) {
|
|
190163
|
-
return function(value2) {
|
|
190164
|
-
return baseGet(value2, iteratee.length === 1 ? iteratee[0] : iteratee);
|
|
190165
|
-
};
|
|
190166
|
-
}
|
|
190167
|
-
return iteratee;
|
|
190168
|
-
});
|
|
190169
|
-
} else {
|
|
190170
|
-
iteratees = [identity2];
|
|
190171
|
-
}
|
|
190172
|
-
var index2 = -1;
|
|
190173
|
-
iteratees = arrayMap(iteratees, baseUnary(baseIteratee));
|
|
190174
|
-
var result = baseMap(collection, function(value2, key, collection2) {
|
|
190175
|
-
var criteria = arrayMap(iteratees, function(iteratee) {
|
|
190176
|
-
return iteratee(value2);
|
|
190177
|
-
});
|
|
190178
|
-
return { "criteria": criteria, "index": ++index2, "value": value2 };
|
|
190179
|
-
});
|
|
190180
|
-
return baseSortBy(result, function(object, other) {
|
|
190181
|
-
return compareMultiple(object, other, orders);
|
|
190182
|
-
});
|
|
190183
|
-
}
|
|
190184
|
-
module2.exports = baseOrderBy;
|
|
190185
|
-
}
|
|
190186
|
-
});
|
|
190187
|
-
|
|
190188
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/orderBy.js
|
|
190189
|
-
var require_orderBy = __commonJS({
|
|
190190
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/orderBy.js"(exports2, module2) {
|
|
190191
|
-
var baseOrderBy = require_baseOrderBy();
|
|
190192
|
-
var isArray3 = require_isArray();
|
|
190193
|
-
function orderBy2(collection, iteratees, orders, guard) {
|
|
190194
|
-
if (collection == null) {
|
|
190195
|
-
return [];
|
|
190196
|
-
}
|
|
190197
|
-
if (!isArray3(iteratees)) {
|
|
190198
|
-
iteratees = iteratees == null ? [] : [iteratees];
|
|
190199
|
-
}
|
|
190200
|
-
orders = guard ? void 0 : orders;
|
|
190201
|
-
if (!isArray3(orders)) {
|
|
190202
|
-
orders = orders == null ? [] : [orders];
|
|
190203
|
-
}
|
|
190204
|
-
return baseOrderBy(collection, iteratees, orders);
|
|
190205
|
-
}
|
|
190206
|
-
module2.exports = orderBy2;
|
|
190207
|
-
}
|
|
190208
|
-
});
|
|
190209
|
-
|
|
190210
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/orderBy.js
|
|
190211
|
-
var require_orderBy2 = __commonJS({
|
|
190212
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/orderBy.js"(exports2, module2) {
|
|
190213
|
-
var convert = require_convert();
|
|
190214
|
-
var func = convert("orderBy", require_orderBy());
|
|
190215
|
-
func.placeholder = require_placeholder();
|
|
190216
|
-
module2.exports = func;
|
|
190217
|
-
}
|
|
190218
|
-
});
|
|
190219
|
-
|
|
190220
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/mapValues.js
|
|
190221
|
-
var require_mapValues = __commonJS({
|
|
190222
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/mapValues.js"(exports2, module2) {
|
|
190223
|
-
var baseAssignValue = require_baseAssignValue();
|
|
190224
|
-
var baseForOwn = require_baseForOwn();
|
|
190225
|
-
var baseIteratee = require_baseIteratee();
|
|
190226
|
-
function mapValues10(object, iteratee) {
|
|
190227
|
-
var result = {};
|
|
190228
|
-
iteratee = baseIteratee(iteratee, 3);
|
|
190229
|
-
baseForOwn(object, function(value2, key, object2) {
|
|
190230
|
-
baseAssignValue(result, key, iteratee(value2, key, object2));
|
|
190231
|
-
});
|
|
190232
|
-
return result;
|
|
190233
|
-
}
|
|
190234
|
-
module2.exports = mapValues10;
|
|
190235
|
-
}
|
|
190236
|
-
});
|
|
190237
|
-
|
|
190238
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSome.js
|
|
190239
|
-
var require_baseSome = __commonJS({
|
|
190240
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSome.js"(exports2, module2) {
|
|
190241
|
-
var baseEach = require_baseEach();
|
|
190242
|
-
function baseSome(collection, predicate) {
|
|
190243
|
-
var result;
|
|
190244
|
-
baseEach(collection, function(value2, index2, collection2) {
|
|
190245
|
-
result = predicate(value2, index2, collection2);
|
|
190246
|
-
return !result;
|
|
190247
|
-
});
|
|
190248
|
-
return !!result;
|
|
190249
|
-
}
|
|
190250
|
-
module2.exports = baseSome;
|
|
190251
|
-
}
|
|
190252
|
-
});
|
|
190253
|
-
|
|
190254
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/some.js
|
|
190255
|
-
var require_some2 = __commonJS({
|
|
190256
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/some.js"(exports2, module2) {
|
|
190257
|
-
var arraySome = require_arraySome();
|
|
190258
|
-
var baseIteratee = require_baseIteratee();
|
|
190259
|
-
var baseSome = require_baseSome();
|
|
190260
|
-
var isArray3 = require_isArray();
|
|
190261
|
-
var isIterateeCall = require_isIterateeCall();
|
|
190262
|
-
function some2(collection, predicate, guard) {
|
|
190263
|
-
var func = isArray3(collection) ? arraySome : baseSome;
|
|
190264
|
-
if (guard && isIterateeCall(collection, predicate, guard)) {
|
|
190265
|
-
predicate = void 0;
|
|
190266
|
-
}
|
|
190267
|
-
return func(collection, baseIteratee(predicate, 3));
|
|
190268
|
-
}
|
|
190269
|
-
module2.exports = some2;
|
|
190270
|
-
}
|
|
190271
|
-
});
|
|
190272
|
-
|
|
190273
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/defaults.js
|
|
190274
|
-
var require_defaults3 = __commonJS({
|
|
190275
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/defaults.js"(exports2, module2) {
|
|
190276
|
-
var convert = require_convert();
|
|
190277
|
-
var func = convert("defaults", require_defaults2());
|
|
190278
|
-
func.placeholder = require_placeholder();
|
|
190279
|
-
module2.exports = func;
|
|
190280
|
-
}
|
|
190281
|
-
});
|
|
190282
|
-
|
|
190283
|
-
// ../../node_modules/.pnpm/p-reduce@2.1.0/node_modules/p-reduce/index.js
|
|
190284
|
-
var require_p_reduce = __commonJS({
|
|
190285
|
-
"../../node_modules/.pnpm/p-reduce@2.1.0/node_modules/p-reduce/index.js"(exports2, module2) {
|
|
190286
|
-
"use strict";
|
|
190287
|
-
var pReduce2 = (iterable, reducer, initialValue) => new Promise((resolve2, reject) => {
|
|
190288
|
-
const iterator = iterable[Symbol.iterator]();
|
|
190289
|
-
let index2 = 0;
|
|
190290
|
-
const next2 = async (total) => {
|
|
190291
|
-
const element = iterator.next();
|
|
190292
|
-
if (element.done) {
|
|
190293
|
-
resolve2(total);
|
|
190294
|
-
return;
|
|
190295
|
-
}
|
|
190296
|
-
try {
|
|
190297
|
-
const value2 = await Promise.all([total, element.value]);
|
|
190298
|
-
next2(reducer(value2[0], value2[1], index2++));
|
|
190299
|
-
} catch (error) {
|
|
190300
|
-
reject(error);
|
|
190301
|
-
}
|
|
190302
|
-
};
|
|
190303
|
-
next2(initialValue);
|
|
190304
|
-
});
|
|
190305
|
-
module2.exports = pReduce2;
|
|
190306
|
-
module2.exports.default = pReduce2;
|
|
190307
|
-
}
|
|
190308
|
-
});
|
|
190309
|
-
|
|
190310
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/set.js
|
|
190311
|
-
var require_set3 = __commonJS({
|
|
190312
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/set.js"(exports2, module2) {
|
|
190313
|
-
var convert = require_convert();
|
|
190314
|
-
var func = convert("set", require_set2());
|
|
190315
|
-
func.placeholder = require_placeholder();
|
|
190316
|
-
module2.exports = func;
|
|
190317
|
-
}
|
|
190318
|
-
});
|
|
190319
|
-
|
|
190320
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fromPairs.js
|
|
190321
|
-
var require_fromPairs = __commonJS({
|
|
190322
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fromPairs.js"(exports2, module2) {
|
|
190323
|
-
function fromPairs2(pairs) {
|
|
190324
|
-
var index2 = -1, length = pairs == null ? 0 : pairs.length, result = {};
|
|
190325
|
-
while (++index2 < length) {
|
|
190326
|
-
var pair = pairs[index2];
|
|
190327
|
-
result[pair[0]] = pair[1];
|
|
190328
|
-
}
|
|
190329
|
-
return result;
|
|
190330
|
-
}
|
|
190331
|
-
module2.exports = fromPairs2;
|
|
190332
|
-
}
|
|
190333
|
-
});
|
|
190334
|
-
|
|
190335
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/pick.js
|
|
190336
|
-
var require_pick2 = __commonJS({
|
|
190337
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/pick.js"(exports2, module2) {
|
|
190338
|
-
var convert = require_convert();
|
|
190339
|
-
var func = convert("pick", require_pick());
|
|
190340
|
-
func.placeholder = require_placeholder();
|
|
190341
|
-
module2.exports = func;
|
|
190342
|
-
}
|
|
190343
|
-
});
|
|
190344
|
-
|
|
190345
|
-
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/unset.js
|
|
190346
|
-
var require_unset2 = __commonJS({
|
|
190347
|
-
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/unset.js"(exports2, module2) {
|
|
190348
|
-
var convert = require_convert();
|
|
190349
|
-
var func = convert("unset", require_unset());
|
|
190350
|
-
func.placeholder = require_placeholder();
|
|
190351
|
-
module2.exports = func;
|
|
190352
|
-
}
|
|
190353
|
-
});
|
|
190354
|
-
|
|
190355
189998
|
// ../../node_modules/.pnpm/ajv@8.13.0/node_modules/ajv/dist/compile/codegen/code.js
|
|
190356
189999
|
var require_code = __commonJS({
|
|
190357
190000
|
"../../node_modules/.pnpm/ajv@8.13.0/node_modules/ajv/dist/compile/codegen/code.js"(exports2) {
|
|
@@ -191989,7 +191632,7 @@ var require_dataType = __commonJS({
|
|
|
191989
191632
|
});
|
|
191990
191633
|
|
|
191991
191634
|
// ../../node_modules/.pnpm/ajv@8.13.0/node_modules/ajv/dist/compile/validate/defaults.js
|
|
191992
|
-
var
|
|
191635
|
+
var require_defaults3 = __commonJS({
|
|
191993
191636
|
"../../node_modules/.pnpm/ajv@8.13.0/node_modules/ajv/dist/compile/validate/defaults.js"(exports2) {
|
|
191994
191637
|
"use strict";
|
|
191995
191638
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
@@ -192613,7 +192256,7 @@ var require_validate5 = __commonJS({
|
|
|
192613
192256
|
var dataType_1 = require_dataType();
|
|
192614
192257
|
var applicability_1 = require_applicability();
|
|
192615
192258
|
var dataType_2 = require_dataType();
|
|
192616
|
-
var defaults_1 =
|
|
192259
|
+
var defaults_1 = require_defaults3();
|
|
192617
192260
|
var keyword_1 = require_keyword3();
|
|
192618
192261
|
var subschema_1 = require_subschema();
|
|
192619
192262
|
var codegen_1 = require_codegen();
|
|
@@ -196351,6 +195994,363 @@ var require_dist3 = __commonJS({
|
|
|
196351
195994
|
}
|
|
196352
195995
|
});
|
|
196353
195996
|
|
|
195997
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/unset.js
|
|
195998
|
+
var require_unset = __commonJS({
|
|
195999
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/unset.js"(exports2, module2) {
|
|
196000
|
+
var baseUnset = require_baseUnset();
|
|
196001
|
+
function unset7(object, path16) {
|
|
196002
|
+
return object == null ? true : baseUnset(object, path16);
|
|
196003
|
+
}
|
|
196004
|
+
module2.exports = unset7;
|
|
196005
|
+
}
|
|
196006
|
+
});
|
|
196007
|
+
|
|
196008
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePick.js
|
|
196009
|
+
var require_basePick = __commonJS({
|
|
196010
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePick.js"(exports2, module2) {
|
|
196011
|
+
var basePickBy = require_basePickBy();
|
|
196012
|
+
var hasIn = require_hasIn();
|
|
196013
|
+
function basePick(object, paths) {
|
|
196014
|
+
return basePickBy(object, paths, function(value2, path16) {
|
|
196015
|
+
return hasIn(object, path16);
|
|
196016
|
+
});
|
|
196017
|
+
}
|
|
196018
|
+
module2.exports = basePick;
|
|
196019
|
+
}
|
|
196020
|
+
});
|
|
196021
|
+
|
|
196022
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/pick.js
|
|
196023
|
+
var require_pick = __commonJS({
|
|
196024
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/pick.js"(exports2, module2) {
|
|
196025
|
+
var basePick = require_basePick();
|
|
196026
|
+
var flatRest = require_flatRest();
|
|
196027
|
+
var pick6 = flatRest(function(object, paths) {
|
|
196028
|
+
return object == null ? {} : basePick(object, paths);
|
|
196029
|
+
});
|
|
196030
|
+
module2.exports = pick6;
|
|
196031
|
+
}
|
|
196032
|
+
});
|
|
196033
|
+
|
|
196034
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/assign.js
|
|
196035
|
+
var require_assign2 = __commonJS({
|
|
196036
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/assign.js"(exports2, module2) {
|
|
196037
|
+
var convert = require_convert();
|
|
196038
|
+
var func = convert("assign", require_assign());
|
|
196039
|
+
func.placeholder = require_placeholder();
|
|
196040
|
+
module2.exports = func;
|
|
196041
|
+
}
|
|
196042
|
+
});
|
|
196043
|
+
|
|
196044
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/omit.js
|
|
196045
|
+
var require_omit2 = __commonJS({
|
|
196046
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/omit.js"(exports2, module2) {
|
|
196047
|
+
var convert = require_convert();
|
|
196048
|
+
var func = convert("omit", require_omit());
|
|
196049
|
+
func.placeholder = require_placeholder();
|
|
196050
|
+
module2.exports = func;
|
|
196051
|
+
}
|
|
196052
|
+
});
|
|
196053
|
+
|
|
196054
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseHas.js
|
|
196055
|
+
var require_baseHas = __commonJS({
|
|
196056
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseHas.js"(exports2, module2) {
|
|
196057
|
+
var objectProto = Object.prototype;
|
|
196058
|
+
var hasOwnProperty3 = objectProto.hasOwnProperty;
|
|
196059
|
+
function baseHas(object, key) {
|
|
196060
|
+
return object != null && hasOwnProperty3.call(object, key);
|
|
196061
|
+
}
|
|
196062
|
+
module2.exports = baseHas;
|
|
196063
|
+
}
|
|
196064
|
+
});
|
|
196065
|
+
|
|
196066
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/has.js
|
|
196067
|
+
var require_has = __commonJS({
|
|
196068
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/has.js"(exports2, module2) {
|
|
196069
|
+
var baseHas = require_baseHas();
|
|
196070
|
+
var hasPath = require_hasPath();
|
|
196071
|
+
function has2(object, path16) {
|
|
196072
|
+
return object != null && hasPath(object, path16, baseHas);
|
|
196073
|
+
}
|
|
196074
|
+
module2.exports = has2;
|
|
196075
|
+
}
|
|
196076
|
+
});
|
|
196077
|
+
|
|
196078
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isUndefined.js
|
|
196079
|
+
var require_isUndefined = __commonJS({
|
|
196080
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isUndefined.js"(exports2, module2) {
|
|
196081
|
+
function isUndefined4(value2) {
|
|
196082
|
+
return value2 === void 0;
|
|
196083
|
+
}
|
|
196084
|
+
module2.exports = isUndefined4;
|
|
196085
|
+
}
|
|
196086
|
+
});
|
|
196087
|
+
|
|
196088
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSortBy.js
|
|
196089
|
+
var require_baseSortBy = __commonJS({
|
|
196090
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSortBy.js"(exports2, module2) {
|
|
196091
|
+
function baseSortBy(array, comparer) {
|
|
196092
|
+
var length = array.length;
|
|
196093
|
+
array.sort(comparer);
|
|
196094
|
+
while (length--) {
|
|
196095
|
+
array[length] = array[length].value;
|
|
196096
|
+
}
|
|
196097
|
+
return array;
|
|
196098
|
+
}
|
|
196099
|
+
module2.exports = baseSortBy;
|
|
196100
|
+
}
|
|
196101
|
+
});
|
|
196102
|
+
|
|
196103
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_compareAscending.js
|
|
196104
|
+
var require_compareAscending = __commonJS({
|
|
196105
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_compareAscending.js"(exports2, module2) {
|
|
196106
|
+
var isSymbol = require_isSymbol();
|
|
196107
|
+
function compareAscending(value2, other) {
|
|
196108
|
+
if (value2 !== other) {
|
|
196109
|
+
var valIsDefined = value2 !== void 0, valIsNull = value2 === null, valIsReflexive = value2 === value2, valIsSymbol = isSymbol(value2);
|
|
196110
|
+
var othIsDefined = other !== void 0, othIsNull = other === null, othIsReflexive = other === other, othIsSymbol = isSymbol(other);
|
|
196111
|
+
if (!othIsNull && !othIsSymbol && !valIsSymbol && value2 > other || valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol || valIsNull && othIsDefined && othIsReflexive || !valIsDefined && othIsReflexive || !valIsReflexive) {
|
|
196112
|
+
return 1;
|
|
196113
|
+
}
|
|
196114
|
+
if (!valIsNull && !valIsSymbol && !othIsSymbol && value2 < other || othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol || othIsNull && valIsDefined && valIsReflexive || !othIsDefined && valIsReflexive || !othIsReflexive) {
|
|
196115
|
+
return -1;
|
|
196116
|
+
}
|
|
196117
|
+
}
|
|
196118
|
+
return 0;
|
|
196119
|
+
}
|
|
196120
|
+
module2.exports = compareAscending;
|
|
196121
|
+
}
|
|
196122
|
+
});
|
|
196123
|
+
|
|
196124
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_compareMultiple.js
|
|
196125
|
+
var require_compareMultiple = __commonJS({
|
|
196126
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_compareMultiple.js"(exports2, module2) {
|
|
196127
|
+
var compareAscending = require_compareAscending();
|
|
196128
|
+
function compareMultiple(object, other, orders) {
|
|
196129
|
+
var index2 = -1, objCriteria = object.criteria, othCriteria = other.criteria, length = objCriteria.length, ordersLength = orders.length;
|
|
196130
|
+
while (++index2 < length) {
|
|
196131
|
+
var result = compareAscending(objCriteria[index2], othCriteria[index2]);
|
|
196132
|
+
if (result) {
|
|
196133
|
+
if (index2 >= ordersLength) {
|
|
196134
|
+
return result;
|
|
196135
|
+
}
|
|
196136
|
+
var order = orders[index2];
|
|
196137
|
+
return result * (order == "desc" ? -1 : 1);
|
|
196138
|
+
}
|
|
196139
|
+
}
|
|
196140
|
+
return object.index - other.index;
|
|
196141
|
+
}
|
|
196142
|
+
module2.exports = compareMultiple;
|
|
196143
|
+
}
|
|
196144
|
+
});
|
|
196145
|
+
|
|
196146
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseOrderBy.js
|
|
196147
|
+
var require_baseOrderBy = __commonJS({
|
|
196148
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseOrderBy.js"(exports2, module2) {
|
|
196149
|
+
var arrayMap = require_arrayMap();
|
|
196150
|
+
var baseGet = require_baseGet();
|
|
196151
|
+
var baseIteratee = require_baseIteratee();
|
|
196152
|
+
var baseMap = require_baseMap();
|
|
196153
|
+
var baseSortBy = require_baseSortBy();
|
|
196154
|
+
var baseUnary = require_baseUnary();
|
|
196155
|
+
var compareMultiple = require_compareMultiple();
|
|
196156
|
+
var identity2 = require_identity();
|
|
196157
|
+
var isArray3 = require_isArray();
|
|
196158
|
+
function baseOrderBy(collection, iteratees, orders) {
|
|
196159
|
+
if (iteratees.length) {
|
|
196160
|
+
iteratees = arrayMap(iteratees, function(iteratee) {
|
|
196161
|
+
if (isArray3(iteratee)) {
|
|
196162
|
+
return function(value2) {
|
|
196163
|
+
return baseGet(value2, iteratee.length === 1 ? iteratee[0] : iteratee);
|
|
196164
|
+
};
|
|
196165
|
+
}
|
|
196166
|
+
return iteratee;
|
|
196167
|
+
});
|
|
196168
|
+
} else {
|
|
196169
|
+
iteratees = [identity2];
|
|
196170
|
+
}
|
|
196171
|
+
var index2 = -1;
|
|
196172
|
+
iteratees = arrayMap(iteratees, baseUnary(baseIteratee));
|
|
196173
|
+
var result = baseMap(collection, function(value2, key, collection2) {
|
|
196174
|
+
var criteria = arrayMap(iteratees, function(iteratee) {
|
|
196175
|
+
return iteratee(value2);
|
|
196176
|
+
});
|
|
196177
|
+
return { "criteria": criteria, "index": ++index2, "value": value2 };
|
|
196178
|
+
});
|
|
196179
|
+
return baseSortBy(result, function(object, other) {
|
|
196180
|
+
return compareMultiple(object, other, orders);
|
|
196181
|
+
});
|
|
196182
|
+
}
|
|
196183
|
+
module2.exports = baseOrderBy;
|
|
196184
|
+
}
|
|
196185
|
+
});
|
|
196186
|
+
|
|
196187
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/orderBy.js
|
|
196188
|
+
var require_orderBy = __commonJS({
|
|
196189
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/orderBy.js"(exports2, module2) {
|
|
196190
|
+
var baseOrderBy = require_baseOrderBy();
|
|
196191
|
+
var isArray3 = require_isArray();
|
|
196192
|
+
function orderBy2(collection, iteratees, orders, guard) {
|
|
196193
|
+
if (collection == null) {
|
|
196194
|
+
return [];
|
|
196195
|
+
}
|
|
196196
|
+
if (!isArray3(iteratees)) {
|
|
196197
|
+
iteratees = iteratees == null ? [] : [iteratees];
|
|
196198
|
+
}
|
|
196199
|
+
orders = guard ? void 0 : orders;
|
|
196200
|
+
if (!isArray3(orders)) {
|
|
196201
|
+
orders = orders == null ? [] : [orders];
|
|
196202
|
+
}
|
|
196203
|
+
return baseOrderBy(collection, iteratees, orders);
|
|
196204
|
+
}
|
|
196205
|
+
module2.exports = orderBy2;
|
|
196206
|
+
}
|
|
196207
|
+
});
|
|
196208
|
+
|
|
196209
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/orderBy.js
|
|
196210
|
+
var require_orderBy2 = __commonJS({
|
|
196211
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/orderBy.js"(exports2, module2) {
|
|
196212
|
+
var convert = require_convert();
|
|
196213
|
+
var func = convert("orderBy", require_orderBy());
|
|
196214
|
+
func.placeholder = require_placeholder();
|
|
196215
|
+
module2.exports = func;
|
|
196216
|
+
}
|
|
196217
|
+
});
|
|
196218
|
+
|
|
196219
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/mapValues.js
|
|
196220
|
+
var require_mapValues = __commonJS({
|
|
196221
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/mapValues.js"(exports2, module2) {
|
|
196222
|
+
var baseAssignValue = require_baseAssignValue();
|
|
196223
|
+
var baseForOwn = require_baseForOwn();
|
|
196224
|
+
var baseIteratee = require_baseIteratee();
|
|
196225
|
+
function mapValues10(object, iteratee) {
|
|
196226
|
+
var result = {};
|
|
196227
|
+
iteratee = baseIteratee(iteratee, 3);
|
|
196228
|
+
baseForOwn(object, function(value2, key, object2) {
|
|
196229
|
+
baseAssignValue(result, key, iteratee(value2, key, object2));
|
|
196230
|
+
});
|
|
196231
|
+
return result;
|
|
196232
|
+
}
|
|
196233
|
+
module2.exports = mapValues10;
|
|
196234
|
+
}
|
|
196235
|
+
});
|
|
196236
|
+
|
|
196237
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSome.js
|
|
196238
|
+
var require_baseSome = __commonJS({
|
|
196239
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSome.js"(exports2, module2) {
|
|
196240
|
+
var baseEach = require_baseEach();
|
|
196241
|
+
function baseSome(collection, predicate) {
|
|
196242
|
+
var result;
|
|
196243
|
+
baseEach(collection, function(value2, index2, collection2) {
|
|
196244
|
+
result = predicate(value2, index2, collection2);
|
|
196245
|
+
return !result;
|
|
196246
|
+
});
|
|
196247
|
+
return !!result;
|
|
196248
|
+
}
|
|
196249
|
+
module2.exports = baseSome;
|
|
196250
|
+
}
|
|
196251
|
+
});
|
|
196252
|
+
|
|
196253
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/some.js
|
|
196254
|
+
var require_some2 = __commonJS({
|
|
196255
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/some.js"(exports2, module2) {
|
|
196256
|
+
var arraySome = require_arraySome();
|
|
196257
|
+
var baseIteratee = require_baseIteratee();
|
|
196258
|
+
var baseSome = require_baseSome();
|
|
196259
|
+
var isArray3 = require_isArray();
|
|
196260
|
+
var isIterateeCall = require_isIterateeCall();
|
|
196261
|
+
function some2(collection, predicate, guard) {
|
|
196262
|
+
var func = isArray3(collection) ? arraySome : baseSome;
|
|
196263
|
+
if (guard && isIterateeCall(collection, predicate, guard)) {
|
|
196264
|
+
predicate = void 0;
|
|
196265
|
+
}
|
|
196266
|
+
return func(collection, baseIteratee(predicate, 3));
|
|
196267
|
+
}
|
|
196268
|
+
module2.exports = some2;
|
|
196269
|
+
}
|
|
196270
|
+
});
|
|
196271
|
+
|
|
196272
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/defaults.js
|
|
196273
|
+
var require_defaults4 = __commonJS({
|
|
196274
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/defaults.js"(exports2, module2) {
|
|
196275
|
+
var convert = require_convert();
|
|
196276
|
+
var func = convert("defaults", require_defaults2());
|
|
196277
|
+
func.placeholder = require_placeholder();
|
|
196278
|
+
module2.exports = func;
|
|
196279
|
+
}
|
|
196280
|
+
});
|
|
196281
|
+
|
|
196282
|
+
// ../../node_modules/.pnpm/p-reduce@2.1.0/node_modules/p-reduce/index.js
|
|
196283
|
+
var require_p_reduce = __commonJS({
|
|
196284
|
+
"../../node_modules/.pnpm/p-reduce@2.1.0/node_modules/p-reduce/index.js"(exports2, module2) {
|
|
196285
|
+
"use strict";
|
|
196286
|
+
var pReduce2 = (iterable, reducer, initialValue) => new Promise((resolve2, reject) => {
|
|
196287
|
+
const iterator = iterable[Symbol.iterator]();
|
|
196288
|
+
let index2 = 0;
|
|
196289
|
+
const next2 = async (total) => {
|
|
196290
|
+
const element = iterator.next();
|
|
196291
|
+
if (element.done) {
|
|
196292
|
+
resolve2(total);
|
|
196293
|
+
return;
|
|
196294
|
+
}
|
|
196295
|
+
try {
|
|
196296
|
+
const value2 = await Promise.all([total, element.value]);
|
|
196297
|
+
next2(reducer(value2[0], value2[1], index2++));
|
|
196298
|
+
} catch (error) {
|
|
196299
|
+
reject(error);
|
|
196300
|
+
}
|
|
196301
|
+
};
|
|
196302
|
+
next2(initialValue);
|
|
196303
|
+
});
|
|
196304
|
+
module2.exports = pReduce2;
|
|
196305
|
+
module2.exports.default = pReduce2;
|
|
196306
|
+
}
|
|
196307
|
+
});
|
|
196308
|
+
|
|
196309
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/set.js
|
|
196310
|
+
var require_set3 = __commonJS({
|
|
196311
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/set.js"(exports2, module2) {
|
|
196312
|
+
var convert = require_convert();
|
|
196313
|
+
var func = convert("set", require_set2());
|
|
196314
|
+
func.placeholder = require_placeholder();
|
|
196315
|
+
module2.exports = func;
|
|
196316
|
+
}
|
|
196317
|
+
});
|
|
196318
|
+
|
|
196319
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fromPairs.js
|
|
196320
|
+
var require_fromPairs = __commonJS({
|
|
196321
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fromPairs.js"(exports2, module2) {
|
|
196322
|
+
function fromPairs2(pairs) {
|
|
196323
|
+
var index2 = -1, length = pairs == null ? 0 : pairs.length, result = {};
|
|
196324
|
+
while (++index2 < length) {
|
|
196325
|
+
var pair = pairs[index2];
|
|
196326
|
+
result[pair[0]] = pair[1];
|
|
196327
|
+
}
|
|
196328
|
+
return result;
|
|
196329
|
+
}
|
|
196330
|
+
module2.exports = fromPairs2;
|
|
196331
|
+
}
|
|
196332
|
+
});
|
|
196333
|
+
|
|
196334
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/pick.js
|
|
196335
|
+
var require_pick2 = __commonJS({
|
|
196336
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/pick.js"(exports2, module2) {
|
|
196337
|
+
var convert = require_convert();
|
|
196338
|
+
var func = convert("pick", require_pick());
|
|
196339
|
+
func.placeholder = require_placeholder();
|
|
196340
|
+
module2.exports = func;
|
|
196341
|
+
}
|
|
196342
|
+
});
|
|
196343
|
+
|
|
196344
|
+
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/unset.js
|
|
196345
|
+
var require_unset2 = __commonJS({
|
|
196346
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/fp/unset.js"(exports2, module2) {
|
|
196347
|
+
var convert = require_convert();
|
|
196348
|
+
var func = convert("unset", require_unset());
|
|
196349
|
+
func.placeholder = require_placeholder();
|
|
196350
|
+
module2.exports = func;
|
|
196351
|
+
}
|
|
196352
|
+
});
|
|
196353
|
+
|
|
196354
196354
|
// ../../node_modules/.pnpm/blueimp-md5@2.18.0/node_modules/blueimp-md5/js/md5.js
|
|
196355
196355
|
var require_md5 = __commonJS({
|
|
196356
196356
|
"../../node_modules/.pnpm/blueimp-md5@2.18.0/node_modules/blueimp-md5/js/md5.js"(exports2, module2) {
|
|
@@ -205121,7 +205121,7 @@ var engines = {
|
|
|
205121
205121
|
};
|
|
205122
205122
|
var package_default = {
|
|
205123
205123
|
name: "@takeshape/cli",
|
|
205124
|
-
version: "11.
|
|
205124
|
+
version: "11.82.0",
|
|
205125
205125
|
description: "TakeShape CLI",
|
|
205126
205126
|
homepage: "https://www.takeshape.io",
|
|
205127
205127
|
repository: {
|
|
@@ -215636,6 +215636,77 @@ var createVersionPredicate = (featureVersion, comparison) => {
|
|
|
215636
215636
|
var workflowsEnabled = createVersionPredicate("2.0.0", import_gte.default);
|
|
215637
215637
|
var whereClauseEnabled = createVersionPredicate("2.0.0", import_gte.default);
|
|
215638
215638
|
|
|
215639
|
+
// ../json-schema/dist/schema-validator.js
|
|
215640
|
+
var import_ajv = __toESM(require_ajv2(), 1);
|
|
215641
|
+
var import_ajv_formats = __toESM(require_dist3(), 1);
|
|
215642
|
+
var import_get4 = __toESM(require_get(), 1);
|
|
215643
|
+
var import_isString2 = __toESM(require_isString(), 1);
|
|
215644
|
+
var import_unset = __toESM(require_unset(), 1);
|
|
215645
|
+
function createAjv(options2) {
|
|
215646
|
+
const ajv2 = new import_ajv.Ajv({
|
|
215647
|
+
discriminator: true,
|
|
215648
|
+
allErrors: true,
|
|
215649
|
+
unevaluated: true,
|
|
215650
|
+
strict: false,
|
|
215651
|
+
...options2
|
|
215652
|
+
});
|
|
215653
|
+
import_ajv_formats.default.default(ajv2);
|
|
215654
|
+
ajv2.addFormat("unix-time", /^[0-9]{10}$/);
|
|
215655
|
+
ajv2.addFormat("decimal", /^[0-9]+\.[0-9]{1,12}$/);
|
|
215656
|
+
return ajv2;
|
|
215657
|
+
}
|
|
215658
|
+
function createTypedValidator(schema, options2 = {}) {
|
|
215659
|
+
const ajv2 = createAjv(options2);
|
|
215660
|
+
return ajv2.compile(schema);
|
|
215661
|
+
}
|
|
215662
|
+
|
|
215663
|
+
// ../schema/dist/resolvers/ai/embedding-search.js
|
|
215664
|
+
var embeddingSearchArgsSchema = {
|
|
215665
|
+
type: "object",
|
|
215666
|
+
properties: {
|
|
215667
|
+
text: {
|
|
215668
|
+
type: "string",
|
|
215669
|
+
description: "The text to search for in the documents."
|
|
215670
|
+
},
|
|
215671
|
+
size: {
|
|
215672
|
+
type: "integer",
|
|
215673
|
+
maximum: 50,
|
|
215674
|
+
description: "The maximum number of results to return."
|
|
215675
|
+
},
|
|
215676
|
+
from: {
|
|
215677
|
+
type: "integer",
|
|
215678
|
+
description: "A number of results to skip before starting to collect the result set. This is useful for pagination."
|
|
215679
|
+
},
|
|
215680
|
+
sort: {
|
|
215681
|
+
type: "array",
|
|
215682
|
+
description: "The fields to sort the results by.",
|
|
215683
|
+
items: {
|
|
215684
|
+
type: "object",
|
|
215685
|
+
properties: {
|
|
215686
|
+
field: {
|
|
215687
|
+
type: "string"
|
|
215688
|
+
},
|
|
215689
|
+
order: {
|
|
215690
|
+
type: "string",
|
|
215691
|
+
enum: ["asc", "desc"]
|
|
215692
|
+
}
|
|
215693
|
+
},
|
|
215694
|
+
required: ["field", "order"],
|
|
215695
|
+
additionalProperties: false
|
|
215696
|
+
}
|
|
215697
|
+
},
|
|
215698
|
+
threshold: {
|
|
215699
|
+
type: "number",
|
|
215700
|
+
description: "The minimum score a document must have to be returned."
|
|
215701
|
+
}
|
|
215702
|
+
},
|
|
215703
|
+
required: ["text"],
|
|
215704
|
+
additionalProperties: false
|
|
215705
|
+
};
|
|
215706
|
+
var validateEmbeddingSearchArgs = createTypedValidator(embeddingSearchArgsSchema, {
|
|
215707
|
+
useDefaults: true
|
|
215708
|
+
});
|
|
215709
|
+
|
|
215639
215710
|
// ../schema/dist/builtin-schema.js
|
|
215640
215711
|
var jsonShape = {
|
|
215641
215712
|
id: "JSON",
|
|
@@ -216052,6 +216123,12 @@ var builtInShapes = {
|
|
|
216052
216123
|
currentValue: { type: "object" }
|
|
216053
216124
|
}
|
|
216054
216125
|
}
|
|
216126
|
+
},
|
|
216127
|
+
TSEmbeddingSearchArgs: {
|
|
216128
|
+
id: "TSEmbeddingSearchArgs",
|
|
216129
|
+
name: "TSEmbeddingSearchArgs",
|
|
216130
|
+
title: "Embedding Search Args",
|
|
216131
|
+
schema: embeddingSearchArgsSchema
|
|
216055
216132
|
}
|
|
216056
216133
|
};
|
|
216057
216134
|
var builtInForms = {
|
|
@@ -216275,7 +216352,7 @@ var SERVICE_OBJECT_PATTERN_NAME = "pattern:service-object";
|
|
|
216275
216352
|
// ../schema/dist/content-schema-transform.js
|
|
216276
216353
|
var import_difference2 = __toESM(require_difference(), 1);
|
|
216277
216354
|
var import_forEach3 = __toESM(require_forEach(), 1);
|
|
216278
|
-
var
|
|
216355
|
+
var import_get6 = __toESM(require_get(), 1);
|
|
216279
216356
|
var import_pick = __toESM(require_pick(), 1);
|
|
216280
216357
|
|
|
216281
216358
|
// ../errors/dist/base-error.js
|
|
@@ -216336,8 +216413,8 @@ var SchemaValidationError = class extends BaseError {
|
|
|
216336
216413
|
var import_compact2 = __toESM(require_compact(), 1);
|
|
216337
216414
|
var import_assign = __toESM(require_assign2(), 1);
|
|
216338
216415
|
var import_omit2 = __toESM(require_omit2(), 1);
|
|
216339
|
-
var
|
|
216340
|
-
var
|
|
216416
|
+
var import_get5 = __toESM(require_get(), 1);
|
|
216417
|
+
var import_isString4 = __toESM(require_isString(), 1);
|
|
216341
216418
|
|
|
216342
216419
|
// ../schema/dist/scalars.js
|
|
216343
216420
|
var scalars = ["string", "boolean", "integer", "number"];
|
|
@@ -216377,7 +216454,7 @@ var ArgsType;
|
|
|
216377
216454
|
var import_has = __toESM(require_has(), 1);
|
|
216378
216455
|
var import_isArray = __toESM(require_isArray(), 1);
|
|
216379
216456
|
var import_isPlainObject2 = __toESM(require_isPlainObject(), 1);
|
|
216380
|
-
var
|
|
216457
|
+
var import_isString3 = __toESM(require_isString(), 1);
|
|
216381
216458
|
var import_isUndefined = __toESM(require_isUndefined(), 1);
|
|
216382
216459
|
|
|
216383
216460
|
// ../schema/dist/schemas/project-schema/v3.54.0.json
|
|
@@ -220003,29 +220080,11 @@ var experimental_default = {
|
|
|
220003
220080
|
title: "Agent Session Memory",
|
|
220004
220081
|
type: "object",
|
|
220005
220082
|
properties: {
|
|
220006
|
-
memoryLocations: {
|
|
220007
|
-
title: "Memory Locations",
|
|
220008
|
-
type: "array",
|
|
220009
|
-
items: {
|
|
220010
|
-
$ref: "#/definitions/agentSessionMemoryLocation"
|
|
220011
|
-
}
|
|
220012
|
-
}
|
|
220013
|
-
},
|
|
220014
|
-
required: ["memoryLocations"],
|
|
220015
|
-
additionalProperties: false
|
|
220016
|
-
},
|
|
220017
|
-
agentSessionMemoryLocation: {
|
|
220018
|
-
title: "Agent Session Memory Location",
|
|
220019
|
-
type: "object",
|
|
220020
|
-
properties: {
|
|
220021
|
-
key: {
|
|
220022
|
-
type: "string"
|
|
220023
|
-
},
|
|
220024
220083
|
shape: {
|
|
220025
220084
|
type: "string"
|
|
220026
220085
|
}
|
|
220027
220086
|
},
|
|
220028
|
-
required: [
|
|
220087
|
+
required: [],
|
|
220029
220088
|
additionalProperties: false
|
|
220030
220089
|
},
|
|
220031
220090
|
agentVariable: {
|
|
@@ -220206,14 +220265,14 @@ var experimental_default = {
|
|
|
220206
220265
|
type: {
|
|
220207
220266
|
enum: ["staticValue"]
|
|
220208
220267
|
},
|
|
220209
|
-
|
|
220268
|
+
memoryPath: {
|
|
220210
220269
|
type: "string"
|
|
220211
220270
|
},
|
|
220212
220271
|
value: {
|
|
220213
220272
|
type: "string"
|
|
220214
220273
|
}
|
|
220215
220274
|
},
|
|
220216
|
-
required: ["type"
|
|
220275
|
+
required: ["type"],
|
|
220217
220276
|
additionalProperties: false
|
|
220218
220277
|
},
|
|
220219
220278
|
agentStateSessionMemoryLocationArtifact: {
|
|
@@ -220223,14 +220282,14 @@ var experimental_default = {
|
|
|
220223
220282
|
type: {
|
|
220224
220283
|
enum: ["artifactValue"]
|
|
220225
220284
|
},
|
|
220226
|
-
|
|
220285
|
+
memoryPath: {
|
|
220227
220286
|
type: "string"
|
|
220228
220287
|
},
|
|
220229
220288
|
artifactPath: {
|
|
220230
220289
|
type: "string"
|
|
220231
220290
|
}
|
|
220232
220291
|
},
|
|
220233
|
-
required: ["type"
|
|
220292
|
+
required: ["type"],
|
|
220234
220293
|
additionalProperties: false
|
|
220235
220294
|
},
|
|
220236
220295
|
agentStateSessionMemoryLocationContent: {
|
|
@@ -220240,14 +220299,14 @@ var experimental_default = {
|
|
|
220240
220299
|
type: {
|
|
220241
220300
|
enum: ["content"]
|
|
220242
220301
|
},
|
|
220243
|
-
|
|
220302
|
+
memoryPath: {
|
|
220244
220303
|
type: "string"
|
|
220245
220304
|
},
|
|
220246
220305
|
path: {
|
|
220247
220306
|
type: "string"
|
|
220248
220307
|
}
|
|
220249
220308
|
},
|
|
220250
|
-
required: ["type"
|
|
220309
|
+
required: ["type"],
|
|
220251
220310
|
additionalProperties: false
|
|
220252
220311
|
},
|
|
220253
220312
|
agentAiStateInputArg: {
|
|
@@ -372396,7 +372455,7 @@ var allProjectSchemas = [
|
|
|
372396
372455
|
|
|
372397
372456
|
// ../schema/dist/types/utils.js
|
|
372398
372457
|
function isBasicResolver(resolver) {
|
|
372399
|
-
return isRecord(resolver) && (0,
|
|
372458
|
+
return isRecord(resolver) && (0, import_isString3.default)(resolver.name);
|
|
372400
372459
|
}
|
|
372401
372460
|
function isComposeResolver(resolver) {
|
|
372402
372461
|
return Boolean((0, import_isArray.default)(resolver?.compose) && resolver.compose.length && resolver.compose.every(isBasicResolver));
|
|
@@ -372411,10 +372470,10 @@ function isAIResolver(resolver) {
|
|
|
372411
372470
|
}
|
|
372412
372471
|
var { definitions: { parameterSerializeStyleOptionsForSearchParams, parameterSerializeStyleOptionsForPathParams } } = v3_54_0_default;
|
|
372413
372472
|
function isRefSchema(propertySchema) {
|
|
372414
|
-
return (0,
|
|
372473
|
+
return (0, import_isString3.default)(propertySchema["@ref"]) || (0, import_isString3.default)(propertySchema.$ref);
|
|
372415
372474
|
}
|
|
372416
372475
|
function isRefSchemaLegacy(propertySchema) {
|
|
372417
|
-
return (0,
|
|
372476
|
+
return (0, import_isString3.default)(propertySchema.$ref);
|
|
372418
372477
|
}
|
|
372419
372478
|
function isAllOfSchema(propertySchema) {
|
|
372420
372479
|
return (0, import_isArray.default)(propertySchema.allOf);
|
|
@@ -372474,7 +372533,7 @@ var import_omit = __toESM(require_omit(), 1);
|
|
|
372474
372533
|
var import_pickBy2 = __toESM(require_pickBy(), 1);
|
|
372475
372534
|
var import_set = __toESM(require_set2(), 1);
|
|
372476
372535
|
var import_union = __toESM(require_union(), 1);
|
|
372477
|
-
var
|
|
372536
|
+
var import_unset2 = __toESM(require_unset(), 1);
|
|
372478
372537
|
function mergeObjectSchemas(...args) {
|
|
372479
372538
|
return args.filter(isDefined).reduce((parent, schemas) => mergeSchemaProperties(parent, schemas), {
|
|
372480
372539
|
type: "object",
|
|
@@ -372684,16 +372743,16 @@ function refItemToShapePath(refItem) {
|
|
|
372684
372743
|
}
|
|
372685
372744
|
function refItemToShape(context, refItem) {
|
|
372686
372745
|
const shapePath = refItemToShapePath(refItem);
|
|
372687
|
-
return (0,
|
|
372746
|
+
return (0, import_get5.default)(context, shapePath);
|
|
372688
372747
|
}
|
|
372689
372748
|
function refItemToShapeWithPath(context, refItem) {
|
|
372690
372749
|
const shapePath = refItemToShapePath(refItem);
|
|
372691
|
-
const shape = (0,
|
|
372750
|
+
const shape = (0, import_get5.default)(context, shapePath);
|
|
372692
372751
|
return shape ? { shape, path: shapePath } : void 0;
|
|
372693
372752
|
}
|
|
372694
372753
|
function refItemToShapeSchema(context, refItem) {
|
|
372695
372754
|
const shapePath = refItemToShapePath(refItem);
|
|
372696
|
-
return (0,
|
|
372755
|
+
return (0, import_get5.default)(context, [...shapePath, "schema"]);
|
|
372697
372756
|
}
|
|
372698
372757
|
function getRefShapeName(context, refSchema) {
|
|
372699
372758
|
const refItem = getRef(context, refSchema);
|
|
@@ -372810,7 +372869,7 @@ function propertyRefItemToPath(getNamespace2, item2) {
|
|
|
372810
372869
|
var import_curry2 = __toESM(require_curry2(), 1);
|
|
372811
372870
|
var import_orderBy = __toESM(require_orderBy2(), 1);
|
|
372812
372871
|
var import_isArray2 = __toESM(require_isArray(), 1);
|
|
372813
|
-
var
|
|
372872
|
+
var import_isString5 = __toESM(require_isString(), 1);
|
|
372814
372873
|
var import_keyBy2 = __toESM(require_keyBy(), 1);
|
|
372815
372874
|
var import_mapValues = __toESM(require_mapValues(), 1);
|
|
372816
372875
|
var import_some = __toESM(require_some2(), 1);
|
|
@@ -373367,7 +373426,7 @@ function getAllRefsInShapes(projectSchema, predicate) {
|
|
|
373367
373426
|
}, predicate);
|
|
373368
373427
|
});
|
|
373369
373428
|
}
|
|
373370
|
-
if (!(0,
|
|
373429
|
+
if (!(0, import_isString5.default)(interfaces)) {
|
|
373371
373430
|
return;
|
|
373372
373431
|
}
|
|
373373
373432
|
if (propName === "@ref") {
|
|
@@ -373626,7 +373685,7 @@ function getContentTransform({ transforms, accumulators, keyTransform = preferKe
|
|
|
373626
373685
|
const sourceKeys = ensureArray3(sourceKeyTransform(name2, fieldSchema, obj2));
|
|
373627
373686
|
const localizedSourceKeys = getLocalizedSourceKeys(sourceKeys, nonDefaultLocales);
|
|
373628
373687
|
for (const { key: sourceKey, locale: locale2 } of localizedSourceKeys) {
|
|
373629
|
-
const value2 = prepare2(fieldSchema, (0,
|
|
373688
|
+
const value2 = prepare2(fieldSchema, (0, import_get6.default)(obj2, sourceKey), name2, schema);
|
|
373630
373689
|
if (value2 !== void 0) {
|
|
373631
373690
|
assigned.add(sourceKey);
|
|
373632
373691
|
const transform2 = findTransforms(transforms, dereferenceSchema(projectSchema, fieldSchema), name2);
|
|
@@ -373662,7 +373721,7 @@ function getContentTransform({ transforms, accumulators, keyTransform = preferKe
|
|
|
373662
373721
|
}
|
|
373663
373722
|
|
|
373664
373723
|
// ../schema/dist/create-input-schema.js
|
|
373665
|
-
var import_defaults = __toESM(
|
|
373724
|
+
var import_defaults = __toESM(require_defaults4(), 1);
|
|
373666
373725
|
var inputSchemaCache = /* @__PURE__ */ new Map();
|
|
373667
373726
|
function getInputSchemaCache(options2) {
|
|
373668
373727
|
const key = JSON.stringify(options2, Object.keys(options2).sort());
|
|
@@ -373735,7 +373794,7 @@ var import_pick2 = __toESM(require_pick(), 1);
|
|
|
373735
373794
|
|
|
373736
373795
|
// ../schema/dist/migration/to/v3.1.0.js
|
|
373737
373796
|
var import_isObject2 = __toESM(require_isObject(), 1);
|
|
373738
|
-
var
|
|
373797
|
+
var import_isString6 = __toESM(require_isString(), 1);
|
|
373739
373798
|
var import_isUndefined2 = __toESM(require_isUndefined(), 1);
|
|
373740
373799
|
var import_p_reduce = __toESM(require_p_reduce(), 1);
|
|
373741
373800
|
|
|
@@ -373754,15 +373813,15 @@ var import_fromPairs = __toESM(require_fromPairs(), 1);
|
|
|
373754
373813
|
var import_omit5 = __toESM(require_omit(), 1);
|
|
373755
373814
|
|
|
373756
373815
|
// ../schema/dist/migration/to/v3.13.0.js
|
|
373757
|
-
var
|
|
373816
|
+
var import_get7 = __toESM(require_get(), 1);
|
|
373758
373817
|
|
|
373759
373818
|
// ../schema/dist/migration/to/v3.17.0.js
|
|
373760
|
-
var
|
|
373819
|
+
var import_get8 = __toESM(require_get(), 1);
|
|
373761
373820
|
var import_omit6 = __toESM(require_omit(), 1);
|
|
373762
373821
|
var import_set3 = __toESM(require_set2(), 1);
|
|
373763
373822
|
|
|
373764
373823
|
// ../schema/dist/migration/to/v3.18.0.js
|
|
373765
|
-
var
|
|
373824
|
+
var import_get9 = __toESM(require_get(), 1);
|
|
373766
373825
|
var import_omit7 = __toESM(require_omit(), 1);
|
|
373767
373826
|
var import_set4 = __toESM(require_set2(), 1);
|
|
373768
373827
|
|
|
@@ -373782,36 +373841,16 @@ var import_mapValues6 = __toESM(require_mapValues(), 1);
|
|
|
373782
373841
|
var import_omit8 = __toESM(require_omit(), 1);
|
|
373783
373842
|
|
|
373784
373843
|
// ../schema/dist/migration/to/v3.31.0.js
|
|
373785
|
-
var
|
|
373844
|
+
var import_isString7 = __toESM(require_isString(), 1);
|
|
373786
373845
|
var import_last2 = __toESM(require_last(), 1);
|
|
373787
373846
|
var import_set5 = __toESM(require_set2(), 1);
|
|
373788
|
-
var
|
|
373847
|
+
var import_unset3 = __toESM(require_unset(), 1);
|
|
373789
373848
|
|
|
373790
373849
|
// ../schema/dist/migration/to/v3.34.0.js
|
|
373791
373850
|
var import_set6 = __toESM(require_set3(), 1);
|
|
373792
373851
|
var import_unset4 = __toESM(require_unset2(), 1);
|
|
373793
373852
|
var import_upperFirst3 = __toESM(require_upperFirst(), 1);
|
|
373794
373853
|
|
|
373795
|
-
// ../json-schema/dist/schema-validator.js
|
|
373796
|
-
var import_ajv = __toESM(require_ajv2(), 1);
|
|
373797
|
-
var import_ajv_formats = __toESM(require_dist3(), 1);
|
|
373798
|
-
var import_get9 = __toESM(require_get(), 1);
|
|
373799
|
-
var import_isString7 = __toESM(require_isString(), 1);
|
|
373800
|
-
var import_unset3 = __toESM(require_unset(), 1);
|
|
373801
|
-
function createAjv(options2) {
|
|
373802
|
-
const ajv2 = new import_ajv.Ajv({
|
|
373803
|
-
discriminator: true,
|
|
373804
|
-
allErrors: true,
|
|
373805
|
-
unevaluated: true,
|
|
373806
|
-
strict: false,
|
|
373807
|
-
...options2
|
|
373808
|
-
});
|
|
373809
|
-
import_ajv_formats.default.default(ajv2);
|
|
373810
|
-
ajv2.addFormat("unix-time", /^[0-9]{10}$/);
|
|
373811
|
-
ajv2.addFormat("decimal", /^[0-9]+\.[0-9]{1,12}$/);
|
|
373812
|
-
return ajv2;
|
|
373813
|
-
}
|
|
373814
|
-
|
|
373815
373854
|
// ../schema/dist/services/services.js
|
|
373816
373855
|
var import_isEqual2 = __toESM(require_isEqual(), 1);
|
|
373817
373856
|
var import_isNull2 = __toESM(require_isNull(), 1);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@takeshape/cli",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.82.0",
|
|
4
4
|
"description": "TakeShape CLI",
|
|
5
5
|
"homepage": "https://www.takeshape.io",
|
|
6
6
|
"repository": {
|
|
@@ -70,11 +70,11 @@
|
|
|
70
70
|
"stream-to-promise": "^2.2.0",
|
|
71
71
|
"tmp": "^0.0.33",
|
|
72
72
|
"unzipper": "^0.10.11",
|
|
73
|
-
"@takeshape/branches": "11.
|
|
74
|
-
"@takeshape/schema": "11.
|
|
75
|
-
"@takeshape/
|
|
76
|
-
"@takeshape/
|
|
77
|
-
"@takeshape/
|
|
73
|
+
"@takeshape/branches": "11.82.0",
|
|
74
|
+
"@takeshape/schema": "11.82.0",
|
|
75
|
+
"@takeshape/ssg": "11.82.0",
|
|
76
|
+
"@takeshape/streams": "11.82.0",
|
|
77
|
+
"@takeshape/util": "11.82.0"
|
|
78
78
|
},
|
|
79
79
|
"engines": {
|
|
80
80
|
"node": ">=20"
|