@kintone/dts-gen 8.0.2 → 8.0.4

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.
@@ -119,6 +119,28 @@ eval("\n\nvar implementation = __webpack_require__(/*! ./implementation */ \"../
119
119
 
120
120
  /***/ }),
121
121
 
122
+ /***/ "../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js":
123
+ /*!*************************************************************************************************!*\
124
+ !*** ../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js ***!
125
+ \*************************************************************************************************/
126
+ /***/ ((module) => {
127
+
128
+ "use strict";
129
+ eval("\n\n/* eslint no-invalid-this: 1 */\n\nvar ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';\nvar toStr = Object.prototype.toString;\nvar max = Math.max;\nvar funcType = '[object Function]';\n\nvar concatty = function concatty(a, b) {\n var arr = [];\n\n for (var i = 0; i < a.length; i += 1) {\n arr[i] = a[i];\n }\n for (var j = 0; j < b.length; j += 1) {\n arr[j + a.length] = b[j];\n }\n\n return arr;\n};\n\nvar slicy = function slicy(arrLike, offset) {\n var arr = [];\n for (var i = offset || 0, j = 0; i < arrLike.length; i += 1, j += 1) {\n arr[j] = arrLike[i];\n }\n return arr;\n};\n\nvar joiny = function (arr, joiner) {\n var str = '';\n for (var i = 0; i < arr.length; i += 1) {\n str += arr[i];\n if (i + 1 < arr.length) {\n str += joiner;\n }\n }\n return str;\n};\n\nmodule.exports = function bind(that) {\n var target = this;\n if (typeof target !== 'function' || toStr.apply(target) !== funcType) {\n throw new TypeError(ERROR_MESSAGE + target);\n }\n var args = slicy(arguments, 1);\n\n var bound;\n var binder = function () {\n if (this instanceof bound) {\n var result = target.apply(\n this,\n concatty(args, arguments)\n );\n if (Object(result) === result) {\n return result;\n }\n return this;\n }\n return target.apply(\n that,\n concatty(args, arguments)\n );\n\n };\n\n var boundLength = max(0, target.length - args.length);\n var boundArgs = [];\n for (var i = 0; i < boundLength; i++) {\n boundArgs[i] = '$' + i;\n }\n\n bound = Function('binder', 'return function (' + joiny(boundArgs, ',') + '){ return binder.apply(this,arguments); }')(binder);\n\n if (target.prototype) {\n var Empty = function Empty() {};\n Empty.prototype = target.prototype;\n bound.prototype = new Empty();\n Empty.prototype = null;\n }\n\n return bound;\n};\n\n\n//# sourceURL=webpack://@kintone/dts-gen/../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js?");
130
+
131
+ /***/ }),
132
+
133
+ /***/ "../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js":
134
+ /*!****************************************************************************************!*\
135
+ !*** ../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js ***!
136
+ \****************************************************************************************/
137
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
138
+
139
+ "use strict";
140
+ eval("\n\nvar implementation = __webpack_require__(/*! ./implementation */ \"../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js\");\n\nmodule.exports = Function.prototype.bind || implementation;\n\n\n//# sourceURL=webpack://@kintone/dts-gen/../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js?");
141
+
142
+ /***/ }),
143
+
122
144
  /***/ "../../node_modules/.pnpm/get-intrinsic@1.2.1/node_modules/get-intrinsic/index.js":
123
145
  /*!****************************************************************************************!*\
124
146
  !*** ../../node_modules/.pnpm/get-intrinsic@1.2.1/node_modules/get-intrinsic/index.js ***!
@@ -126,7 +148,7 @@ eval("\n\nvar implementation = __webpack_require__(/*! ./implementation */ \"../
126
148
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
127
149
 
128
150
  "use strict";
129
- eval("\n\nvar undefined;\n\nvar $SyntaxError = SyntaxError;\nvar $Function = Function;\nvar $TypeError = TypeError;\n\n// eslint-disable-next-line consistent-return\nvar getEvalledConstructor = function (expressionSyntax) {\n\ttry {\n\t\treturn $Function('\"use strict\"; return (' + expressionSyntax + ').constructor;')();\n\t} catch (e) {}\n};\n\nvar $gOPD = Object.getOwnPropertyDescriptor;\nif ($gOPD) {\n\ttry {\n\t\t$gOPD({}, '');\n\t} catch (e) {\n\t\t$gOPD = null; // this is IE 8, which has a broken gOPD\n\t}\n}\n\nvar throwTypeError = function () {\n\tthrow new $TypeError();\n};\nvar ThrowTypeError = $gOPD\n\t? (function () {\n\t\ttry {\n\t\t\t// eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties\n\t\t\targuments.callee; // IE 8 does not throw here\n\t\t\treturn throwTypeError;\n\t\t} catch (calleeThrows) {\n\t\t\ttry {\n\t\t\t\t// IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '')\n\t\t\t\treturn $gOPD(arguments, 'callee').get;\n\t\t\t} catch (gOPDthrows) {\n\t\t\t\treturn throwTypeError;\n\t\t\t}\n\t\t}\n\t}())\n\t: throwTypeError;\n\nvar hasSymbols = __webpack_require__(/*! has-symbols */ \"../../node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/index.js\")();\nvar hasProto = __webpack_require__(/*! has-proto */ \"../../node_modules/.pnpm/has-proto@1.0.1/node_modules/has-proto/index.js\")();\n\nvar getProto = Object.getPrototypeOf || (\n\thasProto\n\t\t? function (x) { return x.__proto__; } // eslint-disable-line no-proto\n\t\t: null\n);\n\nvar needsEval = {};\n\nvar TypedArray = typeof Uint8Array === 'undefined' || !getProto ? undefined : getProto(Uint8Array);\n\nvar INTRINSICS = {\n\t'%AggregateError%': typeof AggregateError === 'undefined' ? undefined : AggregateError,\n\t'%Array%': Array,\n\t'%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer,\n\t'%ArrayIteratorPrototype%': hasSymbols && getProto ? getProto([][Symbol.iterator]()) : undefined,\n\t'%AsyncFromSyncIteratorPrototype%': undefined,\n\t'%AsyncFunction%': needsEval,\n\t'%AsyncGenerator%': needsEval,\n\t'%AsyncGeneratorFunction%': needsEval,\n\t'%AsyncIteratorPrototype%': needsEval,\n\t'%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,\n\t'%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt,\n\t'%BigInt64Array%': typeof BigInt64Array === 'undefined' ? undefined : BigInt64Array,\n\t'%BigUint64Array%': typeof BigUint64Array === 'undefined' ? undefined : BigUint64Array,\n\t'%Boolean%': Boolean,\n\t'%DataView%': typeof DataView === 'undefined' ? undefined : DataView,\n\t'%Date%': Date,\n\t'%decodeURI%': decodeURI,\n\t'%decodeURIComponent%': decodeURIComponent,\n\t'%encodeURI%': encodeURI,\n\t'%encodeURIComponent%': encodeURIComponent,\n\t'%Error%': Error,\n\t'%eval%': eval, // eslint-disable-line no-eval\n\t'%EvalError%': EvalError,\n\t'%Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array,\n\t'%Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array,\n\t'%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined : FinalizationRegistry,\n\t'%Function%': $Function,\n\t'%GeneratorFunction%': needsEval,\n\t'%Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array,\n\t'%Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array,\n\t'%Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array,\n\t'%isFinite%': isFinite,\n\t'%isNaN%': isNaN,\n\t'%IteratorPrototype%': hasSymbols && getProto ? getProto(getProto([][Symbol.iterator]())) : undefined,\n\t'%JSON%': typeof JSON === 'object' ? JSON : undefined,\n\t'%Map%': typeof Map === 'undefined' ? undefined : Map,\n\t'%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols || !getProto ? undefined : getProto(new Map()[Symbol.iterator]()),\n\t'%Math%': Math,\n\t'%Number%': Number,\n\t'%Object%': Object,\n\t'%parseFloat%': parseFloat,\n\t'%parseInt%': parseInt,\n\t'%Promise%': typeof Promise === 'undefined' ? undefined : Promise,\n\t'%Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy,\n\t'%RangeError%': RangeError,\n\t'%ReferenceError%': ReferenceError,\n\t'%Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect,\n\t'%RegExp%': RegExp,\n\t'%Set%': typeof Set === 'undefined' ? undefined : Set,\n\t'%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols || !getProto ? undefined : getProto(new Set()[Symbol.iterator]()),\n\t'%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer,\n\t'%String%': String,\n\t'%StringIteratorPrototype%': hasSymbols && getProto ? getProto(''[Symbol.iterator]()) : undefined,\n\t'%Symbol%': hasSymbols ? Symbol : undefined,\n\t'%SyntaxError%': $SyntaxError,\n\t'%ThrowTypeError%': ThrowTypeError,\n\t'%TypedArray%': TypedArray,\n\t'%TypeError%': $TypeError,\n\t'%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array,\n\t'%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray,\n\t'%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array,\n\t'%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array,\n\t'%URIError%': URIError,\n\t'%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap,\n\t'%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef,\n\t'%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet\n};\n\nif (getProto) {\n\ttry {\n\t\tnull.error; // eslint-disable-line no-unused-expressions\n\t} catch (e) {\n\t\t// https://github.com/tc39/proposal-shadowrealm/pull/384#issuecomment-1364264229\n\t\tvar errorProto = getProto(getProto(e));\n\t\tINTRINSICS['%Error.prototype%'] = errorProto;\n\t}\n}\n\nvar doEval = function doEval(name) {\n\tvar value;\n\tif (name === '%AsyncFunction%') {\n\t\tvalue = getEvalledConstructor('async function () {}');\n\t} else if (name === '%GeneratorFunction%') {\n\t\tvalue = getEvalledConstructor('function* () {}');\n\t} else if (name === '%AsyncGeneratorFunction%') {\n\t\tvalue = getEvalledConstructor('async function* () {}');\n\t} else if (name === '%AsyncGenerator%') {\n\t\tvar fn = doEval('%AsyncGeneratorFunction%');\n\t\tif (fn) {\n\t\t\tvalue = fn.prototype;\n\t\t}\n\t} else if (name === '%AsyncIteratorPrototype%') {\n\t\tvar gen = doEval('%AsyncGenerator%');\n\t\tif (gen && getProto) {\n\t\t\tvalue = getProto(gen.prototype);\n\t\t}\n\t}\n\n\tINTRINSICS[name] = value;\n\n\treturn value;\n};\n\nvar LEGACY_ALIASES = {\n\t'%ArrayBufferPrototype%': ['ArrayBuffer', 'prototype'],\n\t'%ArrayPrototype%': ['Array', 'prototype'],\n\t'%ArrayProto_entries%': ['Array', 'prototype', 'entries'],\n\t'%ArrayProto_forEach%': ['Array', 'prototype', 'forEach'],\n\t'%ArrayProto_keys%': ['Array', 'prototype', 'keys'],\n\t'%ArrayProto_values%': ['Array', 'prototype', 'values'],\n\t'%AsyncFunctionPrototype%': ['AsyncFunction', 'prototype'],\n\t'%AsyncGenerator%': ['AsyncGeneratorFunction', 'prototype'],\n\t'%AsyncGeneratorPrototype%': ['AsyncGeneratorFunction', 'prototype', 'prototype'],\n\t'%BooleanPrototype%': ['Boolean', 'prototype'],\n\t'%DataViewPrototype%': ['DataView', 'prototype'],\n\t'%DatePrototype%': ['Date', 'prototype'],\n\t'%ErrorPrototype%': ['Error', 'prototype'],\n\t'%EvalErrorPrototype%': ['EvalError', 'prototype'],\n\t'%Float32ArrayPrototype%': ['Float32Array', 'prototype'],\n\t'%Float64ArrayPrototype%': ['Float64Array', 'prototype'],\n\t'%FunctionPrototype%': ['Function', 'prototype'],\n\t'%Generator%': ['GeneratorFunction', 'prototype'],\n\t'%GeneratorPrototype%': ['GeneratorFunction', 'prototype', 'prototype'],\n\t'%Int8ArrayPrototype%': ['Int8Array', 'prototype'],\n\t'%Int16ArrayPrototype%': ['Int16Array', 'prototype'],\n\t'%Int32ArrayPrototype%': ['Int32Array', 'prototype'],\n\t'%JSONParse%': ['JSON', 'parse'],\n\t'%JSONStringify%': ['JSON', 'stringify'],\n\t'%MapPrototype%': ['Map', 'prototype'],\n\t'%NumberPrototype%': ['Number', 'prototype'],\n\t'%ObjectPrototype%': ['Object', 'prototype'],\n\t'%ObjProto_toString%': ['Object', 'prototype', 'toString'],\n\t'%ObjProto_valueOf%': ['Object', 'prototype', 'valueOf'],\n\t'%PromisePrototype%': ['Promise', 'prototype'],\n\t'%PromiseProto_then%': ['Promise', 'prototype', 'then'],\n\t'%Promise_all%': ['Promise', 'all'],\n\t'%Promise_reject%': ['Promise', 'reject'],\n\t'%Promise_resolve%': ['Promise', 'resolve'],\n\t'%RangeErrorPrototype%': ['RangeError', 'prototype'],\n\t'%ReferenceErrorPrototype%': ['ReferenceError', 'prototype'],\n\t'%RegExpPrototype%': ['RegExp', 'prototype'],\n\t'%SetPrototype%': ['Set', 'prototype'],\n\t'%SharedArrayBufferPrototype%': ['SharedArrayBuffer', 'prototype'],\n\t'%StringPrototype%': ['String', 'prototype'],\n\t'%SymbolPrototype%': ['Symbol', 'prototype'],\n\t'%SyntaxErrorPrototype%': ['SyntaxError', 'prototype'],\n\t'%TypedArrayPrototype%': ['TypedArray', 'prototype'],\n\t'%TypeErrorPrototype%': ['TypeError', 'prototype'],\n\t'%Uint8ArrayPrototype%': ['Uint8Array', 'prototype'],\n\t'%Uint8ClampedArrayPrototype%': ['Uint8ClampedArray', 'prototype'],\n\t'%Uint16ArrayPrototype%': ['Uint16Array', 'prototype'],\n\t'%Uint32ArrayPrototype%': ['Uint32Array', 'prototype'],\n\t'%URIErrorPrototype%': ['URIError', 'prototype'],\n\t'%WeakMapPrototype%': ['WeakMap', 'prototype'],\n\t'%WeakSetPrototype%': ['WeakSet', 'prototype']\n};\n\nvar bind = __webpack_require__(/*! function-bind */ \"../../node_modules/.pnpm/function-bind@1.1.1/node_modules/function-bind/index.js\");\nvar hasOwn = __webpack_require__(/*! has */ \"../../node_modules/.pnpm/has@1.0.3/node_modules/has/src/index.js\");\nvar $concat = bind.call(Function.call, Array.prototype.concat);\nvar $spliceApply = bind.call(Function.apply, Array.prototype.splice);\nvar $replace = bind.call(Function.call, String.prototype.replace);\nvar $strSlice = bind.call(Function.call, String.prototype.slice);\nvar $exec = bind.call(Function.call, RegExp.prototype.exec);\n\n/* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */\nvar rePropName = /[^%.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|%$))/g;\nvar reEscapeChar = /\\\\(\\\\)?/g; /** Used to match backslashes in property paths. */\nvar stringToPath = function stringToPath(string) {\n\tvar first = $strSlice(string, 0, 1);\n\tvar last = $strSlice(string, -1);\n\tif (first === '%' && last !== '%') {\n\t\tthrow new $SyntaxError('invalid intrinsic syntax, expected closing `%`');\n\t} else if (last === '%' && first !== '%') {\n\t\tthrow new $SyntaxError('invalid intrinsic syntax, expected opening `%`');\n\t}\n\tvar result = [];\n\t$replace(string, rePropName, function (match, number, quote, subString) {\n\t\tresult[result.length] = quote ? $replace(subString, reEscapeChar, '$1') : number || match;\n\t});\n\treturn result;\n};\n/* end adaptation */\n\nvar getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) {\n\tvar intrinsicName = name;\n\tvar alias;\n\tif (hasOwn(LEGACY_ALIASES, intrinsicName)) {\n\t\talias = LEGACY_ALIASES[intrinsicName];\n\t\tintrinsicName = '%' + alias[0] + '%';\n\t}\n\n\tif (hasOwn(INTRINSICS, intrinsicName)) {\n\t\tvar value = INTRINSICS[intrinsicName];\n\t\tif (value === needsEval) {\n\t\t\tvalue = doEval(intrinsicName);\n\t\t}\n\t\tif (typeof value === 'undefined' && !allowMissing) {\n\t\t\tthrow new $TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!');\n\t\t}\n\n\t\treturn {\n\t\t\talias: alias,\n\t\t\tname: intrinsicName,\n\t\t\tvalue: value\n\t\t};\n\t}\n\n\tthrow new $SyntaxError('intrinsic ' + name + ' does not exist!');\n};\n\nmodule.exports = function GetIntrinsic(name, allowMissing) {\n\tif (typeof name !== 'string' || name.length === 0) {\n\t\tthrow new $TypeError('intrinsic name must be a non-empty string');\n\t}\n\tif (arguments.length > 1 && typeof allowMissing !== 'boolean') {\n\t\tthrow new $TypeError('\"allowMissing\" argument must be a boolean');\n\t}\n\n\tif ($exec(/^%?[^%]*%?$/, name) === null) {\n\t\tthrow new $SyntaxError('`%` may not be present anywhere but at the beginning and end of the intrinsic name');\n\t}\n\tvar parts = stringToPath(name);\n\tvar intrinsicBaseName = parts.length > 0 ? parts[0] : '';\n\n\tvar intrinsic = getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing);\n\tvar intrinsicRealName = intrinsic.name;\n\tvar value = intrinsic.value;\n\tvar skipFurtherCaching = false;\n\n\tvar alias = intrinsic.alias;\n\tif (alias) {\n\t\tintrinsicBaseName = alias[0];\n\t\t$spliceApply(parts, $concat([0, 1], alias));\n\t}\n\n\tfor (var i = 1, isOwn = true; i < parts.length; i += 1) {\n\t\tvar part = parts[i];\n\t\tvar first = $strSlice(part, 0, 1);\n\t\tvar last = $strSlice(part, -1);\n\t\tif (\n\t\t\t(\n\t\t\t\t(first === '\"' || first === \"'\" || first === '`')\n\t\t\t\t|| (last === '\"' || last === \"'\" || last === '`')\n\t\t\t)\n\t\t\t&& first !== last\n\t\t) {\n\t\t\tthrow new $SyntaxError('property names with quotes must have matching quotes');\n\t\t}\n\t\tif (part === 'constructor' || !isOwn) {\n\t\t\tskipFurtherCaching = true;\n\t\t}\n\n\t\tintrinsicBaseName += '.' + part;\n\t\tintrinsicRealName = '%' + intrinsicBaseName + '%';\n\n\t\tif (hasOwn(INTRINSICS, intrinsicRealName)) {\n\t\t\tvalue = INTRINSICS[intrinsicRealName];\n\t\t} else if (value != null) {\n\t\t\tif (!(part in value)) {\n\t\t\t\tif (!allowMissing) {\n\t\t\t\t\tthrow new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.');\n\t\t\t\t}\n\t\t\t\treturn void undefined;\n\t\t\t}\n\t\t\tif ($gOPD && (i + 1) >= parts.length) {\n\t\t\t\tvar desc = $gOPD(value, part);\n\t\t\t\tisOwn = !!desc;\n\n\t\t\t\t// By convention, when a data property is converted to an accessor\n\t\t\t\t// property to emulate a data property that does not suffer from\n\t\t\t\t// the override mistake, that accessor's getter is marked with\n\t\t\t\t// an `originalValue` property. Here, when we detect this, we\n\t\t\t\t// uphold the illusion by pretending to see that original data\n\t\t\t\t// property, i.e., returning the value rather than the getter\n\t\t\t\t// itself.\n\t\t\t\tif (isOwn && 'get' in desc && !('originalValue' in desc.get)) {\n\t\t\t\t\tvalue = desc.get;\n\t\t\t\t} else {\n\t\t\t\t\tvalue = value[part];\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tisOwn = hasOwn(value, part);\n\t\t\t\tvalue = value[part];\n\t\t\t}\n\n\t\t\tif (isOwn && !skipFurtherCaching) {\n\t\t\t\tINTRINSICS[intrinsicRealName] = value;\n\t\t\t}\n\t\t}\n\t}\n\treturn value;\n};\n\n\n//# sourceURL=webpack://@kintone/dts-gen/../../node_modules/.pnpm/get-intrinsic@1.2.1/node_modules/get-intrinsic/index.js?");
151
+ eval("\n\nvar undefined;\n\nvar $SyntaxError = SyntaxError;\nvar $Function = Function;\nvar $TypeError = TypeError;\n\n// eslint-disable-next-line consistent-return\nvar getEvalledConstructor = function (expressionSyntax) {\n\ttry {\n\t\treturn $Function('\"use strict\"; return (' + expressionSyntax + ').constructor;')();\n\t} catch (e) {}\n};\n\nvar $gOPD = Object.getOwnPropertyDescriptor;\nif ($gOPD) {\n\ttry {\n\t\t$gOPD({}, '');\n\t} catch (e) {\n\t\t$gOPD = null; // this is IE 8, which has a broken gOPD\n\t}\n}\n\nvar throwTypeError = function () {\n\tthrow new $TypeError();\n};\nvar ThrowTypeError = $gOPD\n\t? (function () {\n\t\ttry {\n\t\t\t// eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties\n\t\t\targuments.callee; // IE 8 does not throw here\n\t\t\treturn throwTypeError;\n\t\t} catch (calleeThrows) {\n\t\t\ttry {\n\t\t\t\t// IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '')\n\t\t\t\treturn $gOPD(arguments, 'callee').get;\n\t\t\t} catch (gOPDthrows) {\n\t\t\t\treturn throwTypeError;\n\t\t\t}\n\t\t}\n\t}())\n\t: throwTypeError;\n\nvar hasSymbols = __webpack_require__(/*! has-symbols */ \"../../node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols/index.js\")();\nvar hasProto = __webpack_require__(/*! has-proto */ \"../../node_modules/.pnpm/has-proto@1.0.1/node_modules/has-proto/index.js\")();\n\nvar getProto = Object.getPrototypeOf || (\n\thasProto\n\t\t? function (x) { return x.__proto__; } // eslint-disable-line no-proto\n\t\t: null\n);\n\nvar needsEval = {};\n\nvar TypedArray = typeof Uint8Array === 'undefined' || !getProto ? undefined : getProto(Uint8Array);\n\nvar INTRINSICS = {\n\t'%AggregateError%': typeof AggregateError === 'undefined' ? undefined : AggregateError,\n\t'%Array%': Array,\n\t'%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer,\n\t'%ArrayIteratorPrototype%': hasSymbols && getProto ? getProto([][Symbol.iterator]()) : undefined,\n\t'%AsyncFromSyncIteratorPrototype%': undefined,\n\t'%AsyncFunction%': needsEval,\n\t'%AsyncGenerator%': needsEval,\n\t'%AsyncGeneratorFunction%': needsEval,\n\t'%AsyncIteratorPrototype%': needsEval,\n\t'%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,\n\t'%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt,\n\t'%BigInt64Array%': typeof BigInt64Array === 'undefined' ? undefined : BigInt64Array,\n\t'%BigUint64Array%': typeof BigUint64Array === 'undefined' ? undefined : BigUint64Array,\n\t'%Boolean%': Boolean,\n\t'%DataView%': typeof DataView === 'undefined' ? undefined : DataView,\n\t'%Date%': Date,\n\t'%decodeURI%': decodeURI,\n\t'%decodeURIComponent%': decodeURIComponent,\n\t'%encodeURI%': encodeURI,\n\t'%encodeURIComponent%': encodeURIComponent,\n\t'%Error%': Error,\n\t'%eval%': eval, // eslint-disable-line no-eval\n\t'%EvalError%': EvalError,\n\t'%Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array,\n\t'%Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array,\n\t'%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined : FinalizationRegistry,\n\t'%Function%': $Function,\n\t'%GeneratorFunction%': needsEval,\n\t'%Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array,\n\t'%Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array,\n\t'%Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array,\n\t'%isFinite%': isFinite,\n\t'%isNaN%': isNaN,\n\t'%IteratorPrototype%': hasSymbols && getProto ? getProto(getProto([][Symbol.iterator]())) : undefined,\n\t'%JSON%': typeof JSON === 'object' ? JSON : undefined,\n\t'%Map%': typeof Map === 'undefined' ? undefined : Map,\n\t'%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols || !getProto ? undefined : getProto(new Map()[Symbol.iterator]()),\n\t'%Math%': Math,\n\t'%Number%': Number,\n\t'%Object%': Object,\n\t'%parseFloat%': parseFloat,\n\t'%parseInt%': parseInt,\n\t'%Promise%': typeof Promise === 'undefined' ? undefined : Promise,\n\t'%Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy,\n\t'%RangeError%': RangeError,\n\t'%ReferenceError%': ReferenceError,\n\t'%Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect,\n\t'%RegExp%': RegExp,\n\t'%Set%': typeof Set === 'undefined' ? undefined : Set,\n\t'%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols || !getProto ? undefined : getProto(new Set()[Symbol.iterator]()),\n\t'%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer,\n\t'%String%': String,\n\t'%StringIteratorPrototype%': hasSymbols && getProto ? getProto(''[Symbol.iterator]()) : undefined,\n\t'%Symbol%': hasSymbols ? Symbol : undefined,\n\t'%SyntaxError%': $SyntaxError,\n\t'%ThrowTypeError%': ThrowTypeError,\n\t'%TypedArray%': TypedArray,\n\t'%TypeError%': $TypeError,\n\t'%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array,\n\t'%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray,\n\t'%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array,\n\t'%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array,\n\t'%URIError%': URIError,\n\t'%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap,\n\t'%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef,\n\t'%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet\n};\n\nif (getProto) {\n\ttry {\n\t\tnull.error; // eslint-disable-line no-unused-expressions\n\t} catch (e) {\n\t\t// https://github.com/tc39/proposal-shadowrealm/pull/384#issuecomment-1364264229\n\t\tvar errorProto = getProto(getProto(e));\n\t\tINTRINSICS['%Error.prototype%'] = errorProto;\n\t}\n}\n\nvar doEval = function doEval(name) {\n\tvar value;\n\tif (name === '%AsyncFunction%') {\n\t\tvalue = getEvalledConstructor('async function () {}');\n\t} else if (name === '%GeneratorFunction%') {\n\t\tvalue = getEvalledConstructor('function* () {}');\n\t} else if (name === '%AsyncGeneratorFunction%') {\n\t\tvalue = getEvalledConstructor('async function* () {}');\n\t} else if (name === '%AsyncGenerator%') {\n\t\tvar fn = doEval('%AsyncGeneratorFunction%');\n\t\tif (fn) {\n\t\t\tvalue = fn.prototype;\n\t\t}\n\t} else if (name === '%AsyncIteratorPrototype%') {\n\t\tvar gen = doEval('%AsyncGenerator%');\n\t\tif (gen && getProto) {\n\t\t\tvalue = getProto(gen.prototype);\n\t\t}\n\t}\n\n\tINTRINSICS[name] = value;\n\n\treturn value;\n};\n\nvar LEGACY_ALIASES = {\n\t'%ArrayBufferPrototype%': ['ArrayBuffer', 'prototype'],\n\t'%ArrayPrototype%': ['Array', 'prototype'],\n\t'%ArrayProto_entries%': ['Array', 'prototype', 'entries'],\n\t'%ArrayProto_forEach%': ['Array', 'prototype', 'forEach'],\n\t'%ArrayProto_keys%': ['Array', 'prototype', 'keys'],\n\t'%ArrayProto_values%': ['Array', 'prototype', 'values'],\n\t'%AsyncFunctionPrototype%': ['AsyncFunction', 'prototype'],\n\t'%AsyncGenerator%': ['AsyncGeneratorFunction', 'prototype'],\n\t'%AsyncGeneratorPrototype%': ['AsyncGeneratorFunction', 'prototype', 'prototype'],\n\t'%BooleanPrototype%': ['Boolean', 'prototype'],\n\t'%DataViewPrototype%': ['DataView', 'prototype'],\n\t'%DatePrototype%': ['Date', 'prototype'],\n\t'%ErrorPrototype%': ['Error', 'prototype'],\n\t'%EvalErrorPrototype%': ['EvalError', 'prototype'],\n\t'%Float32ArrayPrototype%': ['Float32Array', 'prototype'],\n\t'%Float64ArrayPrototype%': ['Float64Array', 'prototype'],\n\t'%FunctionPrototype%': ['Function', 'prototype'],\n\t'%Generator%': ['GeneratorFunction', 'prototype'],\n\t'%GeneratorPrototype%': ['GeneratorFunction', 'prototype', 'prototype'],\n\t'%Int8ArrayPrototype%': ['Int8Array', 'prototype'],\n\t'%Int16ArrayPrototype%': ['Int16Array', 'prototype'],\n\t'%Int32ArrayPrototype%': ['Int32Array', 'prototype'],\n\t'%JSONParse%': ['JSON', 'parse'],\n\t'%JSONStringify%': ['JSON', 'stringify'],\n\t'%MapPrototype%': ['Map', 'prototype'],\n\t'%NumberPrototype%': ['Number', 'prototype'],\n\t'%ObjectPrototype%': ['Object', 'prototype'],\n\t'%ObjProto_toString%': ['Object', 'prototype', 'toString'],\n\t'%ObjProto_valueOf%': ['Object', 'prototype', 'valueOf'],\n\t'%PromisePrototype%': ['Promise', 'prototype'],\n\t'%PromiseProto_then%': ['Promise', 'prototype', 'then'],\n\t'%Promise_all%': ['Promise', 'all'],\n\t'%Promise_reject%': ['Promise', 'reject'],\n\t'%Promise_resolve%': ['Promise', 'resolve'],\n\t'%RangeErrorPrototype%': ['RangeError', 'prototype'],\n\t'%ReferenceErrorPrototype%': ['ReferenceError', 'prototype'],\n\t'%RegExpPrototype%': ['RegExp', 'prototype'],\n\t'%SetPrototype%': ['Set', 'prototype'],\n\t'%SharedArrayBufferPrototype%': ['SharedArrayBuffer', 'prototype'],\n\t'%StringPrototype%': ['String', 'prototype'],\n\t'%SymbolPrototype%': ['Symbol', 'prototype'],\n\t'%SyntaxErrorPrototype%': ['SyntaxError', 'prototype'],\n\t'%TypedArrayPrototype%': ['TypedArray', 'prototype'],\n\t'%TypeErrorPrototype%': ['TypeError', 'prototype'],\n\t'%Uint8ArrayPrototype%': ['Uint8Array', 'prototype'],\n\t'%Uint8ClampedArrayPrototype%': ['Uint8ClampedArray', 'prototype'],\n\t'%Uint16ArrayPrototype%': ['Uint16Array', 'prototype'],\n\t'%Uint32ArrayPrototype%': ['Uint32Array', 'prototype'],\n\t'%URIErrorPrototype%': ['URIError', 'prototype'],\n\t'%WeakMapPrototype%': ['WeakMap', 'prototype'],\n\t'%WeakSetPrototype%': ['WeakSet', 'prototype']\n};\n\nvar bind = __webpack_require__(/*! function-bind */ \"../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js\");\nvar hasOwn = __webpack_require__(/*! has */ \"../../node_modules/.pnpm/has@1.0.3/node_modules/has/src/index.js\");\nvar $concat = bind.call(Function.call, Array.prototype.concat);\nvar $spliceApply = bind.call(Function.apply, Array.prototype.splice);\nvar $replace = bind.call(Function.call, String.prototype.replace);\nvar $strSlice = bind.call(Function.call, String.prototype.slice);\nvar $exec = bind.call(Function.call, RegExp.prototype.exec);\n\n/* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */\nvar rePropName = /[^%.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|%$))/g;\nvar reEscapeChar = /\\\\(\\\\)?/g; /** Used to match backslashes in property paths. */\nvar stringToPath = function stringToPath(string) {\n\tvar first = $strSlice(string, 0, 1);\n\tvar last = $strSlice(string, -1);\n\tif (first === '%' && last !== '%') {\n\t\tthrow new $SyntaxError('invalid intrinsic syntax, expected closing `%`');\n\t} else if (last === '%' && first !== '%') {\n\t\tthrow new $SyntaxError('invalid intrinsic syntax, expected opening `%`');\n\t}\n\tvar result = [];\n\t$replace(string, rePropName, function (match, number, quote, subString) {\n\t\tresult[result.length] = quote ? $replace(subString, reEscapeChar, '$1') : number || match;\n\t});\n\treturn result;\n};\n/* end adaptation */\n\nvar getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) {\n\tvar intrinsicName = name;\n\tvar alias;\n\tif (hasOwn(LEGACY_ALIASES, intrinsicName)) {\n\t\talias = LEGACY_ALIASES[intrinsicName];\n\t\tintrinsicName = '%' + alias[0] + '%';\n\t}\n\n\tif (hasOwn(INTRINSICS, intrinsicName)) {\n\t\tvar value = INTRINSICS[intrinsicName];\n\t\tif (value === needsEval) {\n\t\t\tvalue = doEval(intrinsicName);\n\t\t}\n\t\tif (typeof value === 'undefined' && !allowMissing) {\n\t\t\tthrow new $TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!');\n\t\t}\n\n\t\treturn {\n\t\t\talias: alias,\n\t\t\tname: intrinsicName,\n\t\t\tvalue: value\n\t\t};\n\t}\n\n\tthrow new $SyntaxError('intrinsic ' + name + ' does not exist!');\n};\n\nmodule.exports = function GetIntrinsic(name, allowMissing) {\n\tif (typeof name !== 'string' || name.length === 0) {\n\t\tthrow new $TypeError('intrinsic name must be a non-empty string');\n\t}\n\tif (arguments.length > 1 && typeof allowMissing !== 'boolean') {\n\t\tthrow new $TypeError('\"allowMissing\" argument must be a boolean');\n\t}\n\n\tif ($exec(/^%?[^%]*%?$/, name) === null) {\n\t\tthrow new $SyntaxError('`%` may not be present anywhere but at the beginning and end of the intrinsic name');\n\t}\n\tvar parts = stringToPath(name);\n\tvar intrinsicBaseName = parts.length > 0 ? parts[0] : '';\n\n\tvar intrinsic = getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing);\n\tvar intrinsicRealName = intrinsic.name;\n\tvar value = intrinsic.value;\n\tvar skipFurtherCaching = false;\n\n\tvar alias = intrinsic.alias;\n\tif (alias) {\n\t\tintrinsicBaseName = alias[0];\n\t\t$spliceApply(parts, $concat([0, 1], alias));\n\t}\n\n\tfor (var i = 1, isOwn = true; i < parts.length; i += 1) {\n\t\tvar part = parts[i];\n\t\tvar first = $strSlice(part, 0, 1);\n\t\tvar last = $strSlice(part, -1);\n\t\tif (\n\t\t\t(\n\t\t\t\t(first === '\"' || first === \"'\" || first === '`')\n\t\t\t\t|| (last === '\"' || last === \"'\" || last === '`')\n\t\t\t)\n\t\t\t&& first !== last\n\t\t) {\n\t\t\tthrow new $SyntaxError('property names with quotes must have matching quotes');\n\t\t}\n\t\tif (part === 'constructor' || !isOwn) {\n\t\t\tskipFurtherCaching = true;\n\t\t}\n\n\t\tintrinsicBaseName += '.' + part;\n\t\tintrinsicRealName = '%' + intrinsicBaseName + '%';\n\n\t\tif (hasOwn(INTRINSICS, intrinsicRealName)) {\n\t\t\tvalue = INTRINSICS[intrinsicRealName];\n\t\t} else if (value != null) {\n\t\t\tif (!(part in value)) {\n\t\t\t\tif (!allowMissing) {\n\t\t\t\t\tthrow new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.');\n\t\t\t\t}\n\t\t\t\treturn void undefined;\n\t\t\t}\n\t\t\tif ($gOPD && (i + 1) >= parts.length) {\n\t\t\t\tvar desc = $gOPD(value, part);\n\t\t\t\tisOwn = !!desc;\n\n\t\t\t\t// By convention, when a data property is converted to an accessor\n\t\t\t\t// property to emulate a data property that does not suffer from\n\t\t\t\t// the override mistake, that accessor's getter is marked with\n\t\t\t\t// an `originalValue` property. Here, when we detect this, we\n\t\t\t\t// uphold the illusion by pretending to see that original data\n\t\t\t\t// property, i.e., returning the value rather than the getter\n\t\t\t\t// itself.\n\t\t\t\tif (isOwn && 'get' in desc && !('originalValue' in desc.get)) {\n\t\t\t\t\tvalue = desc.get;\n\t\t\t\t} else {\n\t\t\t\t\tvalue = value[part];\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tisOwn = hasOwn(value, part);\n\t\t\t\tvalue = value[part];\n\t\t\t}\n\n\t\t\tif (isOwn && !skipFurtherCaching) {\n\t\t\t\tINTRINSICS[intrinsicRealName] = value;\n\t\t\t}\n\t\t}\n\t}\n\treturn value;\n};\n\n\n//# sourceURL=webpack://@kintone/dts-gen/../../node_modules/.pnpm/get-intrinsic@1.2.1/node_modules/get-intrinsic/index.js?");
130
152
 
131
153
  /***/ }),
132
154
 
@@ -203,7 +225,7 @@ eval("\n\nvar hasSymbols = __webpack_require__(/*! has-symbols/shams */ \"../../
203
225
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
204
226
 
205
227
  "use strict";
206
- eval("\n\nvar bind = __webpack_require__(/*! function-bind */ \"../../node_modules/.pnpm/function-bind@1.1.1/node_modules/function-bind/index.js\");\n\nmodule.exports = bind.call(Function.call, Object.prototype.hasOwnProperty);\n\n\n//# sourceURL=webpack://@kintone/dts-gen/../../node_modules/.pnpm/has@1.0.3/node_modules/has/src/index.js?");
228
+ eval("\n\nvar bind = __webpack_require__(/*! function-bind */ \"../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js\");\n\nmodule.exports = bind.call(Function.call, Object.prototype.hasOwnProperty);\n\n\n//# sourceURL=webpack://@kintone/dts-gen/../../node_modules/.pnpm/has@1.0.3/node_modules/has/src/index.js?");
207
229
 
208
230
  /***/ }),
209
231
 
@@ -1,3 +1,4 @@
1
+ /// <reference types="node" />
1
2
  import * as fs from "fs";
2
3
  import type { SetUpTestAppClient, AddFormFieldOutput, JsCustomizeOutput, AddRecordOutput } from "../kintone/clients/setup-test-app-client";
3
4
  type Client = SetUpTestAppClient;
@@ -1 +1 @@
1
- {"version":3,"file":"setup-test-utils.js","sourceRoot":"","sources":["../../src/integration-tests/setup-test-utils.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"setup-test-utils.js","sourceRoot":"","sources":["../../src/integration-tests/setup-test-utils.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"axios-utils.js","sourceRoot":"","sources":["../../../src/kintone/clients/axios-utils.ts"],"names":[],"mappings":";;;;;;AAOA,kDAA0B;AAa1B,MAAM,gBAAgB,GAAG,CAAC,KAAuB,EAAiB,EAAE;IAClE,IAAI,KAAmC,CAAC;IACxC,4DAA4D;IAC5D,IAAI,KAAK,CAAC,KAAK,EAAE;QACf,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,GAAG,IAAI,GAAG,CAC9D,KAAK,CAAC,KAAK,CACZ,CAAC;QACF,KAAK,GAAG;YACN,QAAQ;YACR,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,QAAQ,CAAC,IAAI,EAAE,EAAE,CAAC;SACzB,CAAC;QAEF,IAAI,QAAQ,CAAC,MAAM,GAAG,CAAC,IAAI,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE;YAC9C,KAAK,CAAC,IAAI,GAAG,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAC;SACrC;KACF;IAED,MAAM,OAAO,GAAwB,IAAI,eAAK,CAAC,YAAY,EAAE,CAAC;IAC9D,IAAI,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC,QAAQ,EAAE;QACpC,OAAO,CAAC,wBAAwB,CAAC,GAAG,MAAM,CAAC,IAAI,CAC7C,GAAG,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC,QAAQ,EAAE,CACtC,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;KACtB;SAAM,IAAI,KAAK,CAAC,QAAQ,EAAE;QACzB,OAAO,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,QAAQ,CAAC;KAChD;SAAM,IAAI,KAAK,CAAC,UAAU,EAAE;QAC3B,OAAO,CAAC,aAAa,GAAG,UAAU,KAAK,CAAC,UAAU,EAAE,CAAC;KACtD;SAAM;QACL,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;KACvD;IAED,IAAI,KAAK,CAAC,iBAAiB,IAAI,KAAK,CAAC,iBAAiB,EAAE;QACtD,OAAO,CAAC,aAAa;YACnB,QAAQ;gBACR,MAAM,CAAC,IAAI,CACT,GAAG,KAAK,CAAC,iBAAiB,IAAI,KAAK,CAAC,iBAAiB,EAAE,CACxD,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;KACxB;IACD,OAAO,yBAAiB,CAAC,wBAAwB,CAAC;QAChD,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,OAAO;QACP,KAAK;KACN,CAAC,CAAC;AACL,CAAC,CAAC;AAEF,MAAM,wBAAwB,GAAG,CAAC,MAA0B,EAAE,EAAE;IAC9D,OAAO,eAAK,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;AAC9B,CAAC,CAAC;AAEW,QAAA,UAAU,GAAG;IACxB,gBAAgB;CACjB,CAAC;AAEW,QAAA,iBAAiB,GAAG;IAC/B,wBAAwB;CACzB,CAAC"}
1
+ {"version":3,"file":"axios-utils.js","sourceRoot":"","sources":["../../../src/kintone/clients/axios-utils.ts"],"names":[],"mappings":";;;;;;AAOA,kDAA0B;AAa1B,MAAM,gBAAgB,GAAG,CAAC,KAAuB,EAAiB,EAAE;IAClE,IAAI,KAAmC,CAAC;IACxC,4DAA4D;IAC5D,IAAI,KAAK,CAAC,KAAK,EAAE,CAAC;QAChB,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,GAAG,IAAI,GAAG,CAC9D,KAAK,CAAC,KAAK,CACZ,CAAC;QACF,KAAK,GAAG;YACN,QAAQ;YACR,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,QAAQ,CAAC,IAAI,EAAE,EAAE,CAAC;SACzB,CAAC;QAEF,IAAI,QAAQ,CAAC,MAAM,GAAG,CAAC,IAAI,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YAC/C,KAAK,CAAC,IAAI,GAAG,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAC;QACtC,CAAC;IACH,CAAC;IAED,MAAM,OAAO,GAAwB,IAAI,eAAK,CAAC,YAAY,EAAE,CAAC;IAC9D,IAAI,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC,QAAQ,EAAE,CAAC;QACrC,OAAO,CAAC,wBAAwB,CAAC,GAAG,MAAM,CAAC,IAAI,CAC7C,GAAG,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC,QAAQ,EAAE,CACtC,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;IACvB,CAAC;SAAM,IAAI,KAAK,CAAC,QAAQ,EAAE,CAAC;QAC1B,OAAO,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,QAAQ,CAAC;IACjD,CAAC;SAAM,IAAI,KAAK,CAAC,UAAU,EAAE,CAAC;QAC5B,OAAO,CAAC,aAAa,GAAG,UAAU,KAAK,CAAC,UAAU,EAAE,CAAC;IACvD,CAAC;SAAM,CAAC;QACN,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;IACxD,CAAC;IAED,IAAI,KAAK,CAAC,iBAAiB,IAAI,KAAK,CAAC,iBAAiB,EAAE,CAAC;QACvD,OAAO,CAAC,aAAa;YACnB,QAAQ;gBACR,MAAM,CAAC,IAAI,CACT,GAAG,KAAK,CAAC,iBAAiB,IAAI,KAAK,CAAC,iBAAiB,EAAE,CACxD,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;IACzB,CAAC;IACD,OAAO,yBAAiB,CAAC,wBAAwB,CAAC;QAChD,OAAO,EAAE,KAAK,CAAC,OAAO;QACtB,OAAO;QACP,KAAK;KACN,CAAC,CAAC;AACL,CAAC,CAAC;AAEF,MAAM,wBAAwB,GAAG,CAAC,MAA0B,EAAE,EAAE;IAC9D,OAAO,eAAK,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;AAC9B,CAAC,CAAC;AAEW,QAAA,UAAU,GAAG;IACxB,gBAAgB;CACjB,CAAC;AAEW,QAAA,iBAAiB,GAAG;IAC/B,wBAAwB;CACzB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"forms-client-impl.js","sourceRoot":"","sources":["../../../src/kintone/clients/forms-client-impl.ts"],"names":[],"mappings":";;;AAOA,+CAA2C;AAG3C,MAAa,eAAe;IAG1B,YAAY,KAAuB;QACjC,IAAI,CAAC,MAAM,GAAG,wBAAU,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC;IACnD,CAAC;IAED,mBAAmB,CACjB,KAA+B;QAE/B,MAAM,MAAM,GAAuB;YACjC,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,YAAY,CAAC,KAAK,CAAC;YACxB,MAAM,EAAE;gBACN,GAAG,EAAE,KAAK,CAAC,KAAK;aACjB;SACF,CAAC;QAEF,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,IAAI,CACrC,CAAC,IAAI,EAAE,EAAE,CAEL,IAAI,CAAC,IAIN,CAAC,UAAU,CAC8B,CAAC;IACjD,CAAC;CACF;AA5BD,0CA4BC;AAED,MAAM,YAAY,GAAG,CAAC,KAA+B,EAAU,EAAE;IAC/D,MAAM,KAAK,GAAG,KAAK,CAAC,YAAY,CAAC;IACjC,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,CAAC,OAAO,EAAE;QACnC,OAAO,YAAY,KAAK,kCAAkC,CAAC;KAC5D;SAAM,IAAI,KAAK,CAAC,YAAY,KAAK,IAAI,EAAE;QACtC,OAAO,YAAY,KAAK,0BAA0B,CAAC;KACpD;SAAM,IAAI,KAAK,CAAC,OAAO,EAAE;QACxB,OAAO,oCAAoC,CAAC;KAC7C;IACD,OAAO,4BAA4B,CAAC;AACtC,CAAC,CAAC;AAEW,QAAA,iBAAiB,GAAG;IAC/B,YAAY;CACb,CAAC"}
1
+ {"version":3,"file":"forms-client-impl.js","sourceRoot":"","sources":["../../../src/kintone/clients/forms-client-impl.ts"],"names":[],"mappings":";;;AAOA,+CAA2C;AAG3C,MAAa,eAAe;IAG1B,YAAY,KAAuB;QACjC,IAAI,CAAC,MAAM,GAAG,wBAAU,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC;IACnD,CAAC;IAED,mBAAmB,CACjB,KAA+B;QAE/B,MAAM,MAAM,GAAuB;YACjC,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,YAAY,CAAC,KAAK,CAAC;YACxB,MAAM,EAAE;gBACN,GAAG,EAAE,KAAK,CAAC,KAAK;aACjB;SACF,CAAC;QAEF,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,IAAI,CACrC,CAAC,IAAI,EAAE,EAAE,CAEL,IAAI,CAAC,IAIN,CAAC,UAAU,CAC8B,CAAC;IACjD,CAAC;CACF;AA5BD,0CA4BC;AAED,MAAM,YAAY,GAAG,CAAC,KAA+B,EAAU,EAAE;IAC/D,MAAM,KAAK,GAAG,KAAK,CAAC,YAAY,CAAC;IACjC,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,CAAC,OAAO,EAAE,CAAC;QACpC,OAAO,YAAY,KAAK,kCAAkC,CAAC;IAC7D,CAAC;SAAM,IAAI,KAAK,CAAC,YAAY,KAAK,IAAI,EAAE,CAAC;QACvC,OAAO,YAAY,KAAK,0BAA0B,CAAC;IACrD,CAAC;SAAM,IAAI,KAAK,CAAC,OAAO,EAAE,CAAC;QACzB,OAAO,oCAAoC,CAAC;IAC9C,CAAC;IACD,OAAO,4BAA4B,CAAC;AACtC,CAAC,CAAC;AAEW,QAAA,iBAAiB,GAAG;IAC/B,YAAY;CACb,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"typescriptfieldtypeconverter.js","sourceRoot":"","sources":["../../../src/templates/expressions/typescriptfieldtypeconverter.ts"],"names":[],"mappings":";;;AAAA,MAAM,0CAA0C,GAAG;IACjD,gBAAgB,EAAE,mCAAmC;IACrD,eAAe,EAAE,kCAAkC;IACnD,SAAS,EAAE,6BAA6B;IACxC,IAAI,EAAE,yBAAyB;IAC/B,IAAI,EAAE,yBAAyB;IAC/B,IAAI,EAAE,yBAAyB;IAC/B,MAAM,EAAE,2BAA2B;IACnC,QAAQ,EAAE,6BAA6B;IACvC,IAAI,EAAE,yBAAyB;IAC/B,SAAS,EAAE,6BAA6B;IACxC,IAAI,EAAE,yBAAyB;IAC/B,YAAY,EAAE,gCAAgC;IAC9C,SAAS,EAAE,6BAA6B;IACxC,YAAY,EAAE,gCAAgC;IAC9C,aAAa,EAAE,iCAAiC;IAChD,YAAY,EAAE,gCAAgC;IAC9C,YAAY,EAAE,gCAAgC;IAC9C,QAAQ,EAAE,6BAA6B;IACvC,OAAO,EAAE,4BAA4B;IACrC,WAAW,EAAE,+BAA+B;IAC5C,YAAY,EAAE,gCAAgC;IAC9C,mBAAmB,EAAE,uCAAuC;CAC7D,CAAC;AAEF,MAAM,OAAO,GAAG,CAAC,QAAgB,EAAE,EAAE;IACnC,MAAM,mBAAmB,GACvB,0CAA0C,CAAC,QAAQ,CAAC,CAAC;IACvD,IAAI,CAAC,mBAAmB,EAAE;QACxB,MAAM,IAAI,KAAK,CACb,GAAG,QAAQ,gDAAgD,CAC5D,CAAC;KACH;IACD,OAAO,mBAAmB,CAAC;AAC7B,CAAC,CAAC;AAEW,QAAA,SAAS,GAAG;IACvB,OAAO;CACR,CAAC"}
1
+ {"version":3,"file":"typescriptfieldtypeconverter.js","sourceRoot":"","sources":["../../../src/templates/expressions/typescriptfieldtypeconverter.ts"],"names":[],"mappings":";;;AAAA,MAAM,0CAA0C,GAAG;IACjD,gBAAgB,EAAE,mCAAmC;IACrD,eAAe,EAAE,kCAAkC;IACnD,SAAS,EAAE,6BAA6B;IACxC,IAAI,EAAE,yBAAyB;IAC/B,IAAI,EAAE,yBAAyB;IAC/B,IAAI,EAAE,yBAAyB;IAC/B,MAAM,EAAE,2BAA2B;IACnC,QAAQ,EAAE,6BAA6B;IACvC,IAAI,EAAE,yBAAyB;IAC/B,SAAS,EAAE,6BAA6B;IACxC,IAAI,EAAE,yBAAyB;IAC/B,YAAY,EAAE,gCAAgC;IAC9C,SAAS,EAAE,6BAA6B;IACxC,YAAY,EAAE,gCAAgC;IAC9C,aAAa,EAAE,iCAAiC;IAChD,YAAY,EAAE,gCAAgC;IAC9C,YAAY,EAAE,gCAAgC;IAC9C,QAAQ,EAAE,6BAA6B;IACvC,OAAO,EAAE,4BAA4B;IACrC,WAAW,EAAE,+BAA+B;IAC5C,YAAY,EAAE,gCAAgC;IAC9C,mBAAmB,EAAE,uCAAuC;CAC7D,CAAC;AAEF,MAAM,OAAO,GAAG,CAAC,QAAgB,EAAE,EAAE;IACnC,MAAM,mBAAmB,GACvB,0CAA0C,CAAC,QAAQ,CAAC,CAAC;IACvD,IAAI,CAAC,mBAAmB,EAAE,CAAC;QACzB,MAAM,IAAI,KAAK,CACb,GAAG,QAAQ,gDAAgD,CAC5D,CAAC;IACJ,CAAC;IACD,OAAO,mBAAmB,CAAC;AAC7B,CAAC,CAAC;AAEW,QAAA,SAAS,GAAG;IACvB,OAAO;CACR,CAAC"}
@@ -35,8 +35,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
35
35
  exports.TypeDefinitionTemplate = void 0;
36
36
  const fs = __importStar(require("fs"));
37
37
  const path = __importStar(require("path"));
38
- const prettier = __importStar(require("prettier"));
39
38
  const eslint_1 = require("eslint");
39
+ const standalone_1 = require("prettier/standalone");
40
+ const prettierPluginTypescript = __importStar(require("prettier/plugins/typescript"));
41
+ const prettierPluginEstree = __importStar(require("prettier/plugins/estree"));
40
42
  const converter_1 = require("./converter");
41
43
  const renderAsFile = (output, renderInput) => __awaiter(void 0, void 0, void 0, function* () {
42
44
  const tsExpression = (0, converter_1.convertToTsExpression)(renderInput);
@@ -78,8 +80,9 @@ const renderAsFile = (output, renderInput) => __awaiter(void 0, void 0, void 0,
78
80
  else {
79
81
  throw new Error("unexpected result");
80
82
  }
81
- const prettySource = prettier.format(eslintOutput, {
83
+ const prettySource = yield (0, standalone_1.format)(eslintOutput, {
82
84
  parser: "typescript",
85
+ plugins: [prettierPluginTypescript, prettierPluginEstree],
83
86
  });
84
87
  const outputPath = path.resolve(output);
85
88
  yield fs.promises.mkdir(path.dirname(outputPath), { recursive: true });
@@ -1 +1 @@
1
- {"version":3,"file":"template.js","sourceRoot":"","sources":["../../src/templates/template.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,uCAAyB;AACzB,2CAA6B;AAC7B,mDAAqC;AACrC,mCAAgC;AAGhC,2CAAoD;AAQpD,MAAM,YAAY,GAAG,CAAO,MAAc,EAAE,WAAwB,EAAE,EAAE;IACtE,MAAM,YAAY,GAAG,IAAA,iCAAqB,EAAC,WAAW,CAAC,CAAC;IACxD,MAAM,MAAM,GAAG,IAAI,eAAM,CAAC;QACxB,GAAG,EAAE,IAAI;QACT,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE;YACV,OAAO,EAAE,0CAA0C;YACnD,OAAO,EAAE;gBACP,OAAO,EAAE,IAAI;aACd;YACD,KAAK,EAAE;gBACL,iCAAiC,EAAE;oBACjC,OAAO;oBACP,EAAE,iBAAiB,EAAE,IAAI,EAAE;iBAC5B;aACF;SACF;KACF,CAAC,CAAC;IACH,MAAM,YAAY,GAAG,CAAC,MAAM,MAAM,CAAC,QAAQ,CAAC,YAAY,CAAC,YAAY,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;IAC7E,IAAI,YAAY,CAAC,eAAe,GAAG,CAAC,EAAE;QACpC,IAAI,YAAY,GAAG,EAAE,CAAC;QACtB,IAAI,YAAY,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE;YACpC,YAAY,GAAG,SAAS,CAAC;YACzB,YAAY,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,KAAK,EAAE,EAAE;gBACtC,YAAY,IAAI,OAAO,KAAK,CAAC,OAAO,EAAE,CAAC;YACzC,CAAC,CAAC,CAAC;SACJ;QACD,MAAM,IAAI,KAAK,CACb,qEAAqE,YAAY,EAAE,CACpF,CAAC;KACH;IACD,IAAI,YAAY,GAAG,EAAE,CAAC;IACtB,sEAAsE;IACtE,IAAI,QAAQ,IAAI,YAAY,EAAE;QAC5B,YAAY,GAAG,YAAY,CAAC,MAAM,CAAC;KACpC;SAAM,IAAI,QAAQ,IAAI,YAAY,EAAE;QACnC,YAAY,GAAG,YAAY,CAAC,MAAM,CAAC;KACpC;SAAM;QACL,MAAM,IAAI,KAAK,CAAC,mBAAmB,CAAC,CAAC;KACtC;IAED,MAAM,YAAY,GAAG,QAAQ,CAAC,MAAM,CAAC,YAAY,EAAE;QACjD,MAAM,EAAE,YAAY;KACrB,CAAC,CAAC;IACH,MAAM,UAAU,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;IAExC,MAAM,EAAE,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IACvE,MAAM,EAAE,CAAC,QAAQ,CAAC,SAAS,CAAC,UAAU,EAAE,YAAY,CAAC,CAAC;AACxD,CAAC,CAAA,CAAC;AACF,aAAa;AACA,QAAA,sBAAsB,GAAG;IACpC,YAAY;CACb,CAAC"}
1
+ {"version":3,"file":"template.js","sourceRoot":"","sources":["../../src/templates/template.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,uCAAyB;AACzB,2CAA6B;AAC7B,mCAAgC;AAChC,oDAA6C;AAC7C,sFAAwE;AACxE,8EAAgE;AAGhE,2CAAoD;AAQpD,MAAM,YAAY,GAAG,CAAO,MAAc,EAAE,WAAwB,EAAE,EAAE;IACtE,MAAM,YAAY,GAAG,IAAA,iCAAqB,EAAC,WAAW,CAAC,CAAC;IACxD,MAAM,MAAM,GAAG,IAAI,eAAM,CAAC;QACxB,GAAG,EAAE,IAAI;QACT,WAAW,EAAE,KAAK;QAClB,UAAU,EAAE;YACV,OAAO,EAAE,0CAA0C;YACnD,OAAO,EAAE;gBACP,OAAO,EAAE,IAAI;aACd;YACD,KAAK,EAAE;gBACL,iCAAiC,EAAE;oBACjC,OAAO;oBACP,EAAE,iBAAiB,EAAE,IAAI,EAAE;iBAC5B;aACF;SACF;KACF,CAAC,CAAC;IACH,MAAM,YAAY,GAAG,CAAC,MAAM,MAAM,CAAC,QAAQ,CAAC,YAAY,CAAC,YAAY,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;IAC7E,IAAI,YAAY,CAAC,eAAe,GAAG,CAAC,EAAE,CAAC;QACrC,IAAI,YAAY,GAAG,EAAE,CAAC;QACtB,IAAI,YAAY,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACrC,YAAY,GAAG,SAAS,CAAC;YACzB,YAAY,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,KAAK,EAAE,EAAE;gBACtC,YAAY,IAAI,OAAO,KAAK,CAAC,OAAO,EAAE,CAAC;YACzC,CAAC,CAAC,CAAC;QACL,CAAC;QACD,MAAM,IAAI,KAAK,CACb,qEAAqE,YAAY,EAAE,CACpF,CAAC;IACJ,CAAC;IACD,IAAI,YAAY,GAAG,EAAE,CAAC;IACtB,sEAAsE;IACtE,IAAI,QAAQ,IAAI,YAAY,EAAE,CAAC;QAC7B,YAAY,GAAG,YAAY,CAAC,MAAM,CAAC;IACrC,CAAC;SAAM,IAAI,QAAQ,IAAI,YAAY,EAAE,CAAC;QACpC,YAAY,GAAG,YAAY,CAAC,MAAM,CAAC;IACrC,CAAC;SAAM,CAAC;QACN,MAAM,IAAI,KAAK,CAAC,mBAAmB,CAAC,CAAC;IACvC,CAAC;IAED,MAAM,YAAY,GAAG,MAAM,IAAA,mBAAM,EAAC,YAAY,EAAE;QAC9C,MAAM,EAAE,YAAY;QACpB,OAAO,EAAE,CAAC,wBAAwB,EAAE,oBAAoB,CAAC;KAC1D,CAAC,CAAC;IACH,MAAM,UAAU,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;IAExC,MAAM,EAAE,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IACvE,MAAM,EAAE,CAAC,QAAQ,CAAC,SAAS,CAAC,UAAU,EAAE,YAAY,CAAC,CAAC;AACxD,CAAC,CAAA,CAAC;AACF,aAAa;AACA,QAAA,sBAAsB,GAAG;IACpC,YAAY;CACb,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"template.test.js","sourceRoot":"","sources":["../../src/templates/template.test.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"template.test.js","sourceRoot":"","sources":["../../src/templates/template.test.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"args.test.js","sourceRoot":"","sources":["../../../src/validators/__tests__/args.test.ts"],"names":[],"mappings":";;AAAA,kCAAuC;AAEvC,MAAM,uBAAuB,GAAG;;qEAEqC,CAAC;AACtE,MAAM,uBAAuB,GAAG,8BAA8B,uBAAuB,EAAE,CAAC;AACxF,MAAM,sBAAsB,GAAG,8BAA8B,uBAAuB,EAAE,CAAC;AACvF,MAAM,SAAS,GAAG;IAChB,OAAO,EAAE,EAAE;IACX,OAAO,EAAE,KAAK;IACd,IAAI,EAAE,KAAK;IACX,MAAM,EAAE,EAAE;IACV,QAAQ,EAAE,IAAI;IACd,QAAQ,EAAE,IAAI;IACd,UAAU,EAAE,IAAI;IAChB,QAAQ,EAAE,IAAI;IACd,KAAK,EAAE,IAAI;IACX,iBAAiB,EAAE,IAAI;IACvB,iBAAiB,EAAE,IAAI;IACvB,KAAK,EAAE,IAAI;IACX,YAAY,EAAE,IAAI;IAClB,QAAQ,EAAE,EAAE;IACZ,SAAS,EAAE,EAAE;CACd,CAAC;AACF,MAAM,QAAQ,GAAG;IACf;QACE,WAAW,EAAE,2CAA2C;QACxD,KAAK,kCACA,SAAS,KACZ,OAAO,EAAE,IAAI,GACd;QACD,QAAQ,EAAE;YACR,OAAO,EAAE;gBACP,YAAY,EAAE,iDAAiD;aAChE;SACF;KACF;IACD;QACE,WAAW,EACT,gEAAgE;QAClE,KAAK,kCACA,SAAS,KACZ,SAAS,EAAE,oBAAoB,EAC/B,QAAQ,EAAE,eAAe,GAC1B;QACD,QAAQ,EAAE;YACR,OAAO,EAAE,SAAS;SACnB;KACF;IACD;QACE,WAAW,EAAE,iDAAiD;QAC9D,KAAK,kCAAO,SAAS,KAAE,SAAS,EAAE,OAAO,GAAE;QAC3C,QAAQ,EAAE;YACR,OAAO,EAAE;gBACP,YAAY,EAAE,uBAAuB;aACtC;SACF;KACF;IACD;QACE,WAAW,EAAE,yDAAyD;QACtE,KAAK,kCAAO,SAAS,KAAE,SAAS,EAAE,OAAO,GAAE;QAC3C,QAAQ,EAAE;YACR,OAAO,EAAE;gBACP,YAAY,EAAE,uBAAuB;aACtC;SACF;KACF;IACD;QACE,WAAW,EAAE,iDAAiD;QAC9D,KAAK,kCAAO,SAAS,KAAE,QAAQ,EAAE,OAAO,GAAE;QAC1C,QAAQ,EAAE;YACR,OAAO,EAAE;gBACP,YAAY,EAAE,sBAAsB;aACrC;SACF;KACF;IACD;QACE,WAAW,EAAE,yDAAyD;QACtE,KAAK,kCAAO,SAAS,KAAE,QAAQ,EAAE,OAAO,GAAE;QAC1C,QAAQ,EAAE;YACR,OAAO,EAAE;gBACP,YAAY,EAAE,sBAAsB;aACrC;SACF;KACF;CACF,CAAC;AAEF,QAAQ,CAAC,eAAe,EAAE,GAAG,EAAE;IAC7B,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,cAAc,EAAE,CAAC,OAAO,EAAE,EAAE;QAC9C,IAAI,OAAO,CAAC,QAAQ,CAAC,OAAO,KAAK,SAAS,EAAE;YAC1C,OAAO,MAAM,CAAC,GAAG,EAAE;gBACjB,IAAA,mBAAY,EAAC,OAAO,CAAC,KAAK,CAAC,CAAC;YAC9B,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;SAC9D;QAED,OAAO,MAAM,CAAC,GAAG,EAAE;YACjB,IAAA,mBAAY,EAAC,OAAO,CAAC,KAAK,CAAC,CAAC;QAC9B,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,CAAC;IACnB,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
1
+ {"version":3,"file":"args.test.js","sourceRoot":"","sources":["../../../src/validators/__tests__/args.test.ts"],"names":[],"mappings":";;AAAA,kCAAuC;AAEvC,MAAM,uBAAuB,GAAG;;qEAEqC,CAAC;AACtE,MAAM,uBAAuB,GAAG,8BAA8B,uBAAuB,EAAE,CAAC;AACxF,MAAM,sBAAsB,GAAG,8BAA8B,uBAAuB,EAAE,CAAC;AACvF,MAAM,SAAS,GAAG;IAChB,OAAO,EAAE,EAAE;IACX,OAAO,EAAE,KAAK;IACd,IAAI,EAAE,KAAK;IACX,MAAM,EAAE,EAAE;IACV,QAAQ,EAAE,IAAI;IACd,QAAQ,EAAE,IAAI;IACd,UAAU,EAAE,IAAI;IAChB,QAAQ,EAAE,IAAI;IACd,KAAK,EAAE,IAAI;IACX,iBAAiB,EAAE,IAAI;IACvB,iBAAiB,EAAE,IAAI;IACvB,KAAK,EAAE,IAAI;IACX,YAAY,EAAE,IAAI;IAClB,QAAQ,EAAE,EAAE;IACZ,SAAS,EAAE,EAAE;CACd,CAAC;AACF,MAAM,QAAQ,GAAG;IACf;QACE,WAAW,EAAE,2CAA2C;QACxD,KAAK,kCACA,SAAS,KACZ,OAAO,EAAE,IAAI,GACd;QACD,QAAQ,EAAE;YACR,OAAO,EAAE;gBACP,YAAY,EAAE,iDAAiD;aAChE;SACF;KACF;IACD;QACE,WAAW,EACT,gEAAgE;QAClE,KAAK,kCACA,SAAS,KACZ,SAAS,EAAE,oBAAoB,EAC/B,QAAQ,EAAE,eAAe,GAC1B;QACD,QAAQ,EAAE;YACR,OAAO,EAAE,SAAS;SACnB;KACF;IACD;QACE,WAAW,EAAE,iDAAiD;QAC9D,KAAK,kCAAO,SAAS,KAAE,SAAS,EAAE,OAAO,GAAE;QAC3C,QAAQ,EAAE;YACR,OAAO,EAAE;gBACP,YAAY,EAAE,uBAAuB;aACtC;SACF;KACF;IACD;QACE,WAAW,EAAE,yDAAyD;QACtE,KAAK,kCAAO,SAAS,KAAE,SAAS,EAAE,OAAO,GAAE;QAC3C,QAAQ,EAAE;YACR,OAAO,EAAE;gBACP,YAAY,EAAE,uBAAuB;aACtC;SACF;KACF;IACD;QACE,WAAW,EAAE,iDAAiD;QAC9D,KAAK,kCAAO,SAAS,KAAE,QAAQ,EAAE,OAAO,GAAE;QAC1C,QAAQ,EAAE;YACR,OAAO,EAAE;gBACP,YAAY,EAAE,sBAAsB;aACrC;SACF;KACF;IACD;QACE,WAAW,EAAE,yDAAyD;QACtE,KAAK,kCAAO,SAAS,KAAE,QAAQ,EAAE,OAAO,GAAE;QAC1C,QAAQ,EAAE;YACR,OAAO,EAAE;gBACP,YAAY,EAAE,sBAAsB;aACrC;SACF;KACF;CACF,CAAC;AAEF,QAAQ,CAAC,eAAe,EAAE,GAAG,EAAE;IAC7B,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,cAAc,EAAE,CAAC,OAAO,EAAE,EAAE;QAC9C,IAAI,OAAO,CAAC,QAAQ,CAAC,OAAO,KAAK,SAAS,EAAE,CAAC;YAC3C,OAAO,MAAM,CAAC,GAAG,EAAE;gBACjB,IAAA,mBAAY,EAAC,OAAO,CAAC,KAAK,CAAC,CAAC;YAC9B,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;QAC/D,CAAC;QAED,OAAO,MAAM,CAAC,GAAG,EAAE;YACjB,IAAA,mBAAY,EAAC,OAAO,CAAC,KAAK,CAAC,CAAC;QAC9B,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,CAAC;IACnB,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"args.js","sourceRoot":"","sources":["../../src/validators/args.ts"],"names":[],"mappings":";;;AAEO,MAAM,YAAY,GAAG,CAAC,IAAgB,EAAE,EAAE;IAC/C,IAAI,IAAI,CAAC,OAAO,KAAK,IAAI,EAAE;QACzB,MAAM,IAAI,KAAK,CAAC,iDAAiD,CAAC,CAAC;KACpE;IAED,MAAM,uBAAuB,GAAG;;qEAEmC,CAAC;IAEpE,IAAI,IAAI,CAAC,SAAS,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE;QACxD,MAAM,IAAI,KAAK,CAAC,8BAA8B,uBAAuB,EAAE,CAAC,CAAC;KAC1E;IAED,IAAI,IAAI,CAAC,QAAQ,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE;QACtD,MAAM,IAAI,KAAK,CAAC,8BAA8B,uBAAuB,EAAE,CAAC,CAAC;KAC1E;AACH,CAAC,CAAC;AAhBW,QAAA,YAAY,gBAgBvB;AAEF;;;GAGG;AACH,MAAM,iBAAiB,GAAG,CAAC,gBAAwB,EAAW,EAAE;IAC9D,MAAM,WAAW,GAAG,gBAAgB,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IAChD,MAAM,eAAe,GAAG,4BAA4B,CAAC;IACrD,OAAO,WAAW,CAAC,KAAK,CAAC,CAAC,UAAU,EAAE,EAAE,CAAC,eAAe,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC;AAC7E,CAAC,CAAC"}
1
+ {"version":3,"file":"args.js","sourceRoot":"","sources":["../../src/validators/args.ts"],"names":[],"mappings":";;;AAEO,MAAM,YAAY,GAAG,CAAC,IAAgB,EAAE,EAAE;IAC/C,IAAI,IAAI,CAAC,OAAO,KAAK,IAAI,EAAE,CAAC;QAC1B,MAAM,IAAI,KAAK,CAAC,iDAAiD,CAAC,CAAC;IACrE,CAAC;IAED,MAAM,uBAAuB,GAAG;;qEAEmC,CAAC;IAEpE,IAAI,IAAI,CAAC,SAAS,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC;QACzD,MAAM,IAAI,KAAK,CAAC,8BAA8B,uBAAuB,EAAE,CAAC,CAAC;IAC3E,CAAC;IAED,IAAI,IAAI,CAAC,QAAQ,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;QACvD,MAAM,IAAI,KAAK,CAAC,8BAA8B,uBAAuB,EAAE,CAAC,CAAC;IAC3E,CAAC;AACH,CAAC,CAAC;AAhBW,QAAA,YAAY,gBAgBvB;AAEF;;;GAGG;AACH,MAAM,iBAAiB,GAAG,CAAC,gBAAwB,EAAW,EAAE;IAC9D,MAAM,WAAW,GAAG,gBAAgB,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IAChD,MAAM,eAAe,GAAG,4BAA4B,CAAC;IACrD,OAAO,WAAW,CAAC,KAAK,CAAC,CAAC,UAAU,EAAE,EAAE,CAAC,eAAe,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC;AAC7E,CAAC,CAAC"}
package/kintone.d.ts CHANGED
@@ -3,7 +3,7 @@ declare namespace kintone {
3
3
  function on(event: string | string[], handler: (event: any) => any): void;
4
4
  function off(
5
5
  event: string | string[],
6
- handler: (event: any) => any
6
+ handler: (event: any) => any,
7
7
  ): boolean;
8
8
  function off(event: string | string[]): boolean;
9
9
  function off(): boolean;
@@ -14,7 +14,7 @@ declare namespace kintone {
14
14
  function urlForGet(
15
15
  path: string,
16
16
  params: any,
17
- detectGuestSpace?: boolean
17
+ detectGuestSpace?: boolean,
18
18
  ): string;
19
19
 
20
20
  function getConcurrencyLimit(): Promise<{
@@ -30,7 +30,7 @@ declare namespace kintone {
30
30
  method: string,
31
31
  params: any,
32
32
  callback: (resp: any) => void,
33
- errback: (err: any) => void
33
+ errback: (err: any) => void,
34
34
  ): void;
35
35
 
36
36
  function getRequestToken(): string;
@@ -39,7 +39,7 @@ declare namespace kintone {
39
39
  url: string,
40
40
  method: string,
41
41
  headers: any,
42
- data: any
42
+ data: any,
43
43
  ): Promise<any>;
44
44
 
45
45
  function proxy(
@@ -48,15 +48,15 @@ declare namespace kintone {
48
48
  headers: any,
49
49
  data: any,
50
50
  callback: (resp: any) => void,
51
- errback: (err: any) => void
51
+ errback: (err: any) => void,
52
52
  ): void;
53
53
 
54
54
  class Promise<T> {
55
55
  constructor(
56
56
  callback: (
57
57
  resolve: (resolved: T) => any,
58
- reject: (rejected: any) => any
59
- ) => void
58
+ reject: (rejected: any) => any,
59
+ ) => void,
60
60
  );
61
61
 
62
62
  then(callback: (resolved: T) => any): Promise<any>;
@@ -74,14 +74,14 @@ declare namespace kintone {
74
74
  headers: any,
75
75
  data: any,
76
76
  callback: (resp: any) => void,
77
- errback: (err: any) => void
77
+ errback: (err: any) => void,
78
78
  ): void;
79
79
 
80
80
  function upload(
81
81
  url: string,
82
82
  method: string,
83
83
  headers: any,
84
- data: any
84
+ data: any,
85
85
  ): Promise<any>;
86
86
  }
87
87
 
@@ -149,7 +149,7 @@ declare namespace kintone {
149
149
  url: string,
150
150
  method: string,
151
151
  headers: any,
152
- data: any
152
+ data: any,
153
153
  ): Promise<any>;
154
154
 
155
155
  function proxy(
@@ -159,7 +159,7 @@ declare namespace kintone {
159
159
  headers: any,
160
160
  data: any,
161
161
  callback: (resp: any) => void,
162
- error: (err: any) => void
162
+ error: (err: any) => void,
163
163
  ): void;
164
164
 
165
165
  function setProxyConfig(
@@ -167,7 +167,7 @@ declare namespace kintone {
167
167
  method: string,
168
168
  headers: any,
169
169
  data: any,
170
- callback?: () => void
170
+ callback?: () => void,
171
171
  ): void;
172
172
 
173
173
  function getProxyConfig(url: string, method: string): any;
@@ -178,7 +178,7 @@ declare namespace kintone {
178
178
  url: string,
179
179
  method: string,
180
180
  headers: any,
181
- data: any
181
+ data: any,
182
182
  ): Promise<any>;
183
183
 
184
184
  function upload(
@@ -188,7 +188,7 @@ declare namespace kintone {
188
188
  headers: any,
189
189
  data: any,
190
190
  callback: (resp: any) => void,
191
- error: (err: any) => void
191
+ error: (err: any) => void,
192
192
  ): void;
193
193
  }
194
194
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kintone/dts-gen",
3
- "version": "8.0.2",
3
+ "version": "8.0.4",
4
4
  "description": "Types for kintone js api and Types generating tools",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -12,19 +12,18 @@
12
12
  },
13
13
  "license": "MIT",
14
14
  "dependencies": {
15
- "@cybozu/eslint-config": "^18.0.3",
16
- "axios": "^1.6.0",
15
+ "@cybozu/eslint-config": "^22.0.2",
16
+ "axios": "^1.6.5",
17
17
  "commander": "^11.1.0",
18
- "eslint": "^8.52.0",
18
+ "eslint": "^8.56.0",
19
19
  "form-data": "^4.0.0",
20
20
  "lodash": "^4.17.21",
21
- "prettier": "^2.8.8"
21
+ "prettier": "^3.2.2"
22
22
  },
23
23
  "devDependencies": {
24
- "@types/eslint": "^8.44.6",
25
- "@types/lodash": "^4.14.200",
26
- "@types/prettier": "^2.7.3",
27
- "ts-loader": "^9.5.0",
24
+ "@types/eslint": "^8.56.2",
25
+ "@types/lodash": "^4.14.202",
26
+ "ts-loader": "^9.5.1",
28
27
  "webpack": "^5.89.0",
29
28
  "webpack-cli": "^5.1.4",
30
29
  "assert": "^2.1.0"