@autobe/compiler 0.10.0 → 0.10.2
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/lib/AutoBeTypeScriptCompiler.d.ts +1 -0
- package/lib/AutoBeTypeScriptCompiler.js +4 -0
- package/lib/AutoBeTypeScriptCompiler.js.map +1 -1
- package/lib/raw/nestjs.json +15 -19
- package/lib/raw/test.json +6 -6
- package/package.json +8 -8
- package/src/AutoBeTypeScriptCompiler.ts +5 -0
- package/src/raw/nestjs.json +15 -19
- package/src/raw/test.json +6 -6
package/src/raw/nestjs.json
CHANGED
|
@@ -11561,7 +11561,7 @@
|
|
|
11561
11561
|
"node_modules/@nestia/benchmark/lib/internal/DynamicBenchmarkReporter.d.ts": "import { DynamicBenchmarker } from \"../DynamicBenchmarker\";\nexport declare namespace DynamicBenchmarkReporter {\n const markdown: (report: DynamicBenchmarker.IReport) => string;\n}\n",
|
|
11562
11562
|
"node_modules/@nestia/benchmark/lib/internal/IBenchmarkMaster.d.ts": "export interface IBenchmarkMaster {\n filter: (name: string) => boolean;\n progress: (current: number) => void;\n}\n",
|
|
11563
11563
|
"node_modules/@nestia/benchmark/lib/internal/IBenchmarkServant.d.ts": "import { IBenchmarkEvent } from \"../IBenchmarkEvent\";\nexport interface IBenchmarkServant {\n execute(props: {\n count: number;\n simultaneous: number;\n }): Promise<IBenchmarkEvent[]>;\n}\n",
|
|
11564
|
-
"node_modules/@nestia/benchmark/package.json": "{\n \"name\": \"@nestia/benchmark\",\n \"version\": \"7.0
|
|
11564
|
+
"node_modules/@nestia/benchmark/package.json": "{\n \"name\": \"@nestia/benchmark\",\n \"version\": \"7.1.0\",\n \"description\": \"NestJS Performance Benchmark Program\",\n \"main\": \"lib/index.js\",\n \"typings\": \"lib/index.d.ts\",\n \"scripts\": {\n \"build\": \"npm run build:main && npm run build:test\",\n \"build:main\": \"rimraf lib && tsc\",\n \"build:test\": \"rimraf bin && tsc -p test/tsconfig.json\",\n \"dev\": \"npm run build:test -- --watch\",\n \"prepare\": \"ts-patch install\",\n \"test\": \"node bin/test\"\n },\n \"keywords\": [\n \"e2e\",\n \"nestia\",\n \"nestjs\",\n \"Performance\",\n \"benchmark\"\n ],\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/nestia/issues\"\n },\n \"homepage\": \"https://nestia.io\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/nestia\"\n },\n \"dependencies\": {\n \"@nestia/fetcher\": \"^7.1.0\",\n \"tgrid\": \"^1.1.0\",\n \"tstl\": \"^3.0.0\"\n },\n \"devDependencies\": {\n \"@nestia/core\": \"^7.1.0\",\n \"@nestia/e2e\": \"^7.1.0\",\n \"@nestia/sdk\": \"^7.1.0\",\n \"@nestjs/common\": \"^11.0.13\",\n \"@nestjs/core\": \"^11.0.13\",\n \"@nestjs/platform-express\": \"^11.0.13\",\n \"@types/uuid\": \"^10.0.0\",\n \"nestia\": \"workspace:^\",\n \"ts-node\": \"^10.9.2\",\n \"ts-patch\": \"^3.3.0\",\n \"typescript\": \"~5.8.3\",\n \"typescript-transform-paths\": \"^3.4.7\",\n \"typia\": \"^9.5.0\",\n \"uuid\": \"^10.0.0\"\n },\n \"files\": [\n \"lib\",\n \"src\",\n \"README.md\",\n \"LICENSE\",\n \"package.json\"\n ]\n}",
|
|
11565
11565
|
"node_modules/@nestia/core/lib/adaptors/WebSocketAdaptor.d.ts": "import { INestApplication } from \"@nestjs/common\";\nexport declare class WebSocketAdaptor {\n static upgrade(app: INestApplication): Promise<WebSocketAdaptor>;\n readonly close: () => Promise<void>;\n private constructor();\n private readonly handleUpgrade;\n private readonly http;\n private readonly operators;\n private readonly ws;\n}\n",
|
|
11566
11566
|
"node_modules/@nestia/core/lib/decorators/DynamicModule.d.ts": "import { ModuleMetadata } from \"@nestjs/common/interfaces\";\n/**\n * Dynamic module.\n *\n * `DynamicModule` is a namespace wrapping a convenient function, which can load\n * controller classes dynamically just by specifying their directory path.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace DynamicModule {\n /**\n * Mount dynamic module.\n *\n * Constructs a module instance with directory path of controller classes.\n *\n * Every controller classes in the target directory would be dynamically mounted.\n *\n * @param path Path of controllers\n * @param metadata Additional metadata except controllers\n * @returns module instance\n */\n function mount(path: string | string[] | {\n include: string[];\n exclude?: string[];\n }, metadata?: Omit<ModuleMetadata, \"controllers\">, isTsNode?: boolean): Promise<{\n new (): {};\n }>;\n}\n",
|
|
11567
11567
|
"node_modules/@nestia/core/lib/decorators/EncryptedBody.d.ts": "import { IRequestBodyValidator } from \"../options/IRequestBodyValidator\";\n/**\n * Encrypted body decorator.\n *\n * `EncryptedBody` is a decorator function getting `application/json` typed data from\n * request body which has been encrypted by AES-128/256 algorithm. Also,\n * `EncryptedBody` validates the request body data type through\n * [typia](https://github.com/samchon/typia) ad the validation speed is\n * maximum 15,000x times faster than `class-validator`.\n *\n * For reference, when the request body data is not following the promised type `T`,\n * `BadRequestException` error (status code: 400) would be thrown. Also,\n * `EncryptedRoute` decrypts request body using those options.\n *\n * - AES-128/256\n * - CBC mode\n * - PKCS #5 Padding\n * - Base64 Encoding\n *\n * @return Parameter decorator\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare function EncryptedBody<T>(validator?: IRequestBodyValidator<T>): ParameterDecorator;\n",
|
|
@@ -11633,7 +11633,7 @@
|
|
|
11633
11633
|
"node_modules/@nestia/core/lib/utils/Singleton.d.ts": "export {};\n",
|
|
11634
11634
|
"node_modules/@nestia/core/lib/utils/SourceFinder.d.ts": "export declare namespace SourceFinder {\n const find: (props: IProps) => Promise<string[]>;\n}\ninterface IProps {\n exclude?: string[];\n include: string[];\n filter: (location: string) => boolean;\n}\nexport {};\n",
|
|
11635
11635
|
"node_modules/@nestia/core/lib/utils/VersioningStrategy.d.ts": "import { VERSION_NEUTRAL, VersionValue } from \"@nestjs/common/interfaces\";\nexport declare namespace VersioningStrategy {\n interface IConfig {\n prefix: string;\n defaultVersion?: VersionValue;\n }\n const cast: (value: VersionValue | undefined) => Array<string | typeof VERSION_NEUTRAL>;\n const merge: (config: IConfig | undefined) => (values: Array<string | typeof VERSION_NEUTRAL>) => string[];\n}\n",
|
|
11636
|
-
"node_modules/@nestia/core/package.json": "{\n \"name\": \"@nestia/core\",\n \"version\": \"7.0
|
|
11636
|
+
"node_modules/@nestia/core/package.json": "{\n \"name\": \"@nestia/core\",\n \"version\": \"7.1.0\",\n \"description\": \"Super-fast validation decorators of NestJS\",\n \"main\": \"lib/index.js\",\n \"typings\": \"lib/index.d.ts\",\n \"tsp\": {\n \"tscOptions\": {\n \"parseAllJsDoc\": true\n }\n },\n \"scripts\": {\n \"build\": \"rimraf lib && tsc\",\n \"dev\": \"tsc -p tsconfig.test.json --watch\",\n \"eslint\": \"eslint ./**/*.ts\",\n \"eslint:fix\": \"eslint ./**/*.ts --fix\",\n \"prepare\": \"ts-patch install && typia patch\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/nestia\"\n },\n \"keywords\": [\n \"nestjs\",\n \"nestia\",\n \"typia\",\n \"validator\",\n \"decorator\",\n \"class-validator\",\n \"class-transformer\"\n ],\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/nestia/issues\"\n },\n \"homepage\": \"https://nestia.io\",\n \"dependencies\": {\n \"@nestia/fetcher\": \"^7.1.0\",\n \"@nestjs/common\": \">=7.0.1\",\n \"@nestjs/core\": \">=7.0.1\",\n \"@samchon/openapi\": \"^4.5.0\",\n \"detect-ts-node\": \"^1.0.5\",\n \"get-function-location\": \"^2.0.0\",\n \"glob\": \"^7.2.0\",\n \"path-parser\": \"^6.1.0\",\n \"raw-body\": \"^2.0.0\",\n \"reflect-metadata\": \">=0.1.12\",\n \"rxjs\": \">=6.0.3\",\n \"tgrid\": \"^1.1.0\",\n \"typia\": \"^9.5.0\",\n \"ws\": \"^7.5.3\"\n },\n \"peerDependencies\": {\n \"@nestia/fetcher\": \">=7.1.0\",\n \"@nestjs/common\": \">=7.0.1\",\n \"@nestjs/core\": \">=7.0.1\",\n \"@samchon/openapi\": \">=4.5.0 <5.0.0\",\n \"reflect-metadata\": \">=0.1.12\",\n \"rxjs\": \">=6.0.3\",\n \"typia\": \">=9.5.0 <10.0.0\"\n },\n \"devDependencies\": {\n \"@nestjs/common\": \"^11.0.13\",\n \"@nestjs/core\": \"^11.0.13\",\n \"@types/express\": \"^4.17.15\",\n \"@types/glob\": \"^7.2.0\",\n \"@types/inquirer\": \"^9.0.3\",\n \"@types/multer\": \"^1.4.12\",\n \"@types/ts-expose-internals\": \"npm:ts-expose-internals@5.4.5\",\n \"@types/ws\": \"^8.5.10\",\n \"@typescript-eslint/eslint-plugin\": \"^5.46.1\",\n \"@typescript-eslint/parser\": \"^5.46.1\",\n \"commander\": \"^10.0.0\",\n \"comment-json\": \"^4.2.3\",\n \"eslint-plugin-deprecation\": \"^1.4.1\",\n \"fastify\": \"^4.28.1\",\n \"git-last-commit\": \"^1.0.1\",\n \"inquirer\": \"^8.2.5\",\n \"rimraf\": \"^6.0.1\",\n \"ts-node\": \"^10.9.1\",\n \"ts-patch\": \"^3.3.0\",\n \"tstl\": \"^3.0.0\",\n \"typescript\": \"~5.8.3\"\n },\n \"files\": [\n \"README.md\",\n \"LICENSE\",\n \"package.json\",\n \"lib\",\n \"src\"\n ]\n}",
|
|
11637
11637
|
"node_modules/@nestia/core/src/typings/get-function-location.d.ts": "declare module \"get-function-location\" {\n export default function (func: any): Promise<{\n source: string;\n line: number;\n column: number;\n }>;\n}\n",
|
|
11638
11638
|
"node_modules/@nestia/e2e/lib/ArrayUtil.d.ts": "/**\n * A namespace providing utility functions for array manipulation.\n *\n * This namespace contains utility functions for array operations including\n * asynchronous processing, filtering, mapping, and repetition tasks implemented\n * in functional programming style. All functions are implemented using currying\n * to enhance reusability and composability.\n *\n * @author Jeongho Nam - https://github.com/samchon\n * @example\n * ```typescript\n * // Asynchronous filtering example\n * const numbers = [1, 2, 3, 4, 5];\n * const evenNumbers = await ArrayUtil.asyncFilter(numbers)(\n * async (num) => num % 2 === 0\n * );\n * console.log(evenNumbers); // [2, 4]\n * ```;\n */\nexport declare namespace ArrayUtil {\n /**\n * Filters an array by applying an asynchronous predicate function to each\n * element.\n *\n * This function is implemented in curried form, first taking an array and\n * then a predicate function. Elements are processed sequentially, ensuring\n * order is maintained.\n *\n * @example\n * ```typescript\n * const users = [\n * { id: 1, name: 'Alice', active: true },\n * { id: 2, name: 'Bob', active: false },\n * { id: 3, name: 'Charlie', active: true }\n * ];\n *\n * const activeUsers = await ArrayUtil.asyncFilter(users)(\n * async (user) => {\n * // Async validation logic (e.g., API call)\n * await new Promise(resolve => setTimeout(resolve, 100));\n * return user.active;\n * }\n * );\n * console.log(activeUsers); // [{ id: 1, name: 'Alice', active: true }, { id: 3, name: 'Charlie', active: true }]\n * ```;\n *\n * @template Input - The type of elements in the input array\n * @param elements - The readonly array to filter\n * @returns A function that takes a predicate and returns a Promise resolving\n * to the filtered array\n */\n const asyncFilter: <Input>(elements: readonly Input[]) => (pred: (elem: Input, index: number, array: readonly Input[]) => Promise<boolean>) => Promise<Input[]>;\n /**\n * Executes an asynchronous function for each element in an array\n * sequentially.\n *\n * Unlike JavaScript's native forEach, this function processes asynchronous\n * functions sequentially and waits for all operations to complete. It\n * performs sequential processing rather than parallel processing, making it\n * suitable for operations where order matters.\n *\n * @example\n * ```typescript\n * const urls = ['url1', 'url2', 'url3'];\n *\n * await ArrayUtil.asyncForEach(urls)(async (url, index) => {\n * console.log(`Processing ${index}: ${url}`);\n * const data = await fetch(url);\n * await processData(data);\n * console.log(`Completed ${index}: ${url}`);\n * });\n * console.log('All URLs processed sequentially');\n * ```\n *\n * @template Input - The type of elements in the input array\n * @param elements - The readonly array to process\n * @returns A function that takes an async closure and returns a Promise<void>\n */\n const asyncForEach: <Input>(elements: readonly Input[]) => (closure: (elem: Input, index: number, array: readonly Input[]) => Promise<any>) => Promise<void>;\n /**\n * Transforms each element of an array using an asynchronous function to\n * create a new array.\n *\n * Similar to JavaScript's native map but processes asynchronous functions\n * sequentially. Each element's transformation is completed before proceeding\n * to the next element, ensuring order is maintained.\n *\n * @example\n * ```typescript\n * const userIds = [1, 2, 3, 4, 5];\n *\n * const userDetails = await ArrayUtil.asyncMap(userIds)(\n * async (id, index) => {\n * console.log(`Fetching user ${id} (${index + 1}/${userIds.length})`);\n * const response = await fetch(`/api/users/${id}`);\n * return await response.json();\n * }\n * );\n * console.log('All users fetched:', userDetails);\n * ```\n *\n * @template Input - The type of elements in the input array\n * @template Output - The type of elements in the output array\n * @param elements - The readonly array to transform\n * @returns A function that takes a transformation function and returns a\n * Promise resolving to the transformed array\n */\n const asyncMap: <Input>(elements: readonly Input[]) => <Output>(closure: (elem: Input, index: number, array: readonly Input[]) => Promise<Output>) => Promise<Output[]>;\n /**\n * Executes an asynchronous function a specified number of times sequentially.\n *\n * Executes the function with indices from 0 to count-1 incrementally. Each\n * execution is performed sequentially, and all results are collected into an\n * array.\n *\n * @example\n * ```typescript\n * // Generate random data 5 times\n * const randomData = await ArrayUtil.asyncRepeat(5)(async (index) => {\n * await new Promise(resolve => setTimeout(resolve, 100)); // Wait 0.1 seconds\n * return {\n * id: index,\n * value: Math.random(),\n * timestamp: new Date().toISOString()\n * };\n * });\n * console.log('Generated data:', randomData);\n * ```;\n *\n * @param count - The number of times to repeat (non-negative integer)\n * @returns A function that takes an async closure and returns a Promise\n * resolving to an array of results\n */\n const asyncRepeat: (count: number) => <T>(closure: (index: number) => Promise<T>) => Promise<T[]>;\n /**\n * Checks if at least one element in the array satisfies the given condition.\n *\n * Similar to JavaScript's native some() method but implemented in curried\n * form for better compatibility with functional programming style. Returns\n * true immediately when the first element satisfying the condition is found.\n *\n * @example\n * ```typescript\n * const numbers = [1, 3, 5, 7, 8, 9];\n * const products = [\n * { name: 'Apple', price: 100, inStock: true },\n * { name: 'Banana', price: 50, inStock: false },\n * { name: 'Orange', price: 80, inStock: true }\n * ];\n *\n * const hasEvenNumber = ArrayUtil.has(numbers)(num => num % 2 === 0);\n * console.log(hasEvenNumber); // true (8 exists)\n *\n * const hasExpensiveItem = ArrayUtil.has(products)(product => product.price > 90);\n * console.log(hasExpensiveItem); // true (Apple costs 100)\n *\n * const hasOutOfStock = ArrayUtil.has(products)(product => !product.inStock);\n * console.log(hasOutOfStock); // true (Banana is out of stock)\n * ```;\n *\n * @template T - The type of elements in the array\n * @param elements - The readonly array to check\n * @returns A function that takes a predicate and returns a boolean\n */\n const has: <T>(elements: readonly T[]) => (pred: (elem: T) => boolean) => boolean;\n /**\n * Executes a function a specified number of times and collects the results\n * into an array.\n *\n * A synchronous repetition function that executes the given function for each\n * index (from 0 to count-1) and collects the results into an array.\n *\n * @example\n * ```typescript\n * // Generate an array of squares from 1 to 5\n * const squares = ArrayUtil.repeat(5)(index => (index + 1) ** 2);\n * console.log(squares); // [1, 4, 9, 16, 25]\n *\n * // Generate an array of default user objects\n * const users = ArrayUtil.repeat(3)(index => ({\n * id: index + 1,\n * name: `User${index + 1}`,\n * email: `user${index + 1}@example.com`\n * }));\n * console.log(users);\n * // [\n * // { id: 1, name: 'User1', email: 'user1@example.com' },\n * // { id: 2, name: 'User2', email: 'user2@example.com' },\n * // { id: 3, name: 'User3', email: 'user3@example.com' }\n * // ]\n * ```\n *\n * @param count - The number of times to repeat (non-negative integer)\n * @returns A function that takes a closure and returns an array of results\n */\n const repeat: (count: number) => <T>(closure: (index: number) => T) => T[];\n /**\n * Generates all possible subsets of a given array.\n *\n * Implements the mathematical concept of power set, generating 2^n subsets\n * from an array of n elements. Uses depth-first search (DFS) algorithm to\n * calculate all possible combinations of including or excluding each\n * element.\n *\n * @example\n * ```typescript\n * const numbers = [1, 2, 3];\n * const allSubsets = ArrayUtil.subsets(numbers);\n * console.log(allSubsets);\n * // [\n * // [], // empty set\n * // [3], // {3}\n * // [2], // {2}\n * // [2, 3], // {2, 3}\n * // [1], // {1}\n * // [1, 3], // {1, 3}\n * // [1, 2], // {1, 2}\n * // [1, 2, 3] // {1, 2, 3}\n * // ]\n *\n * const colors = ['red', 'blue'];\n * const colorSubsets = ArrayUtil.subsets(colors);\n * console.log(colorSubsets);\n * // [\n * // [],\n * // ['blue'],\n * // ['red'],\n * // ['red', 'blue']\n * // ]\n *\n * // Warning: Result size grows exponentially with array size\n * // Example: 10 elements → 1,024 subsets, 20 elements → 1,048,576 subsets\n * ```;\n *\n * @template T - The type of elements in the array\n * @param array - The array to generate subsets from\n * @returns An array containing all possible subsets\n */\n const subsets: <T>(array: T[]) => T[][];\n}\n",
|
|
11639
11639
|
"node_modules/@nestia/e2e/lib/DynamicExecutor.d.ts": "/**\n * Dynamic Executor running prefixed functions.\n *\n * `DynamicExecutor` runs every (or some filtered) prefixed functions\n * in a specific directory.\n *\n * For reference, it's useful for test program development of a backend server.\n * Just write test functions under a directory, and just specify it.\n * Furthermore, if you compose e2e test programs to utilize the `@nestia/sdk`\n * generated API functions, you can take advantage of {@link DynamicBenchmarker}\n * at the same time.\n *\n * When you want to see some utilization cases, see the below example links.\n *\n * @example https://github.com/samchon/nestia-start/blob/master/test/index.ts\n * @example https://github.com/samchon/backend/blob/master/test/index.ts\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace DynamicExecutor {\n /**\n * Function type of a prefixed.\n *\n * @template Arguments Type of parameters\n * @template Ret Type of return value\n */\n interface Closure<Arguments extends any[], Ret = any> {\n (...args: Arguments): Promise<Ret>;\n }\n /**\n * Options for dynamic executor.\n */\n interface IProps<Parameters extends any[], Ret = any> {\n /**\n * Prefix of function name.\n *\n * Every prefixed function will be executed.\n *\n * In other words, if a function name doesn't start with the prefix, then it would never be executed.\n */\n prefix: string;\n /**\n * Location of the test functions.\n */\n location: string;\n /**\n * Get parameters of a function.\n *\n * @param name Function name\n * @returns Parameters\n */\n parameters: (name: string) => Parameters;\n /**\n * On complete function.\n *\n * Listener of completion of a test function.\n *\n * @param exec Execution result of a test function\n */\n onComplete?: (exec: IExecution) => void;\n /**\n * Filter function whether to run or not.\n *\n * @param name Function name\n * @returns Whether to run or not\n */\n filter?: (name: string) => boolean;\n /**\n * Wrapper of test function.\n *\n * If you specify this `wrapper` property, every dynamic functions\n * loaded and called by this `DynamicExecutor` would be wrapped by\n * the `wrapper` function.\n *\n * @param name Function name\n * @param closure Function to be executed\n * @param parameters Parameters, result of options.parameters function.\n * @returns Wrapper function\n */\n wrapper?: (name: string, closure: Closure<Parameters, Ret>, parameters: Parameters) => Promise<any>;\n /**\n * Number of simultaneous requests.\n *\n * The number of requests to be executed simultaneously.\n *\n * If you configure a value greater than one, the dynamic executor will\n * process the functions concurrently with the given capacity value.\n *\n * @default 1\n */\n simultaneous?: number;\n /**\n * Extension of dynamic functions.\n *\n * @default js\n */\n extension?: string;\n }\n /**\n * Report, result of dynamic execution.\n */\n interface IReport {\n /**\n * Location path of dynamic functions.\n */\n location: string;\n /**\n * Execution results of dynamic functions.\n */\n executions: IExecution[];\n /**\n * Total elapsed time.\n */\n time: number;\n }\n /**\n * Execution of a test function.\n */\n interface IExecution {\n /**\n * Name of function.\n */\n name: string;\n /**\n * Location path of the function.\n */\n location: string;\n /**\n * Returned value from the function.\n */\n value: unknown;\n /**\n * Error when occurred.\n */\n error: Error | null;\n /**\n * Elapsed time.\n */\n started_at: string;\n /**\n * Completion time.\n */\n completed_at: string;\n }\n /**\n * Prepare dynamic executor in strict mode.\n *\n * In strict mode, if any error occurs, the program will be terminated directly.\n * Otherwise, {@link validate} mode does not terminate when error occurs, but\n * just archive the error log.\n *\n * @param props Properties of dynamic execution\n * @returns Report of dynamic test functions execution\n */\n const assert: <Arguments extends any[]>(props: IProps<Arguments>) => Promise<IReport>;\n /**\n * Prepare dynamic executor in loose mode.\n *\n * In loose mode, the program would not be terminated even when error occurs.\n * Instead, the error would be archived and returns as a list. Otherwise,\n * {@link assert} mode terminates the program directly when error occurs.\n *\n * @param props Properties of dynamic executor\n * @returns Report of dynamic test functions execution\n */\n const validate: <Arguments extends any[]>(props: IProps<Arguments>) => Promise<IReport>;\n}\n",
|
|
@@ -11643,7 +11643,7 @@
|
|
|
11643
11643
|
"node_modules/@nestia/e2e/lib/index.d.ts": "import * as e2e from \"./module\";\nexport default e2e;\nexport * from \"./module\";\n",
|
|
11644
11644
|
"node_modules/@nestia/e2e/lib/internal/json_equal_to.d.ts": "export declare const json_equal_to: (exception: (key: string) => boolean) => <T>(x: T) => (y: T | null | undefined) => string[];\n",
|
|
11645
11645
|
"node_modules/@nestia/e2e/lib/module.d.ts": "export * from \"./ArrayUtil\";\nexport * from \"./DynamicExecutor\";\nexport * from \"./GaffComparator\";\nexport * from \"./RandomGenerator\";\nexport * from \"./TestValidator\";\n",
|
|
11646
|
-
"node_modules/@nestia/e2e/package.json": "{\n \"name\": \"@nestia/e2e\",\n \"version\": \"7.0
|
|
11646
|
+
"node_modules/@nestia/e2e/package.json": "{\n \"name\": \"@nestia/e2e\",\n \"version\": \"7.1.0\",\n \"description\": \"E2E test utilify functions\",\n \"main\": \"lib/index.js\",\n \"typings\": \"lib/index.d.ts\",\n \"scripts\": {\n \"build\": \"npm run build:main && npm run build:test\",\n \"build:main\": \"rimraf lib && tsc\",\n \"build:test\": \"rimraf bin && tsc -p test/tsconfig.json\",\n \"dev\": \"npm run build:test -- --watch\",\n \"eslint\": \"eslint src && eslint test\",\n \"prepare\": \"ts-patch install && typia patch\",\n \"test\": \"node bin/test\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/nestia\"\n },\n \"keywords\": [\n \"e2e\",\n \"nestia\",\n \"nestjs\",\n \"test\",\n \"tdd\",\n \"utility\"\n ],\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/nestia/issues\"\n },\n \"homepage\": \"https://nestia.io\",\n \"devDependencies\": {\n \"@trivago/prettier-plugin-sort-imports\": \"^4.0.0\",\n \"@types/node\": \"^18.11.18\",\n \"@typescript-eslint/eslint-plugin\": \"^5.57.0\",\n \"@typescript-eslint/parser\": \"^5.57.0\",\n \"rimraf\": \"^6.0.1\",\n \"ts-node\": \"^10.9.1\",\n \"ts-patch\": \"^3.3.0\",\n \"typescript\": \"~5.8.3\",\n \"typescript-transform-paths\": \"^3.4.7\",\n \"typia\": \"^9.5.0\"\n },\n \"files\": [\n \"lib\",\n \"src\",\n \"README.md\",\n \"LICENSE\",\n \"package.json\"\n ]\n}",
|
|
11647
11647
|
"node_modules/@nestia/editor/lib/NestiaEditorApplication.d.ts": "export declare function NestiaEditorApplication(): import(\"react/jsx-runtime\").JSX.Element;\n",
|
|
11648
11648
|
"node_modules/@nestia/editor/lib/NestiaEditorIframe.d.ts": "import { OpenApiV3, OpenApiV3_1, SwaggerV2 } from \"@samchon/openapi\";\nexport declare function NestiaEditorIframe(props: NestiaEditorIframe.IProps): import(\"react/jsx-runtime\").JSX.Element;\nexport declare namespace NestiaEditorIframe {\n interface IProps {\n swagger: string | SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument;\n package?: string;\n keyword?: boolean;\n simulate?: boolean;\n e2e?: boolean;\n }\n}\n",
|
|
11649
11649
|
"node_modules/@nestia/editor/lib/NestiaEditorModule.d.ts": "import type { OpenApiV3, OpenApiV3_1, SwaggerV2 } from \"@samchon/openapi\";\nexport declare namespace NestiaEditorModule {\n const setup: (props: {\n path: string;\n application: INestApplication;\n swagger: string | SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument;\n package?: string;\n simulate?: boolean;\n e2e?: boolean;\n }) => Promise<void>;\n}\ninterface INestApplication {\n use(...args: any[]): this;\n getUrl(): Promise<string>;\n getHttpAdapter(): INestHttpAdaptor;\n setGlobalPrefix(prefix: string, options?: any): this;\n}\ninterface INestHttpAdaptor {\n getType(): string;\n close(): any;\n init?(): Promise<void>;\n get: Function;\n post: Function;\n put: Function;\n patch: Function;\n delete: Function;\n head: Function;\n all: Function;\n}\nexport {};\n",
|
|
@@ -11652,13 +11652,13 @@
|
|
|
11652
11652
|
"node_modules/@nestia/editor/lib/internal/NestiaEditorComposer.d.ts": "import { OpenApiV3, OpenApiV3_1, SwaggerV2 } from \"@samchon/openapi\";\nimport { IValidation } from \"typia\";\nexport declare namespace NestiaEditorComposer {\n interface IProps {\n document: SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument;\n e2e: boolean;\n keyword: boolean;\n simulate: boolean;\n package?: string;\n }\n interface IOutput {\n files: Record<string, string>;\n openFile: string;\n startScript: string[];\n }\n const nest: (props: IProps) => Promise<IValidation<IOutput>>;\n const sdk: (props: IProps) => Promise<IValidation<IOutput>>;\n}\n",
|
|
11653
11653
|
"node_modules/@nestia/editor/lib/internal/NestiaEditorFileUploader.d.ts": "import { OpenApiV3, OpenApiV3_1, SwaggerV2 } from \"@samchon/openapi\";\nexport declare function NestiaEditorFileUploader(props: NestiaEditorFileUploader.IProps): import(\"react/jsx-runtime\").JSX.Element;\nexport declare namespace NestiaEditorFileUploader {\n interface IProps {\n onChange: (swagger: SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument | null, error: string | null) => void;\n }\n}\n",
|
|
11654
11654
|
"node_modules/@nestia/editor/lib/main.d.ts": "export {};\n",
|
|
11655
|
-
"node_modules/@nestia/editor/package.json": "{\n \"name\": \"@nestia/editor\",\n \"version\": \"7.0
|
|
11655
|
+
"node_modules/@nestia/editor/package.json": "{\n \"name\": \"@nestia/editor\",\n \"version\": \"7.1.0\",\n \"main\": \"lib/index.js\",\n \"module\": \"lib/index.mjs\",\n \"typings\": \"lib/index.d.ts\",\n \"description\": \"Swagger-UI + Cloud TypeScript Editor\",\n \"scripts\": {\n \"build\": \"npm run build:static && npm run build:lib\",\n \"build:static\": \"rimraf dist && tsc -b && vite build\",\n \"build:lib\": \"rimraf lib && tsc --project tsconfig.lib.json && rollup -c\",\n \"dev\": \"vite\",\n \"lint\": \"eslint .\",\n \"preview\": \"vite preview\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/nestia\"\n },\n \"keywords\": [\n \"openapi\",\n \"swagger\",\n \"generator\",\n \"cloud\",\n \"typescript\",\n \"editor\",\n \"sdk\",\n \"nestjs\",\n \"nestia\"\n ],\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/nestia/issues\"\n },\n \"homepage\": \"https://nestia.io\",\n \"dependencies\": {\n \"@mui/material\": \"^5.15.6\",\n \"@nestia/migrate\": \"^7.1.0\",\n \"@samchon/openapi\": \"^4.5.0\",\n \"@stackblitz/sdk\": \"^1.11.0\",\n \"@trivago/prettier-plugin-sort-imports\": \"^5.2.2\",\n \"js-yaml\": \"^4.1.0\",\n \"prettier\": \"3.3.3\",\n \"prettier-plugin-jsdoc\": \"^1.3.2\",\n \"react-mui-fileuploader\": \"^0.5.2\",\n \"typia\": \"^9.5.0\"\n },\n \"devDependencies\": {\n \"@eslint/js\": \"^9.13.0\",\n \"@nestjs/common\": \"^11.0.13\",\n \"@nestjs/core\": \"^11.0.13\",\n \"@nestjs/platform-express\": \"^11.0.13\",\n \"@nestjs/platform-fastify\": \"^11.0.13\",\n \"@rollup/plugin-terser\": \"^0.4.4\",\n \"@rollup/plugin-typescript\": \"^12.1.1\",\n \"@types/js-yaml\": \"^4.0.9\",\n \"@types/node\": \"^22.8.6\",\n \"@types/react\": \"^18.3.11\",\n \"@types/react-dom\": \"^18.3.1\",\n \"@vitejs/plugin-react\": \"^4.3.3\",\n \"eslint\": \"^9.13.0\",\n \"eslint-plugin-react-hooks\": \"^5.0.0\",\n \"eslint-plugin-react-refresh\": \"^0.4.13\",\n \"globals\": \"^15.11.0\",\n \"react\": \"^18.3.1\",\n \"react-dom\": \"^18.3.1\",\n \"rollup\": \"^4.24.2\",\n \"ts-node\": \"^10.9.2\",\n \"typescript\": \"~5.8.3\",\n \"typescript-eslint\": \"^8.10.0\",\n \"vite\": \"^5.4.9\"\n },\n \"files\": [\n \"README.md\",\n \"LICENSE\",\n \"package.json\",\n \"dist\",\n \"lib\",\n \"src\"\n ]\n}",
|
|
11656
11656
|
"node_modules/@nestia/editor/src/vite-env.d.ts": "/// <reference types=\"vite/client\" />\n",
|
|
11657
|
-
"node_modules/@nestia/fetcher/lib/AesPkcs5.d.ts": "/**\n * Utility class for the AES-128/256 encryption.\n *\n *
|
|
11657
|
+
"node_modules/@nestia/fetcher/lib/AesPkcs5.d.ts": "/**\n * Utility class for the AES-128/256 encryption.\n *\n * - AES-128/256\n * - CBC mode\n * - PKCS#5 Padding\n * - Base64 Encoding\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace AesPkcs5 {\n /**\n * Encrypt data\n *\n * @param data Target data\n * @param key Key value of the encryption.\n * @param iv Initializer Vector for the encryption\n * @returns Encrypted data\n */\n function encrypt(data: string, key: string, iv: string): string;\n /**\n * Decrypt data.\n *\n * @param data Target data\n * @param key Key value of the decryption.\n * @param iv Initializer Vector for the decryption\n * @returns Decrypted data.\n */\n function decrypt(data: string, key: string, iv: string): string;\n}\n",
|
|
11658
11658
|
"node_modules/@nestia/fetcher/lib/EncryptedFetcher.d.ts": "import { IConnection } from \"./IConnection\";\nimport { IFetchRoute } from \"./IFetchRoute\";\nimport { IPropagation } from \"./IPropagation\";\n/**\n * Utility class for `fetch` functions used in `@nestia/sdk` with encryption.\n *\n * `EncryptedFetcher` is a utility class designed for SDK functions generated by\n * [`@nestia/sdk`](https://nestia.io/docs/sdk/sdk), interacting with the remote\n * HTTP API encrypted by AES-PKCS algorithm. In other words, this is a collection of\n * dedicated `fetch()` functions for `@nestia/sdk` with encryption.\n *\n * For reference, `EncryptedFetcher` class being used only when target controller\n * method is encrypting body data by `@EncryptedRoute` or `@EncryptedBody` decorators.\n * If those decorators are not used, {@link PlainFetcher} class would be used instead.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace EncryptedFetcher {\n /**\n * Fetch function only for `HEAD` method.\n *\n * @param connection Connection information for the remote HTTP server\n * @param route Route information about the target API\n * @return Nothing because of `HEAD` method\n */\n function fetch(connection: IConnection, route: IFetchRoute<\"HEAD\">): Promise<void>;\n /**\n * Fetch function only for `GET` method.\n *\n * @param connection Connection information for the remote HTTP server\n * @param route Route information about the target API\n * @return Response body data from the remote API\n */\n function fetch<Output>(connection: IConnection, route: IFetchRoute<\"GET\">): Promise<Output>;\n /**\n * Fetch function for the `POST`, `PUT`, `PATCH` and `DELETE` methods.\n *\n * @param connection Connection information for the remote HTTP server\n * @param route Route information about the target API\n * @return Response body data from the remote API\n */\n function fetch<Input, Output>(connection: IConnection, route: IFetchRoute<\"POST\" | \"PUT\" | \"PATCH\" | \"DELETE\">, input?: Input, stringify?: (input: Input) => string): Promise<Output>;\n function propagate<Output extends IPropagation<any, any>>(connection: IConnection, route: IFetchRoute<\"GET\" | \"HEAD\">): Promise<Output>;\n function propagate<Input, Output extends IPropagation<any, any>>(connection: IConnection, route: IFetchRoute<\"DELETE\" | \"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\">, input?: Input, stringify?: (input: Input) => string): Promise<Output>;\n}\n",
|
|
11659
11659
|
"node_modules/@nestia/fetcher/lib/FormDataInput.d.ts": "/**\n * FormData input type.\n *\n * `FormDataInput<T>` is a type for the input of the `FormData` request, casting\n * `File` property value type as an union of `File` and {@link FormDataInput.IFileProps},\n * especially for the React Native environment.\n *\n * You know what? In the React Native environment, `File` class is not supported.\n * Therefore, when composing a `FormData` request, you have to put the URI address\n * of the local filesystem with file name and content type that is represented by the\n * {@link FormDataInput.IFileProps} type.\n *\n * This `FormDataInput<T>` type is designed for that purpose. If the property value\n * type is a `File` class, it converts it to an union type of `File` and\n * {@link FormDataInput.IFileProps} type. Also, if the property value type is an array\n * of `File` class, it converts it to an array of union type of `File` and\n * {@link FormDataInput.IFileProps} type too.\n *\n * Before | After\n * ----------|------------------------\n * `boolean` | `boolean`\n * `bigint` | `bigint`\n * `number` | `number`\n * `string` | `string`\n * `File` | `File \\| IFileProps`\n *\n * @template T Target object type.\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport type FormDataInput<T extends object> = T extends Array<any> ? never : T extends Function ? never : {\n [P in keyof T]: T[P] extends Array<infer U> ? FormDataInput.Value<U>[] : FormDataInput.Value<T[P]>;\n};\nexport declare namespace FormDataInput {\n /**\n * Value type of the `FormDataInput`.\n *\n * `Value<T>` is a type for the property value defined in the `FormDataInput`.\n *\n * If the original value type is a `File` class, `Value<T>` converts it to an union\n * type of `File` and {@link IFileProps} type which is a structured data for the\n * URI file location in the React Native environment.\n */\n type Value<T> = T extends File ? T | IFileProps : T;\n /**\n * Properties of a file.\n *\n * In the React Native, this `IFileProps` structured data can replace the `File`\n * class instance in the `FormData` request.\n *\n * Just put the {@link uri URI address} of the local file system with the file's\n * {@link name} and {@link type}. It would be casted to the `File` class instance\n * automatically in the `FormData` request.\n *\n * Note that, this `IFileProps` type works only in the React Native environment.\n * If you are developing a Web or NodeJS application, you have to utilize the\n * `File` class instance directly.\n */\n interface IFileProps {\n /**\n * URI address of the file.\n *\n * In the React Native, the URI address in the local file system can replace\n * the `File` class instance. If\n *\n * @format uri\n */\n uri: string;\n /**\n * Name of the file.\n */\n name: string;\n /**\n * Content type of the file.\n */\n type: string;\n }\n}\n",
|
|
11660
11660
|
"node_modules/@nestia/fetcher/lib/HttpError.d.ts": "export { HttpError } from \"@samchon/openapi\";\n",
|
|
11661
|
-
"node_modules/@nestia/fetcher/lib/IConnection.d.ts": "import {
|
|
11661
|
+
"node_modules/@nestia/fetcher/lib/IConnection.d.ts": "import { IEncryptionPassword } from \"./IEncryptionPassword\";\nimport { IFetchEvent } from \"./IFetchEvent\";\n/**\n * Connection information.\n *\n * `IConnection` is an interface ttype who represents connection information of\n * the remote HTTP server. You can target the remote HTTP server by wring the\n * {@link IConnection.host} variable down. Also, you can configure special header\n * values by specializing the {@link IConnection.headers} variable.\n *\n * If the remote HTTP server encrypts or decrypts its body data through the\n * AES-128/256 algorithm, specify the {@link IConnection.encryption} with\n * {@link IEncryptionPassword} or {@link IEncryptionPassword.Closure} variable.\n *\n * @author Jenogho Nam - https://github.com/samchon\n * @author Seungjun We - https://github.com/SeungjunWe\n */\nexport interface IConnection<Headers extends object | undefined = object | undefined> {\n /** Host address of the remote HTTP server. */\n host: string;\n /** Header values delivered to the remote HTTP server. */\n headers?: Record<string, IConnection.HeaderValue> & IConnection.Headerify<Headers>;\n /**\n * Use simulation mode.\n *\n * If you configure this property to be `true`, your SDK library does not send\n * any request to remote backend server, but just returns random data\n * generated by `typia.random<T>()` function with request data validation.\n *\n * By the way, to utilize this simulation mode, SDK library must be generated\n * with {@link INestiaConfig.simulate} option, too. Open `nestia.config.ts`\n * file, and configure {@link INestiaConfig.simulate} property to be `true`.\n * Them, newly generated SDK library would have a built-in mock-up data\n * generator.\n *\n * @default false\n */\n simulate?: boolean;\n /**\n * Logger function.\n *\n * This function is called when the fetch event is completed.\n *\n * @param event Event information of the fetch event.\n */\n logger?: (event: IFetchEvent) => Promise<void>;\n /**\n * Encryption password of its closure function.\n *\n * Define it only when target backend server is encrypting body data through\n * `@EncryptedRoute` or `@EncryptedBody` decorators of `@nestia/core` for\n * security reason.\n */\n encryption?: IEncryptionPassword | IEncryptionPassword.Closure;\n /** Additional options for the `fetch` function. */\n options?: IConnection.IOptions;\n /**\n * Custom fetch function.\n *\n * If you want to use custom `fetch` function instead of built-in, assign your\n * custom `fetch` function into this property.\n *\n * For reference, the `fetch` function has started to be supported since\n * version 20 of NodeJS. Therefore, if you are using NodeJS version 19 or\n * lower, you have to assign the `node-fetch` module into this property.\n */\n fetch?: typeof fetch;\n}\nexport declare namespace IConnection {\n /**\n * Additional options for the `fetch` function.\n *\n * Almost same with {@link RequestInit} type of the {@link fetch} function, but\n * `body`, `headers` and `method` properties are omitted.\n *\n * The reason why defining duplicated definition of {@link RequestInit} is for\n * legacy NodeJS environments, which does not have the {@link fetch} function\n * type.\n */\n interface IOptions {\n /**\n * A string indicating how the request will interact with the browser's\n * cache to set request's cache.\n */\n cache?: \"default\" | \"force-cache\" | \"no-cache\" | \"no-store\" | \"only-if-cached\" | \"reload\";\n /**\n * A string indicating whether credentials will be sent with the request\n * always, never, or only when sent to a same-origin URL. Sets request's\n * credentials.\n */\n credentials?: \"omit\" | \"same-origin\" | \"include\";\n /**\n * A cryptographic hash of the resource to be fetched by request.\n *\n * Sets request's integrity.\n */\n integrity?: string;\n /** A boolean to set request's keepalive. */\n keepalive?: boolean;\n /**\n * A string to indicate whether the request will use CORS, or will be\n * restricted to same-origin URLs.\n *\n * Sets request's mode.\n */\n mode?: \"cors\" | \"navigate\" | \"no-cors\" | \"same-origin\";\n /**\n * A string indicating whether request follows redirects, results in an\n * error upon encountering a redirect, or returns the redirect (in an opaque\n * fashion).\n *\n * Sets request's redirect.\n */\n redirect?: \"error\" | \"follow\" | \"manual\";\n /**\n * A string whose value is a same-origin URL, \"about:client\", or the empty\n * string, to set request's referrer.\n */\n referrer?: string;\n /** A referrer policy to set request's referrerPolicy. */\n referrerPolicy?: \"\" | \"no-referrer\" | \"no-referrer-when-downgrade\" | \"origin\" | \"origin-when-cross-origin\" | \"same-origin\" | \"strict-origin\" | \"strict-origin-when-cross-origin\" | \"unsafe-url\";\n /** An AbortSignal to set request's signal. */\n signal?: AbortSignal | null;\n }\n /**\n * Type of allowed header values.\n *\n * Only atomic or array of atomic values are allowed.\n */\n type HeaderValue = string | boolean | number | bigint | string | Array<boolean> | Array<number> | Array<bigint> | Array<number> | Array<string>;\n /**\n * Type of headers\n *\n * `Headerify` removes every properties that are not allowed in the HTTP\n * headers type.\n *\n * Below are list of prohibited in HTTP headers.\n *\n * 1. Value type one of {@link HeaderValue}\n * 2. Key is \"set-cookie\", but value is not an Array type\n * 3. Key is one of them, but value is Array type\n *\n * - \"age\"\n * - \"authorization\"\n * - \"content-length\"\n * - \"content-type\"\n * - \"etag\"\n * - \"expires\"\n * - \"from\"\n * - \"host\"\n * - \"if-modified-since\"\n * - \"if-unmodified-since\"\n * - \"last-modified\"\n * - \"location\"\n * - \"max-forwards\"\n * - \"proxy-authorization\"\n * - \"referer\"\n * - \"retry-after\"\n * - \"server\"\n * - \"user-agent\"\n */\n type Headerify<T extends object | undefined> = {\n [P in keyof T]?: T[P] extends HeaderValue | undefined ? P extends string ? Lowercase<P> extends \"set-cookie\" ? T[P] extends Array<HeaderValue> ? T[P] | undefined : never : Lowercase<P> extends \"age\" | \"authorization\" | \"content-length\" | \"content-type\" | \"etag\" | \"expires\" | \"from\" | \"host\" | \"if-modified-since\" | \"if-unmodified-since\" | \"last-modified\" | \"location\" | \"max-forwards\" | \"proxy-authorization\" | \"referer\" | \"retry-after\" | \"server\" | \"user-agent\" ? T[P] extends Array<HeaderValue> ? never : T[P] | undefined : T[P] | undefined : never : never;\n };\n}\n",
|
|
11662
11662
|
"node_modules/@nestia/fetcher/lib/IEncryptionPassword.d.ts": "import { IConnection } from \"./IConnection\";\n/**\n * Encryption password.\n *\n * `IEncryptionPassword` is a type of interface who represents encryption password used by\n * the {@link Fetcher} with AES-128/256 algorithm. If your encryption password is not fixed\n * but changes according to the input content, you can utilize the\n * {@link IEncryptionPassword.Closure} function type.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IEncryptionPassword {\n /**\n * Secret key.\n */\n key: string;\n /**\n * Initialization Vector.\n */\n iv: string;\n}\nexport declare namespace IEncryptionPassword {\n /**\n * Type of a closure function returning the {@link IEncryptionPassword} object.\n *\n * `IEncryptionPassword.Closure` is a type of closure function who are returning the\n * {@link IEncryptionPassword} object. It would be used when your encryption password\n * be changed according to the input content.\n */\n interface Closure {\n /**\n * Encryption password getter.\n *\n * @param props Properties for predication\n * @returns Encryption password\n */\n (props: IProps): IEncryptionPassword;\n }\n /**\n * Properties for the closure.\n */\n interface IProps {\n headers: Record<string, IConnection.HeaderValue | undefined>;\n body: string;\n direction: \"encode\" | \"decode\";\n }\n}\n",
|
|
11663
11663
|
"node_modules/@nestia/fetcher/lib/IFetchEvent.d.ts": "import { IFetchRoute } from \"./IFetchRoute\";\nexport interface IFetchEvent {\n route: IFetchRoute<\"DELETE\" | \"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\">;\n path: string;\n status: number | null;\n input: any;\n output: any;\n started_at: Date;\n respond_at: Date | null;\n completed_at: Date;\n}\n",
|
|
11664
11664
|
"node_modules/@nestia/fetcher/lib/IFetchRoute.d.ts": "/**\n * Properties of remote API route.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface IFetchRoute<Method extends \"HEAD\" | \"GET\" | \"POST\" | \"PUT\" | \"PATCH\" | \"DELETE\"> {\n /**\n * Method of the HTTP request.\n */\n method: Method;\n /**\n * Path of the HTTP request.\n */\n path: string;\n /**\n * Path template.\n *\n * Filled since 3.2.2 version.\n */\n template?: string;\n /**\n * Request body data info.\n */\n request: Method extends \"DELETE\" | \"POST\" | \"PUT\" | \"PATCH\" ? IFetchRoute.IBody | null : null;\n /**\n * Response body data info.\n */\n response: Method extends \"HEAD\" ? null : IFetchRoute.IBody;\n /**\n * When special status code being used.\n */\n status: number | null;\n /**\n * Parser of the query string.\n *\n * If content type of response body is `application/x-www-form-urlencoded`,\n * then this `parseQuery` function would be called.\n *\n * If you've forgotten to configuring this `parseQuery` property about the\n * `application/x-www-form-urlencoded` typed response body data, then\n * only the `URLSearchParams` typed instance would be returned instead.\n */\n parseQuery?(input: URLSearchParams): any;\n}\nexport declare namespace IFetchRoute {\n /**\n * Metadata of body.\n *\n * Describes how content-type being used in body, and whether encrypted or not.\n */\n interface IBody {\n type: \"application/json\" | \"application/x-www-form-urlencoded\" | \"multipart/form-data\" | \"text/plain\";\n encrypted?: boolean;\n }\n}\n",
|
|
@@ -11668,7 +11668,7 @@
|
|
|
11668
11668
|
"node_modules/@nestia/fetcher/lib/PlainFetcher.d.ts": "import { IConnection } from \"./IConnection\";\nimport { IFetchRoute } from \"./IFetchRoute\";\nimport { IPropagation } from \"./IPropagation\";\n/**\n * Utility class for `fetch` functions used in `@nestia/sdk`.\n *\n * `PlainFetcher` is a utility class designed for SDK functions generated by\n * [`@nestia/sdk`](https://nestia.io/docs/sdk/sdk), interacting with the remote\n * HTTP sever API. In other words, this is a collection of dedicated `fetch()`\n * functions for `@nestia/sdk`.\n *\n * For reference, `PlainFetcher` class does not encrypt or decrypt the body data\n * at all. It just delivers plain data without any post processing. If you've\n * defined a controller method through `@EncryptedRoute` or `@EncryptedBody`\n * decorator, then {@liink EncryptedFetcher} class would be used instead.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace PlainFetcher {\n /**\n * Fetch function only for `HEAD` method.\n *\n * @param connection Connection information for the remote HTTP server\n * @param route Route information about the target API\n * @return Nothing because of `HEAD` method\n */\n function fetch(connection: IConnection, route: IFetchRoute<\"HEAD\">): Promise<void>;\n /**\n * Fetch function only for `GET` method.\n *\n * @param connection Connection information for the remote HTTP server\n * @param route Route information about the target API\n * @return Response body data from the remote API\n */\n function fetch<Output>(connection: IConnection, route: IFetchRoute<\"GET\">): Promise<Output>;\n /**\n * Fetch function for the `POST`, `PUT`, `PATCH` and `DELETE` methods.\n *\n * @param connection Connection information for the remote HTTP server\n * @param route Route information about the target API\n * @return Response body data from the remote API\n */\n function fetch<Input, Output>(connection: IConnection, route: IFetchRoute<\"POST\" | \"PUT\" | \"PATCH\" | \"DELETE\">, input?: Input, stringify?: (input: Input) => string): Promise<Output>;\n function propagate<Output extends IPropagation<any, any>>(connection: IConnection, route: IFetchRoute<\"GET\" | \"HEAD\">): Promise<Output>;\n function propagate<Input, Output extends IPropagation<any, any>>(connection: IConnection, route: IFetchRoute<\"DELETE\" | \"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\">, input?: Input, stringify?: (input: Input) => string): Promise<Output>;\n}\n",
|
|
11669
11669
|
"node_modules/@nestia/fetcher/lib/index.d.ts": "export * from \"./FormDataInput\";\nexport * from \"./HttpError\";\nexport * from \"./IConnection\";\nexport * from \"./IEncryptionPassword\";\nexport * from \"./IFetchEvent\";\nexport * from \"./IFetchRoute\";\nexport * from \"./IPropagation\";\n",
|
|
11670
11670
|
"node_modules/@nestia/fetcher/lib/internal/FetcherBase.d.ts": "export {};\n",
|
|
11671
|
-
"node_modules/@nestia/fetcher/package.json": "{\n \"name\": \"@nestia/fetcher\",\n \"version\": \"7.0
|
|
11671
|
+
"node_modules/@nestia/fetcher/package.json": "{\n \"name\": \"@nestia/fetcher\",\n \"version\": \"7.1.0\",\n \"description\": \"Fetcher library of Nestia SDK\",\n \"main\": \"lib/index.js\",\n \"typings\": \"lib/index.d.ts\",\n \"scripts\": {\n \"build\": \"rimraf lib && tsc\",\n \"dev\": \"tsc -p tsconfig.test.json --watch\",\n \"eslint\": \"eslint src\",\n \"eslint:fix\": \"eslint src --fix\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/nestia\"\n },\n \"keywords\": [\n \"nestia\",\n \"fetcher\",\n \"sdk\"\n ],\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/nestia/issues\"\n },\n \"homepage\": \"https://nestia.io\",\n \"dependencies\": {\n \"@samchon/openapi\": \"^4.5.0\"\n },\n \"devDependencies\": {\n \"@types/node\": \"^18.11.14\",\n \"@typescript-eslint/eslint-plugin\": \"^5.46.1\",\n \"@typescript-eslint/parser\": \"^5.46.1\",\n \"rimraf\": \"^6.0.1\",\n \"typescript\": \"~5.8.3\"\n },\n \"files\": [\n \"README.md\",\n \"LICENSE\",\n \"package.json\",\n \"lib\",\n \"src\"\n ]\n}",
|
|
11672
11672
|
"node_modules/@nestia/migrate/lib/NestiaMigrateApplication.d.ts": "import { IHttpMigrateApplication, OpenApi, OpenApiV3, OpenApiV3_1, SwaggerV2 } from \"@samchon/openapi\";\nimport { IValidation } from \"typia\";\nimport { INestiaMigrateConfig } from \"./structures/INestiaMigrateConfig\";\nimport { INestiaMigrateContext } from \"./structures/INestiaMigrateContext\";\nimport { INestiaMigrateFile } from \"./structures/INestiaMigrateFile\";\nexport declare class NestiaMigrateApplication {\n readonly document: OpenApi.IDocument;\n private readonly application_;\n constructor(document: OpenApi.IDocument);\n static assert(document: SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument | OpenApi.IDocument): NestiaMigrateApplication;\n static validate(document: SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument | OpenApi.IDocument): IValidation<NestiaMigrateApplication>;\n getErrors(): IHttpMigrateApplication.IError[];\n nest(config: INestiaMigrateConfig): Record<string, string>;\n sdk(config: INestiaMigrateConfig): Record<string, string>;\n private rename;\n}\nexport declare namespace MigrateApplication {\n interface IOutput {\n context: INestiaMigrateContext;\n files: INestiaMigrateFile[];\n errors: IHttpMigrateApplication.IError[];\n }\n}\n",
|
|
11673
11673
|
"node_modules/@nestia/migrate/lib/analyzers/NestiaMigrateControllerAnalyzer.d.ts": "import { IHttpMigrateRoute } from \"@samchon/openapi\";\nimport { INestiaMigrateController } from \"../structures/INestiaMigrateController\";\nexport declare namespace NestiaMigrateControllerAnalyzer {\n const analyze: (routes: IHttpMigrateRoute[]) => INestiaMigrateController[];\n}\n",
|
|
11674
11674
|
"node_modules/@nestia/migrate/lib/archivers/NestiaMigrateFileArchiver.d.ts": "export declare namespace NestiaMigrateFileArchiver {\n const archive: (props: {\n mkdir: (path: string) => Promise<void>;\n writeFile: (path: string, content: string) => Promise<void>;\n root: string;\n files: Record<string, string>;\n }) => Promise<void>;\n}\n",
|
|
@@ -11709,15 +11709,7 @@
|
|
|
11709
11709
|
"node_modules/@nestia/migrate/lib/utils/StringUtil.d.ts": "export declare namespace StringUtil {\n const capitalize: (str: string) => string;\n const splitWithNormalization: (path: string) => string[];\n const escapeDuplicate: (keep: string[]) => (change: string) => string;\n const escapeNonVariable: (str: string) => string;\n}\n",
|
|
11710
11710
|
"node_modules/@nestia/migrate/lib/utils/openapi-down-convert/RefVisitor.d.ts": "/**\n * Recursively walk a JSON object and invoke a callback function\n * on each `{ \"$ref\" : \"path\" }` object found\n */\n/**\n * Represents a JSON Reference object, such as\n * `{\"$ref\": \"#/components/schemas/problemResponse\" }`\n */\nexport interface RefObject {\n $ref: string;\n}\n/**\n * JsonNode represents a node within the OpenAPI object\n */\nexport type JsonNode = object | [] | string | boolean | null | number;\n/** A JSON Schema object in an API def */\nexport type SchemaObject = object;\n/**\n * Function signature for the visitRefObjects callback\n */\nexport type RefVisitor = (node: RefObject) => JsonNode;\n/**\n * Function signature for the visitSchemaObjects callback\n */\nexport type SchemaVisitor = (node: SchemaObject) => SchemaObject;\n/**\n/**\n * Function signature for the walkObject callback\n */\nexport type ObjectVisitor = (node: object) => JsonNode;\n/**\n * Test if a JSON node is a `{ $ref: \"uri\" }` object\n */\nexport declare function isRef(node: any): boolean;\n/**\n * Walk a JSON object and apply `schemaCallback` when a JSON schema is found.\n * JSON Schema objects are items in components/schemas or in an item named `schema`\n * @param node a node in the OpenAPI document\n * @param schemaCallback the function to call on JSON schema objects\n * @return the modified (annotated) node\n */\nexport declare function visitSchemaObjects(node: any, schemaCallback: SchemaVisitor): any;\n/**\n * Walk a JSON object and apply `refCallback` when a JSON `{$ref: url }` is found\n * @param node a node in the OpenAPI document\n * @param refCallback the function to call on JSON `$ref` objects\n * @return the modified (annotated) node\n */\nexport declare function visitRefObjects(node: any, refCallback: RefVisitor): any;\n/**\n * Walk a JSON object or array and apply objectCallback when a JSON object is found\n * @param node a node in the OpenAPI document\n * @param objectCallback the function to call on JSON objects\n * @param nav tracks where we are in the original document\n * @return the modified (annotated) node\n */\nexport declare function walkObject(node: object, objectCallback: ObjectVisitor): JsonNode;\n",
|
|
11711
11711
|
"node_modules/@nestia/migrate/lib/utils/openapi-down-convert/converter.d.ts": "/** Options for the converter instantiation */\nexport interface ConverterOptions {\n /** if `true`, log conversion transformations to stderr */\n verbose?: boolean;\n /** if `true`, remove `id` values in schema examples, to bypass\n * [Spectral issue 2081](https://github.com/stoplightio/spectral/issues/2081)\n */\n deleteExampleWithId?: boolean;\n /** If `true`, replace a `$ref` object that has siblings into an `allOf` */\n allOfTransform?: boolean;\n /**\n * The authorizationUrl for openIdConnect -> oauth2 transformation\n */\n authorizationUrl?: string;\n /** The tokenUrl for openIdConnect -> oauth2 transformation */\n tokenUrl?: string;\n /** Name of YAML/JSON file with scope descriptions.\n * This is a simple map in the format\n * `{ scope1: \"description of scope1\", ... }`\n */\n scopeDescriptionFile?: string;\n /** Earlier versions of the tool converted $comment to x-comment\n * in JSON Schemas. The tool now deletes $comment values by default.\n * Use this option to preserve the conversion and not delete\n * comments.\n */\n convertSchemaComments?: boolean;\n}\nexport declare class Converter {\n private openapi30;\n private verbose;\n private deleteExampleWithId;\n private allOfTransform;\n private authorizationUrl;\n /** The tokenUrl for openIdConnect -> oauth2 transformation */\n private tokenUrl;\n private scopeDescriptions;\n private convertSchemaComments;\n private returnCode;\n /**\n * Construct a new Converter\n * @throws Error if the scopeDescriptionFile (if specified) cannot be read or parsed as YAML/JSON\n */\n constructor(openapiDocument: object, options?: ConverterOptions);\n /** Load the scopes.yaml file and save in this.scopeDescriptions\n * @throws Error if the file cannot be read or parsed as YAML/JSON\n */\n private loadScopeDescriptions;\n /**\n * Log a message to console.warn stream if verbose is true\n * @param message parameters for console.warn\n */\n private log;\n /**\n * Log a message to console.warn stream. Prefix the message string with `Warning: `\n * if it does not already have that text.\n * @param message parameters for console.warn\n */\n private warn;\n /**\n * Log an error message to `console.error` stream. Prefix the message string with `Error: `\n * if it does not already start with `'Error'`. Increments the `returnCode`, causing\n * the CLI to throw an Error when done.\n * @param message parameters for `console.error`\n */\n private error;\n /**\n * Convert the OpenAPI document to 3.0\n * @returns the converted document. The input is not modified.\n */\n convert(): object;\n /**\n * OpenAPI 3.1 uses JSON Schema 2020-12 which allows schema `examples`;\n * OpenAPI 3.0 uses JSON Scheme Draft 7 which only allows `example`.\n * Replace all `examples` with `example`, using `examples[0]`\n */\n convertJsonSchemaExamples(): void;\n private walkNestedSchemaObjects;\n /**\n * OpenAPI 3.1 uses JSON Schema 2020-12 which allows `const`\n * OpenAPI 3.0 uses JSON Scheme Draft 7 which only allows `enum`.\n * Replace all `const: value` with `enum: [ value ]`\n */\n convertConstToEnum(): void;\n /**\n * Convert 2-element type arrays containing 'null' to\n * string type and `nullable: true`\n */\n convertNullableTypeArray(): void;\n removeWebhooksObject(): void;\n removeUnsupportedSchemaKeywords(): void;\n renameSchema$comment(): void;\n private deleteSchema$comment;\n /**\n * Convert\n * ```\n * contentMediaType: 'application/octet-stream'\n * ```\n * to\n * ```\n * format: binary\n * ```\n * in `type: string` schemas.\n * Warn if schema has a `format` already and it is not `binary`.\n */\n convertJsonSchemaContentMediaType(): void;\n /**\n * Convert\n * ```\n * contentEncoding: base64\n * ```\n * to\n * ```\n * format: byte\n * ```\n * in `type: string` schemas. It is an error if the schema has a `format` already\n * and it is not `byte`.\n */\n convertJsonSchemaContentEncoding(): void;\n private json;\n /**\n * OpenAPI 3.1 defines a new `openIdConnect` security scheme.\n * Down-convert the scheme to `oauth2` / authorization code flow.\n * Collect all the scopes used in any security requirements within\n * operations and add them to the scheme. Also define the\n * URLs to the `authorizationUrl` and `tokenUrl` of `oauth2`.\n */\n convertSecuritySchemes(): void;\n /**\n * Find remaining OpenAPI 3.0 [Reference Objects](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#referenceObject)\n * and down convert them to [JSON Reference](https://tools.ietf.org/html/draft-pbryan-zyp-json-ref-03) objects\n * with _only_ a `$ref` property.\n */\n simplifyNonSchemaRef(): void;\n removeLicenseIdentifier(): void;\n convertSchemaRef(): void;\n static deepClone(obj: object): object;\n}\n",
|
|
11712
|
-
"node_modules/
|
|
11713
|
-
"node_modules/commander/typings/index.d.ts": "// Type definitions for commander\n// Original definitions by: Alan Agius <https://github.com/alan-agius4>, Marcelo Dezem <https://github.com/mdezem>, vvakame <https://github.com/vvakame>, Jules Randolph <https://github.com/sveinburne>\n\n// Using method rather than property for method-signature-style, to document method overloads separately. Allow either.\n/* eslint-disable @typescript-eslint/method-signature-style */\n/* eslint-disable @typescript-eslint/no-explicit-any */\n\nexport class CommanderError extends Error {\n code: string;\n exitCode: number;\n message: string;\n nestedError?: string;\n\n /**\n * Constructs the CommanderError class\n * @param exitCode - suggested exit code which could be used with process.exit\n * @param code - an id string representing the error\n * @param message - human-readable description of the error\n * @constructor\n */\n constructor(exitCode: number, code: string, message: string);\n}\n\nexport class InvalidArgumentError extends CommanderError {\n /**\n * Constructs the InvalidArgumentError class\n * @param message - explanation of why argument is invalid\n * @constructor\n */\n constructor(message: string);\n}\nexport { InvalidArgumentError as InvalidOptionArgumentError }; // deprecated old name\n\nexport interface ErrorOptions { // optional parameter for error()\n /** an id string representing the error */\n code?: string;\n /** suggested exit code which could be used with process.exit */\n exitCode?: number;\n}\n\nexport class Argument {\n description: string;\n required: boolean;\n variadic: boolean;\n\n /**\n * Initialize a new command argument with the given name and description.\n * The default is that the argument is required, and you can explicitly\n * indicate this with <> around the name. Put [] around the name for an optional argument.\n */\n constructor(arg: string, description?: string);\n\n /**\n * Return argument name.\n */\n name(): string;\n\n /**\n * Set the default value, and optionally supply the description to be displayed in the help.\n */\n default(value: unknown, description?: string): this;\n\n /**\n * Set the custom handler for processing CLI command arguments into argument values.\n */\n argParser<T>(fn: (value: string, previous: T) => T): this;\n\n /**\n * Only allow argument value to be one of choices.\n */\n choices(values: readonly string[]): this;\n\n /**\n * Make argument required.\n */\n argRequired(): this;\n\n /**\n * Make argument optional.\n */\n argOptional(): this;\n}\n\nexport class Option {\n flags: string;\n description: string;\n\n required: boolean; // A value must be supplied when the option is specified.\n optional: boolean; // A value is optional when the option is specified.\n variadic: boolean;\n mandatory: boolean; // The option must have a value after parsing, which usually means it must be specified on command line.\n short?: string;\n long?: string;\n negate: boolean;\n defaultValue?: any;\n defaultValueDescription?: string;\n parseArg?: <T>(value: string, previous: T) => T;\n hidden: boolean;\n argChoices?: string[];\n\n constructor(flags: string, description?: string);\n\n /**\n * Set the default value, and optionally supply the description to be displayed in the help.\n */\n default(value: unknown, description?: string): this;\n\n /**\n * Preset to use when option used without option-argument, especially optional but also boolean and negated.\n * The custom processing (parseArg) is called.\n *\n * @example\n * ```ts\n * new Option('--color').default('GREYSCALE').preset('RGB');\n * new Option('--donate [amount]').preset('20').argParser(parseFloat);\n * ```\n */\n preset(arg: unknown): this;\n\n /**\n * Add option name(s) that conflict with this option.\n * An error will be displayed if conflicting options are found during parsing.\n *\n * @example\n * ```ts\n * new Option('--rgb').conflicts('cmyk');\n * new Option('--js').conflicts(['ts', 'jsx']);\n * ```\n */\n conflicts(names: string | string[]): this;\n\n /**\n * Specify implied option values for when this option is set and the implied options are not.\n *\n * The custom processing (parseArg) is not called on the implied values.\n *\n * @example\n * program\n * .addOption(new Option('--log', 'write logging information to file'))\n * .addOption(new Option('--trace', 'log extra details').implies({ log: 'trace.txt' }));\n */\n implies(optionValues: OptionValues): this;\n\n /**\n * Set environment variable to check for option value.\n *\n * An environment variables is only used if when processed the current option value is\n * undefined, or the source of the current value is 'default' or 'config' or 'env'.\n */\n env(name: string): this;\n\n /**\n * Calculate the full description, including defaultValue etc.\n */\n fullDescription(): string;\n\n /**\n * Set the custom handler for processing CLI option arguments into option values.\n */\n argParser<T>(fn: (value: string, previous: T) => T): this;\n\n /**\n * Whether the option is mandatory and must have a value after parsing.\n */\n makeOptionMandatory(mandatory?: boolean): this;\n\n /**\n * Hide option in help.\n */\n hideHelp(hide?: boolean): this;\n\n /**\n * Only allow option value to be one of choices.\n */\n choices(values: readonly string[]): this;\n\n /**\n * Return option name.\n */\n name(): string;\n\n /**\n * Return option name, in a camelcase format that can be used\n * as a object attribute key.\n */\n attributeName(): string;\n\n /**\n * Return whether a boolean option.\n *\n * Options are one of boolean, negated, required argument, or optional argument.\n */\n isBoolean(): boolean;\n}\n\nexport class Help {\n /** output helpWidth, long lines are wrapped to fit */\n helpWidth?: number;\n sortSubcommands: boolean;\n sortOptions: boolean;\n showGlobalOptions: boolean;\n\n constructor();\n\n /** Get the command term to show in the list of subcommands. */\n subcommandTerm(cmd: Command): string;\n /** Get the command summary to show in the list of subcommands. */\n subcommandDescription(cmd: Command): string;\n /** Get the option term to show in the list of options. */\n optionTerm(option: Option): string;\n /** Get the option description to show in the list of options. */\n optionDescription(option: Option): string;\n /** Get the argument term to show in the list of arguments. */\n argumentTerm(argument: Argument): string;\n /** Get the argument description to show in the list of arguments. */\n argumentDescription(argument: Argument): string;\n\n /** Get the command usage to be displayed at the top of the built-in help. */\n commandUsage(cmd: Command): string;\n /** Get the description for the command. */\n commandDescription(cmd: Command): string;\n\n /** Get an array of the visible subcommands. Includes a placeholder for the implicit help command, if there is one. */\n visibleCommands(cmd: Command): Command[];\n /** Get an array of the visible options. Includes a placeholder for the implicit help option, if there is one. */\n visibleOptions(cmd: Command): Option[];\n /** Get an array of the visible global options. (Not including help.) */\n visibleGlobalOptions(cmd: Command): Option[];\n /** Get an array of the arguments which have descriptions. */\n visibleArguments(cmd: Command): Argument[];\n\n /** Get the longest command term length. */\n longestSubcommandTermLength(cmd: Command, helper: Help): number;\n /** Get the longest option term length. */\n longestOptionTermLength(cmd: Command, helper: Help): number;\n /** Get the longest global option term length. */\n longestGlobalOptionTermLength(cmd: Command, helper: Help): number;\n /** Get the longest argument term length. */\n longestArgumentTermLength(cmd: Command, helper: Help): number;\n /** Calculate the pad width from the maximum term length. */\n padWidth(cmd: Command, helper: Help): number;\n\n /**\n * Wrap the given string to width characters per line, with lines after the first indented.\n * Do not wrap if insufficient room for wrapping (minColumnWidth), or string is manually formatted.\n */\n wrap(str: string, width: number, indent: number, minColumnWidth?: number): string;\n\n /** Generate the built-in help text. */\n formatHelp(cmd: Command, helper: Help): string;\n}\nexport type HelpConfiguration = Partial<Help>;\n\nexport interface ParseOptions {\n from: 'node' | 'electron' | 'user';\n}\nexport interface HelpContext { // optional parameter for .help() and .outputHelp()\n error: boolean;\n}\nexport interface AddHelpTextContext { // passed to text function used with .addHelpText()\n error: boolean;\n command: Command;\n}\nexport interface OutputConfiguration {\n writeOut?(str: string): void;\n writeErr?(str: string): void;\n getOutHelpWidth?(): number;\n getErrHelpWidth?(): number;\n outputError?(str: string, write: (str: string) => void): void;\n\n}\n\nexport type AddHelpTextPosition = 'beforeAll' | 'before' | 'after' | 'afterAll';\nexport type HookEvent = 'preSubcommand' | 'preAction' | 'postAction';\nexport type OptionValueSource = 'default' | 'config' | 'env' | 'cli' | 'implied';\n\nexport type OptionValues = Record<string, any>;\n\nexport class Command {\n args: string[];\n processedArgs: any[];\n readonly commands: readonly Command[];\n readonly options: readonly Option[];\n parent: Command | null;\n\n constructor(name?: string);\n\n /**\n * Set the program version to `str`.\n *\n * This method auto-registers the \"-V, --version\" flag\n * which will print the version number when passed.\n *\n * You can optionally supply the flags and description to override the defaults.\n */\n version(str: string, flags?: string, description?: string): this;\n\n /**\n * Define a command, implemented using an action handler.\n *\n * @remarks\n * The command description is supplied using `.description`, not as a parameter to `.command`.\n *\n * @example\n * ```ts\n * program\n * .command('clone <source> [destination]')\n * .description('clone a repository into a newly created directory')\n * .action((source, destination) => {\n * console.log('clone command called');\n * });\n * ```\n *\n * @param nameAndArgs - command name and arguments, args are `<required>` or `[optional]` and last may also be `variadic...`\n * @param opts - configuration options\n * @returns new command\n */\n command(nameAndArgs: string, opts?: CommandOptions): ReturnType<this['createCommand']>;\n /**\n * Define a command, implemented in a separate executable file.\n *\n * @remarks\n * The command description is supplied as the second parameter to `.command`.\n *\n * @example\n * ```ts\n * program\n * .command('start <service>', 'start named service')\n * .command('stop [service]', 'stop named service, or all if no name supplied');\n * ```\n *\n * @param nameAndArgs - command name and arguments, args are `<required>` or `[optional]` and last may also be `variadic...`\n * @param description - description of executable command\n * @param opts - configuration options\n * @returns `this` command for chaining\n */\n command(nameAndArgs: string, description: string, opts?: ExecutableCommandOptions): this;\n\n /**\n * Factory routine to create a new unattached command.\n *\n * See .command() for creating an attached subcommand, which uses this routine to\n * create the command. You can override createCommand to customise subcommands.\n */\n createCommand(name?: string): Command;\n\n /**\n * Add a prepared subcommand.\n *\n * See .command() for creating an attached subcommand which inherits settings from its parent.\n *\n * @returns `this` command for chaining\n */\n addCommand(cmd: Command, opts?: CommandOptions): this;\n\n /**\n * Factory routine to create a new unattached argument.\n *\n * See .argument() for creating an attached argument, which uses this routine to\n * create the argument. You can override createArgument to return a custom argument.\n */\n createArgument(name: string, description?: string): Argument;\n\n /**\n * Define argument syntax for command.\n *\n * The default is that the argument is required, and you can explicitly\n * indicate this with <> around the name. Put [] around the name for an optional argument.\n *\n * @example\n * ```\n * program.argument('<input-file>');\n * program.argument('[output-file]');\n * ```\n *\n * @returns `this` command for chaining\n */\n argument<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n argument(name: string, description?: string, defaultValue?: unknown): this;\n\n /**\n * Define argument syntax for command, adding a prepared argument.\n *\n * @returns `this` command for chaining\n */\n addArgument(arg: Argument): this;\n\n /**\n * Define argument syntax for command, adding multiple at once (without descriptions).\n *\n * See also .argument().\n *\n * @example\n * ```\n * program.arguments('<cmd> [env]');\n * ```\n *\n * @returns `this` command for chaining\n */\n arguments(names: string): this;\n\n /**\n * Override default decision whether to add implicit help command.\n *\n * @example\n * ```\n * addHelpCommand() // force on\n * addHelpCommand(false); // force off\n * addHelpCommand('help [cmd]', 'display help for [cmd]'); // force on with custom details\n * ```\n *\n * @returns `this` command for chaining\n */\n addHelpCommand(enableOrNameAndArgs?: string | boolean, description?: string): this;\n\n /**\n * Add hook for life cycle event.\n */\n hook(event: HookEvent, listener: (thisCommand: Command, actionCommand: Command) => void | Promise<void>): this;\n\n /**\n * Register callback to use as replacement for calling process.exit.\n */\n exitOverride(callback?: (err: CommanderError) => never | void): this;\n\n /**\n * Display error message and exit (or call exitOverride).\n */\n error(message: string, errorOptions?: ErrorOptions): never;\n\n /**\n * You can customise the help with a subclass of Help by overriding createHelp,\n * or by overriding Help properties using configureHelp().\n */\n createHelp(): Help;\n\n /**\n * You can customise the help by overriding Help properties using configureHelp(),\n * or with a subclass of Help by overriding createHelp().\n */\n configureHelp(configuration: HelpConfiguration): this;\n /** Get configuration */\n configureHelp(): HelpConfiguration;\n\n /**\n * The default output goes to stdout and stderr. You can customise this for special\n * applications. You can also customise the display of errors by overriding outputError.\n *\n * The configuration properties are all functions:\n * ```\n * // functions to change where being written, stdout and stderr\n * writeOut(str)\n * writeErr(str)\n * // matching functions to specify width for wrapping help\n * getOutHelpWidth()\n * getErrHelpWidth()\n * // functions based on what is being written out\n * outputError(str, write) // used for displaying errors, and not used for displaying help\n * ```\n */\n configureOutput(configuration: OutputConfiguration): this;\n /** Get configuration */\n configureOutput(): OutputConfiguration;\n\n /**\n * Copy settings that are useful to have in common across root command and subcommands.\n *\n * (Used internally when adding a command using `.command()` so subcommands inherit parent settings.)\n */\n copyInheritedSettings(sourceCommand: Command): this;\n\n /**\n * Display the help or a custom message after an error occurs.\n */\n showHelpAfterError(displayHelp?: boolean | string): this;\n\n /**\n * Display suggestion of similar commands for unknown commands, or options for unknown options.\n */\n showSuggestionAfterError(displaySuggestion?: boolean): this;\n\n /**\n * Register callback `fn` for the command.\n *\n * @example\n * ```\n * program\n * .command('serve')\n * .description('start service')\n * .action(function() {\n * // do work here\n * });\n * ```\n *\n * @returns `this` command for chaining\n */\n action(fn: (...args: any[]) => void | Promise<void>): this;\n\n /**\n * Define option with `flags`, `description` and optional\n * coercion `fn`.\n *\n * The `flags` string contains the short and/or long flags,\n * separated by comma, a pipe or space. The following are all valid\n * all will output this way when `--help` is used.\n *\n * \"-p, --pepper\"\n * \"-p|--pepper\"\n * \"-p --pepper\"\n *\n * @example\n * ```\n * // simple boolean defaulting to false\n * program.option('-p, --pepper', 'add pepper');\n *\n * --pepper\n * program.pepper\n * // => Boolean\n *\n * // simple boolean defaulting to true\n * program.option('-C, --no-cheese', 'remove cheese');\n *\n * program.cheese\n * // => true\n *\n * --no-cheese\n * program.cheese\n * // => false\n *\n * // required argument\n * program.option('-C, --chdir <path>', 'change the working directory');\n *\n * --chdir /tmp\n * program.chdir\n * // => \"/tmp\"\n *\n * // optional argument\n * program.option('-c, --cheese [type]', 'add cheese [marble]');\n * ```\n *\n * @returns `this` command for chaining\n */\n option(flags: string, description?: string, defaultValue?: string | boolean | string[]): this;\n option<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n /** @deprecated since v7, instead use choices or a custom function */\n option(flags: string, description: string, regexp: RegExp, defaultValue?: string | boolean | string[]): this;\n\n /**\n * Define a required option, which must have a value after parsing. This usually means\n * the option must be specified on the command line. (Otherwise the same as .option().)\n *\n * The `flags` string contains the short and/or long flags, separated by comma, a pipe or space.\n */\n requiredOption(flags: string, description?: string, defaultValue?: string | boolean | string[]): this;\n requiredOption<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n /** @deprecated since v7, instead use choices or a custom function */\n requiredOption(flags: string, description: string, regexp: RegExp, defaultValue?: string | boolean | string[]): this;\n\n /**\n * Factory routine to create a new unattached option.\n *\n * See .option() for creating an attached option, which uses this routine to\n * create the option. You can override createOption to return a custom option.\n */\n\n createOption(flags: string, description?: string): Option;\n\n /**\n * Add a prepared Option.\n *\n * See .option() and .requiredOption() for creating and attaching an option in a single call.\n */\n addOption(option: Option): this;\n\n /**\n * Whether to store option values as properties on command object,\n * or store separately (specify false). In both cases the option values can be accessed using .opts().\n *\n * @returns `this` command for chaining\n */\n storeOptionsAsProperties<T extends OptionValues>(): this & T;\n storeOptionsAsProperties<T extends OptionValues>(storeAsProperties: true): this & T;\n storeOptionsAsProperties(storeAsProperties?: boolean): this;\n\n /**\n * Retrieve option value.\n */\n getOptionValue(key: string): any;\n\n /**\n * Store option value.\n */\n setOptionValue(key: string, value: unknown): this;\n\n /**\n * Store option value and where the value came from.\n */\n setOptionValueWithSource(key: string, value: unknown, source: OptionValueSource): this;\n\n /**\n * Get source of option value.\n */\n getOptionValueSource(key: string): OptionValueSource | undefined;\n\n /**\n * Get source of option value. See also .optsWithGlobals().\n */\n getOptionValueSourceWithGlobals(key: string): OptionValueSource | undefined;\n\n /**\n * Alter parsing of short flags with optional values.\n *\n * @example\n * ```\n * // for `.option('-f,--flag [value]'):\n * .combineFlagAndOptionalValue(true) // `-f80` is treated like `--flag=80`, this is the default behaviour\n * .combineFlagAndOptionalValue(false) // `-fb` is treated like `-f -b`\n * ```\n *\n * @returns `this` command for chaining\n */\n combineFlagAndOptionalValue(combine?: boolean): this;\n\n /**\n * Allow unknown options on the command line.\n *\n * @returns `this` command for chaining\n */\n allowUnknownOption(allowUnknown?: boolean): this;\n\n /**\n * Allow excess command-arguments on the command line. Pass false to make excess arguments an error.\n *\n * @returns `this` command for chaining\n */\n allowExcessArguments(allowExcess?: boolean): this;\n\n /**\n * Enable positional options. Positional means global options are specified before subcommands which lets\n * subcommands reuse the same option names, and also enables subcommands to turn on passThroughOptions.\n *\n * The default behaviour is non-positional and global options may appear anywhere on the command line.\n *\n * @returns `this` command for chaining\n */\n enablePositionalOptions(positional?: boolean): this;\n\n /**\n * Pass through options that come after command-arguments rather than treat them as command-options,\n * so actual command-options come before command-arguments. Turning this on for a subcommand requires\n * positional options to have been enabled on the program (parent commands).\n *\n * The default behaviour is non-positional and options may appear before or after command-arguments.\n *\n * @returns `this` command for chaining\n */\n passThroughOptions(passThrough?: boolean): this;\n\n /**\n * Parse `argv`, setting options and invoking commands when defined.\n *\n * The default expectation is that the arguments are from node and have the application as argv[0]\n * and the script being run in argv[1], with user parameters after that.\n *\n * @example\n * ```\n * program.parse(process.argv);\n * program.parse(); // implicitly use process.argv and auto-detect node vs electron conventions\n * program.parse(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]\n * ```\n *\n * @returns `this` command for chaining\n */\n parse(argv?: readonly string[], options?: ParseOptions): this;\n\n /**\n * Parse `argv`, setting options and invoking commands when defined.\n *\n * Use parseAsync instead of parse if any of your action handlers are async. Returns a Promise.\n *\n * The default expectation is that the arguments are from node and have the application as argv[0]\n * and the script being run in argv[1], with user parameters after that.\n *\n * @example\n * ```\n * program.parseAsync(process.argv);\n * program.parseAsync(); // implicitly use process.argv and auto-detect node vs electron conventions\n * program.parseAsync(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]\n * ```\n *\n * @returns Promise\n */\n parseAsync(argv?: readonly string[], options?: ParseOptions): Promise<this>;\n\n /**\n * Parse options from `argv` removing known options,\n * and return argv split into operands and unknown arguments.\n *\n * argv => operands, unknown\n * --known kkk op => [op], []\n * op --known kkk => [op], []\n * sub --unknown uuu op => [sub], [--unknown uuu op]\n * sub -- --unknown uuu op => [sub --unknown uuu op], []\n */\n parseOptions(argv: string[]): ParseOptionsResult;\n\n /**\n * Return an object containing local option values as key-value pairs\n */\n opts<T extends OptionValues>(): T;\n\n /**\n * Return an object containing merged local and global option values as key-value pairs.\n */\n optsWithGlobals<T extends OptionValues>(): T;\n\n /**\n * Set the description.\n *\n * @returns `this` command for chaining\n */\n\n description(str: string): this;\n /** @deprecated since v8, instead use .argument to add command argument with description */\n description(str: string, argsDescription: Record<string, string>): this;\n /**\n * Get the description.\n */\n description(): string;\n\n /**\n * Set the summary. Used when listed as subcommand of parent.\n *\n * @returns `this` command for chaining\n */\n\n summary(str: string): this;\n /**\n * Get the summary.\n */\n summary(): string;\n\n /**\n * Set an alias for the command.\n *\n * You may call more than once to add multiple aliases. Only the first alias is shown in the auto-generated help.\n *\n * @returns `this` command for chaining\n */\n alias(alias: string): this;\n /**\n * Get alias for the command.\n */\n alias(): string;\n\n /**\n * Set aliases for the command.\n *\n * Only the first alias is shown in the auto-generated help.\n *\n * @returns `this` command for chaining\n */\n aliases(aliases: readonly string[]): this;\n /**\n * Get aliases for the command.\n */\n aliases(): string[];\n\n /**\n * Set the command usage.\n *\n * @returns `this` command for chaining\n */\n usage(str: string): this;\n /**\n * Get the command usage.\n */\n usage(): string;\n\n /**\n * Set the name of the command.\n *\n * @returns `this` command for chaining\n */\n name(str: string): this;\n /**\n * Get the name of the command.\n */\n name(): string;\n\n /**\n * Set the name of the command from script filename, such as process.argv[1],\n * or require.main.filename, or __filename.\n *\n * (Used internally and public although not documented in README.)\n *\n * @example\n * ```ts\n * program.nameFromFilename(require.main.filename);\n * ```\n *\n * @returns `this` command for chaining\n */\n nameFromFilename(filename: string): this;\n\n /**\n * Set the directory for searching for executable subcommands of this command.\n *\n * @example\n * ```ts\n * program.executableDir(__dirname);\n * // or\n * program.executableDir('subcommands');\n * ```\n *\n * @returns `this` command for chaining\n */\n executableDir(path: string): this;\n /**\n * Get the executable search directory.\n */\n executableDir(): string;\n\n /**\n * Output help information for this command.\n *\n * Outputs built-in help, and custom text added using `.addHelpText()`.\n *\n */\n outputHelp(context?: HelpContext): void;\n /** @deprecated since v7 */\n outputHelp(cb?: (str: string) => string): void;\n\n /**\n * Return command help documentation.\n */\n helpInformation(context?: HelpContext): string;\n\n /**\n * You can pass in flags and a description to override the help\n * flags and help description for your command. Pass in false\n * to disable the built-in help option.\n */\n helpOption(flags?: string | boolean, description?: string): this;\n\n /**\n * Output help information and exit.\n *\n * Outputs built-in help, and custom text added using `.addHelpText()`.\n */\n help(context?: HelpContext): never;\n /** @deprecated since v7 */\n help(cb?: (str: string) => string): never;\n\n /**\n * Add additional text to be displayed with the built-in help.\n *\n * Position is 'before' or 'after' to affect just this command,\n * and 'beforeAll' or 'afterAll' to affect this command and all its subcommands.\n */\n addHelpText(position: AddHelpTextPosition, text: string): this;\n addHelpText(position: AddHelpTextPosition, text: (context: AddHelpTextContext) => string): this;\n\n /**\n * Add a listener (callback) for when events occur. (Implemented using EventEmitter.)\n */\n on(event: string | symbol, listener: (...args: any[]) => void): this;\n}\n\nexport interface CommandOptions {\n hidden?: boolean;\n isDefault?: boolean;\n /** @deprecated since v7, replaced by hidden */\n noHelp?: boolean;\n}\nexport interface ExecutableCommandOptions extends CommandOptions {\n executableFile?: string;\n}\n\nexport interface ParseOptionsResult {\n operands: string[];\n unknown: string[];\n}\n\nexport function createCommand(name?: string): Command;\nexport function createOption(flags: string, description?: string): Option;\nexport function createArgument(name: string, description?: string): Argument;\n\nexport const program: Command;\n",
|
|
11714
|
-
"node_modules/inquirer/package.json": "{\n \"name\": \"inquirer\",\n \"version\": \"8.2.6\",\n \"description\": \"A collection of common interactive command line user interfaces.\",\n \"author\": \"Simon Boudrias <admin@simonboudrias.com>\",\n \"files\": [\n \"lib\",\n \"README.md\"\n ],\n \"main\": \"lib/inquirer.js\",\n \"keywords\": [\n \"command\",\n \"prompt\",\n \"stdin\",\n \"cli\",\n \"tty\",\n \"menu\"\n ],\n \"engines\": {\n \"node\": \">=12.0.0\"\n },\n \"devDependencies\": {\n \"chai\": \"^4.3.6\",\n \"chai-string\": \"^1.5.0\",\n \"chalk-pipe\": \"^5.1.1\",\n \"cmdify\": \"^0.0.4\",\n \"mocha\": \"^9.2.2\",\n \"mockery\": \"^2.1.0\",\n \"nyc\": \"^15.0.0\",\n \"sinon\": \"^13.0.2\",\n \"terminal-link\": \"^2.1.1\"\n },\n \"scripts\": {\n \"test\": \"nyc mocha test/**/* -r ./test/before\",\n \"posttest\": \"mkdir -p ../../coverage && nyc report --reporter=text-lcov > ../../coverage/nyc-report.lcov\",\n \"prepublishOnly\": \"cp ../../README.md .\",\n \"postpublish\": \"rm -f README.md\"\n },\n \"repository\": \"SBoudrias/Inquirer.js\",\n \"license\": \"MIT\",\n \"dependencies\": {\n \"ansi-escapes\": \"^4.2.1\",\n \"chalk\": \"^4.1.1\",\n \"cli-cursor\": \"^3.1.0\",\n \"cli-width\": \"^3.0.0\",\n \"external-editor\": \"^3.0.3\",\n \"figures\": \"^3.0.0\",\n \"lodash\": \"^4.17.21\",\n \"mute-stream\": \"0.0.8\",\n \"ora\": \"^5.4.1\",\n \"run-async\": \"^2.4.0\",\n \"rxjs\": \"^7.5.5\",\n \"string-width\": \"^4.1.0\",\n \"strip-ansi\": \"^6.0.0\",\n \"through\": \"^2.3.6\",\n \"wrap-ansi\": \"^6.0.1\"\n },\n \"gitHead\": \"30ec0483de28849e56bd6b9b61daaabf8edea16f\"\n}\n",
|
|
11715
|
-
"node_modules/wrap-ansi/package.json": "{\n\t\"name\": \"wrap-ansi\",\n\t\"version\": \"6.2.0\",\n\t\"description\": \"Wordwrap a string with ANSI escape codes\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"chalk/wrap-ansi\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=8\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && nyc ava\"\n\t},\n\t\"files\": [\n\t\t\"index.js\"\n\t],\n\t\"keywords\": [\n\t\t\"wrap\",\n\t\t\"break\",\n\t\t\"wordwrap\",\n\t\t\"wordbreak\",\n\t\t\"linewrap\",\n\t\t\"ansi\",\n\t\t\"styles\",\n\t\t\"color\",\n\t\t\"colour\",\n\t\t\"colors\",\n\t\t\"terminal\",\n\t\t\"console\",\n\t\t\"cli\",\n\t\t\"string\",\n\t\t\"tty\",\n\t\t\"escape\",\n\t\t\"formatting\",\n\t\t\"rgb\",\n\t\t\"256\",\n\t\t\"shell\",\n\t\t\"xterm\",\n\t\t\"log\",\n\t\t\"logging\",\n\t\t\"command-line\",\n\t\t\"text\"\n\t],\n\t\"dependencies\": {\n\t\t\"ansi-styles\": \"^4.0.0\",\n\t\t\"string-width\": \"^4.1.0\",\n\t\t\"strip-ansi\": \"^6.0.0\"\n\t},\n\t\"devDependencies\": {\n\t\t\"ava\": \"^2.1.0\",\n\t\t\"chalk\": \"^2.4.2\",\n\t\t\"coveralls\": \"^3.0.3\",\n\t\t\"has-ansi\": \"^3.0.0\",\n\t\t\"nyc\": \"^14.1.1\",\n\t\t\"xo\": \"^0.24.0\"\n\t}\n}\n",
|
|
11716
|
-
"node_modules/@nestia/migrate/package.json": "{\n \"name\": \"@nestia/migrate\",\n \"version\": \"7.0.3\",\n \"description\": \"Migration program from swagger to NestJS\",\n \"typings\": \"lib/index.d.ts\",\n \"main\": \"lib/index.js\",\n \"module\": \"lib/index.mjs\",\n \"bin\": {\n \"@nestia/migrate\": \"lib/executable/migrate.js\"\n },\n \"scripts\": {\n \"build\": \"rimraf lib && tsc && rollup -c\",\n \"bundle\": \"node src/executable/bundle.js\",\n \"dev\": \"rimraf lib && tsc --watch\",\n \"package:next\": \"npm publish --access public --tag next\",\n \"prepare\": \"ts-patch install && typia patch && npm run bundle\",\n \"test\": \"node lib/test\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/nestia\"\n },\n \"keywords\": [\n \"migration\",\n \"swagger\",\n \"openapi generator\",\n \"NestJS\",\n \"nestia\",\n \"SDK\",\n \"RPC\",\n \"Mockup Simulator\"\n ],\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/nestia/issues\"\n },\n \"homepage\": \"https://nestia.io\",\n \"devDependencies\": {\n \"@nestia/benchmark\": \"^7.0.3\",\n \"@nestia/core\": \"^7.0.3\",\n \"@nestia/e2e\": \"^7.0.3\",\n \"@nestia/fetcher\": \"^7.0.3\",\n \"@nestia/sdk\": \"^7.0.3\",\n \"@nestjs/common\": \"^11.0.13\",\n \"@nestjs/core\": \"^11.0.13\",\n \"@nestjs/platform-express\": \"^11.0.13\",\n \"@nestjs/platform-fastify\": \"^11.0.13\",\n \"@rollup/plugin-terser\": \"^0.4.4\",\n \"@rollup/plugin-typescript\": \"^12.1.1\",\n \"@trivago/prettier-plugin-sort-imports\": \"^4.3.0\",\n \"@types/cli-progress\": \"^3.11.5\",\n \"@types/express\": \"^4.17.21\",\n \"@types/inquirer\": \"^9.0.7\",\n \"@types/multer\": \"^1.4.12\",\n \"@types/node\": \"^20.3.3\",\n \"@types/swagger-ui-express\": \"^4.1.6\",\n \"chalk\": \"4.1.2\",\n \"cli-progress\": \"^3.12.0\",\n \"dotenv\": \"^16.3.1\",\n \"dotenv-expand\": \"^10.0.0\",\n \"express\": \"^4.19.2\",\n \"multer\": \"^2.0.1\",\n \"rimraf\": \"^6.0.1\",\n \"rollup\": \"^4.24.3\",\n \"serialize-error\": \"^4.1.0\",\n \"source-map-support\": \"^0.5.21\",\n \"swagger-ui-express\": \"^5.0.0\",\n \"tgrid\": \"^1.1.0\",\n \"ts-node\": \"^10.9.1\",\n \"ts-patch\": \"^3.3.0\",\n \"typescript-transform-paths\": \"^3.5.2\"\n },\n \"dependencies\": {\n \"@samchon/openapi\": \"^4.3.3\",\n \"commander\": \"10.0.0\",\n \"inquirer\": \"8.2.5\",\n \"prettier\": \"^3.3.3\",\n \"prettier-plugin-jsdoc\": \"^1.3.2\",\n \"tstl\": \"^3.0.0\",\n \"typescript\": \"~5.8.3\",\n \"typia\": \"^9.3.1\"\n },\n \"files\": [\n \"lib\",\n \"src\",\n \"!lib/test\",\n \"!src/test\",\n \"package.json\",\n \"README.md\",\n \"LICENSE\"\n ]\n}",
|
|
11717
|
-
"node_modules/@nestia/migrate/node_modules/commander/package.json": "{\n \"name\": \"commander\",\n \"version\": \"10.0.0\",\n \"description\": \"the complete solution for node.js command-line programs\",\n \"keywords\": [\n \"commander\",\n \"command\",\n \"option\",\n \"parser\",\n \"cli\",\n \"argument\",\n \"args\",\n \"argv\"\n ],\n \"author\": \"TJ Holowaychuk <tj@vision-media.ca>\",\n \"license\": \"MIT\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/tj/commander.js.git\"\n },\n \"scripts\": {\n \"lint\": \"npm run lint:javascript && npm run lint:typescript\",\n \"lint:javascript\": \"eslint index.js esm.mjs \\\"lib/*.js\\\" \\\"tests/**/*.js\\\"\",\n \"lint:typescript\": \"eslint typings/*.ts tests/*.ts\",\n \"test\": \"jest && npm run test-typings\",\n \"test-esm\": \"node ./tests/esm-imports-test.mjs\",\n \"test-typings\": \"tsd\",\n \"typescript-checkJS\": \"tsc --allowJS --checkJS index.js lib/*.js --noEmit\",\n \"test-all\": \"npm run test && npm run lint && npm run typescript-checkJS && npm run test-esm\"\n },\n \"files\": [\n \"index.js\",\n \"lib/*.js\",\n \"esm.mjs\",\n \"typings/index.d.ts\",\n \"package-support.json\"\n ],\n \"type\": \"commonjs\",\n \"main\": \"./index.js\",\n \"exports\": {\n \".\": {\n \"types\": \"./typings/index.d.ts\",\n \"require\": \"./index.js\",\n \"import\": \"./esm.mjs\"\n },\n \"./esm.mjs\": \"./esm.mjs\"\n },\n \"devDependencies\": {\n \"@types/jest\": \"^29.2.4\",\n \"@types/node\": \"^18.11.18\",\n \"@typescript-eslint/eslint-plugin\": \"^5.47.1\",\n \"@typescript-eslint/parser\": \"^5.47.1\",\n \"eslint\": \"^8.30.0\",\n \"eslint-config-standard\": \"^17.0.0\",\n \"eslint-config-standard-with-typescript\": \"^24.0.0\",\n \"eslint-plugin-import\": \"^2.26.0\",\n \"eslint-plugin-jest\": \"^27.1.7\",\n \"eslint-plugin-n\": \"^15.6.0\",\n \"eslint-plugin-promise\": \"^6.1.1\",\n \"jest\": \"^29.3.1\",\n \"ts-jest\": \"^29.0.3\",\n \"tsd\": \"^0.25.0\",\n \"typescript\": \"^4.9.4\"\n },\n \"types\": \"typings/index.d.ts\",\n \"jest\": {\n \"testEnvironment\": \"node\",\n \"collectCoverage\": true,\n \"transform\": {\n \"^.+\\\\.tsx?$\": \"ts-jest\"\n },\n \"testPathIgnorePatterns\": [\n \"/node_modules/\"\n ]\n },\n \"engines\": {\n \"node\": \">=14\"\n },\n \"support\": true\n}\n",
|
|
11718
|
-
"node_modules/@nestia/migrate/node_modules/commander/typings/index.d.ts": "// Type definitions for commander\n// Original definitions by: Alan Agius <https://github.com/alan-agius4>, Marcelo Dezem <https://github.com/mdezem>, vvakame <https://github.com/vvakame>, Jules Randolph <https://github.com/sveinburne>\n\n// Using method rather than property for method-signature-style, to document method overloads separately. Allow either.\n/* eslint-disable @typescript-eslint/method-signature-style */\n/* eslint-disable @typescript-eslint/no-explicit-any */\n\nexport class CommanderError extends Error {\n code: string;\n exitCode: number;\n message: string;\n nestedError?: string;\n\n /**\n * Constructs the CommanderError class\n * @param exitCode - suggested exit code which could be used with process.exit\n * @param code - an id string representing the error\n * @param message - human-readable description of the error\n * @constructor\n */\n constructor(exitCode: number, code: string, message: string);\n}\n\nexport class InvalidArgumentError extends CommanderError {\n /**\n * Constructs the InvalidArgumentError class\n * @param message - explanation of why argument is invalid\n * @constructor\n */\n constructor(message: string);\n}\nexport { InvalidArgumentError as InvalidOptionArgumentError }; // deprecated old name\n\nexport interface ErrorOptions { // optional parameter for error()\n /** an id string representing the error */\n code?: string;\n /** suggested exit code which could be used with process.exit */\n exitCode?: number;\n}\n\nexport class Argument {\n description: string;\n required: boolean;\n variadic: boolean;\n\n /**\n * Initialize a new command argument with the given name and description.\n * The default is that the argument is required, and you can explicitly\n * indicate this with <> around the name. Put [] around the name for an optional argument.\n */\n constructor(arg: string, description?: string);\n\n /**\n * Return argument name.\n */\n name(): string;\n\n /**\n * Set the default value, and optionally supply the description to be displayed in the help.\n */\n default(value: unknown, description?: string): this;\n\n /**\n * Set the custom handler for processing CLI command arguments into argument values.\n */\n argParser<T>(fn: (value: string, previous: T) => T): this;\n\n /**\n * Only allow argument value to be one of choices.\n */\n choices(values: readonly string[]): this;\n\n /**\n * Make argument required.\n */\n argRequired(): this;\n\n /**\n * Make argument optional.\n */\n argOptional(): this;\n}\n\nexport class Option {\n flags: string;\n description: string;\n\n required: boolean; // A value must be supplied when the option is specified.\n optional: boolean; // A value is optional when the option is specified.\n variadic: boolean;\n mandatory: boolean; // The option must have a value after parsing, which usually means it must be specified on command line.\n optionFlags: string;\n short?: string;\n long?: string;\n negate: boolean;\n defaultValue?: any;\n defaultValueDescription?: string;\n parseArg?: <T>(value: string, previous: T) => T;\n hidden: boolean;\n argChoices?: string[];\n\n constructor(flags: string, description?: string);\n\n /**\n * Set the default value, and optionally supply the description to be displayed in the help.\n */\n default(value: unknown, description?: string): this;\n\n /**\n * Preset to use when option used without option-argument, especially optional but also boolean and negated.\n * The custom processing (parseArg) is called.\n *\n * @example\n * ```ts\n * new Option('--color').default('GREYSCALE').preset('RGB');\n * new Option('--donate [amount]').preset('20').argParser(parseFloat);\n * ```\n */\n preset(arg: unknown): this;\n\n /**\n * Add option name(s) that conflict with this option.\n * An error will be displayed if conflicting options are found during parsing.\n *\n * @example\n * ```ts\n * new Option('--rgb').conflicts('cmyk');\n * new Option('--js').conflicts(['ts', 'jsx']);\n * ```\n */\n conflicts(names: string | string[]): this;\n\n /**\n * Specify implied option values for when this option is set and the implied options are not.\n *\n * The custom processing (parseArg) is not called on the implied values.\n *\n * @example\n * program\n * .addOption(new Option('--log', 'write logging information to file'))\n * .addOption(new Option('--trace', 'log extra details').implies({ log: 'trace.txt' }));\n */\n implies(optionValues: OptionValues): this;\n\n /**\n * Set environment variable to check for option value.\n *\n * An environment variables is only used if when processed the current option value is\n * undefined, or the source of the current value is 'default' or 'config' or 'env'.\n */\n env(name: string): this;\n\n /**\n * Calculate the full description, including defaultValue etc.\n */\n fullDescription(): string;\n\n /**\n * Set the custom handler for processing CLI option arguments into option values.\n */\n argParser<T>(fn: (value: string, previous: T) => T): this;\n\n /**\n * Whether the option is mandatory and must have a value after parsing.\n */\n makeOptionMandatory(mandatory?: boolean): this;\n\n /**\n * Hide option in help.\n */\n hideHelp(hide?: boolean): this;\n\n /**\n * Only allow option value to be one of choices.\n */\n choices(values: readonly string[]): this;\n\n /**\n * Return option name.\n */\n name(): string;\n\n /**\n * Return option name, in a camelcase format that can be used\n * as a object attribute key.\n */\n attributeName(): string;\n\n /**\n * Return whether a boolean option.\n *\n * Options are one of boolean, negated, required argument, or optional argument.\n */\n isBoolean(): boolean;\n}\n\nexport class Help {\n /** output helpWidth, long lines are wrapped to fit */\n helpWidth?: number;\n sortSubcommands: boolean;\n sortOptions: boolean;\n showGlobalOptions: boolean;\n\n constructor();\n\n /** Get the command term to show in the list of subcommands. */\n subcommandTerm(cmd: Command): string;\n /** Get the command summary to show in the list of subcommands. */\n subcommandDescription(cmd: Command): string;\n /** Get the option term to show in the list of options. */\n optionTerm(option: Option): string;\n /** Get the option description to show in the list of options. */\n optionDescription(option: Option): string;\n /** Get the argument term to show in the list of arguments. */\n argumentTerm(argument: Argument): string;\n /** Get the argument description to show in the list of arguments. */\n argumentDescription(argument: Argument): string;\n\n /** Get the command usage to be displayed at the top of the built-in help. */\n commandUsage(cmd: Command): string;\n /** Get the description for the command. */\n commandDescription(cmd: Command): string;\n\n /** Get an array of the visible subcommands. Includes a placeholder for the implicit help command, if there is one. */\n visibleCommands(cmd: Command): Command[];\n /** Get an array of the visible options. Includes a placeholder for the implicit help option, if there is one. */\n visibleOptions(cmd: Command): Option[];\n /** Get an array of the visible global options. (Not including help.) */\n visibleGlobalOptions(cmd: Command): Option[];\n /** Get an array of the arguments which have descriptions. */\n visibleArguments(cmd: Command): Argument[];\n\n /** Get the longest command term length. */\n longestSubcommandTermLength(cmd: Command, helper: Help): number;\n /** Get the longest option term length. */\n longestOptionTermLength(cmd: Command, helper: Help): number;\n /** Get the longest global option term length. */\n longestGlobalOptionTermLength(cmd: Command, helper: Help): number;\n /** Get the longest argument term length. */\n longestArgumentTermLength(cmd: Command, helper: Help): number;\n /** Calculate the pad width from the maximum term length. */\n padWidth(cmd: Command, helper: Help): number;\n\n /**\n * Wrap the given string to width characters per line, with lines after the first indented.\n * Do not wrap if insufficient room for wrapping (minColumnWidth), or string is manually formatted.\n */\n wrap(str: string, width: number, indent: number, minColumnWidth?: number): string;\n\n /** Generate the built-in help text. */\n formatHelp(cmd: Command, helper: Help): string;\n}\nexport type HelpConfiguration = Partial<Help>;\n\nexport interface ParseOptions {\n from: 'node' | 'electron' | 'user';\n}\nexport interface HelpContext { // optional parameter for .help() and .outputHelp()\n error: boolean;\n}\nexport interface AddHelpTextContext { // passed to text function used with .addHelpText()\n error: boolean;\n command: Command;\n}\nexport interface OutputConfiguration {\n writeOut?(str: string): void;\n writeErr?(str: string): void;\n getOutHelpWidth?(): number;\n getErrHelpWidth?(): number;\n outputError?(str: string, write: (str: string) => void): void;\n\n}\n\nexport type AddHelpTextPosition = 'beforeAll' | 'before' | 'after' | 'afterAll';\nexport type HookEvent = 'preSubcommand' | 'preAction' | 'postAction';\nexport type OptionValueSource = 'default' | 'config' | 'env' | 'cli' | 'implied';\n\nexport type OptionValues = Record<string, any>;\n\nexport class Command {\n args: string[];\n processedArgs: any[];\n readonly commands: readonly Command[];\n readonly options: readonly Option[];\n parent: Command | null;\n\n constructor(name?: string);\n\n /**\n * Set the program version to `str`.\n *\n * This method auto-registers the \"-V, --version\" flag\n * which will print the version number when passed.\n *\n * You can optionally supply the flags and description to override the defaults.\n */\n version(str: string, flags?: string, description?: string): this;\n\n /**\n * Define a command, implemented using an action handler.\n *\n * @remarks\n * The command description is supplied using `.description`, not as a parameter to `.command`.\n *\n * @example\n * ```ts\n * program\n * .command('clone <source> [destination]')\n * .description('clone a repository into a newly created directory')\n * .action((source, destination) => {\n * console.log('clone command called');\n * });\n * ```\n *\n * @param nameAndArgs - command name and arguments, args are `<required>` or `[optional]` and last may also be `variadic...`\n * @param opts - configuration options\n * @returns new command\n */\n command(nameAndArgs: string, opts?: CommandOptions): ReturnType<this['createCommand']>;\n /**\n * Define a command, implemented in a separate executable file.\n *\n * @remarks\n * The command description is supplied as the second parameter to `.command`.\n *\n * @example\n * ```ts\n * program\n * .command('start <service>', 'start named service')\n * .command('stop [service]', 'stop named service, or all if no name supplied');\n * ```\n *\n * @param nameAndArgs - command name and arguments, args are `<required>` or `[optional]` and last may also be `variadic...`\n * @param description - description of executable command\n * @param opts - configuration options\n * @returns `this` command for chaining\n */\n command(nameAndArgs: string, description: string, opts?: ExecutableCommandOptions): this;\n\n /**\n * Factory routine to create a new unattached command.\n *\n * See .command() for creating an attached subcommand, which uses this routine to\n * create the command. You can override createCommand to customise subcommands.\n */\n createCommand(name?: string): Command;\n\n /**\n * Add a prepared subcommand.\n *\n * See .command() for creating an attached subcommand which inherits settings from its parent.\n *\n * @returns `this` command for chaining\n */\n addCommand(cmd: Command, opts?: CommandOptions): this;\n\n /**\n * Factory routine to create a new unattached argument.\n *\n * See .argument() for creating an attached argument, which uses this routine to\n * create the argument. You can override createArgument to return a custom argument.\n */\n createArgument(name: string, description?: string): Argument;\n\n /**\n * Define argument syntax for command.\n *\n * The default is that the argument is required, and you can explicitly\n * indicate this with <> around the name. Put [] around the name for an optional argument.\n *\n * @example\n * ```\n * program.argument('<input-file>');\n * program.argument('[output-file]');\n * ```\n *\n * @returns `this` command for chaining\n */\n argument<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n argument(name: string, description?: string, defaultValue?: unknown): this;\n\n /**\n * Define argument syntax for command, adding a prepared argument.\n *\n * @returns `this` command for chaining\n */\n addArgument(arg: Argument): this;\n\n /**\n * Define argument syntax for command, adding multiple at once (without descriptions).\n *\n * See also .argument().\n *\n * @example\n * ```\n * program.arguments('<cmd> [env]');\n * ```\n *\n * @returns `this` command for chaining\n */\n arguments(names: string): this;\n\n /**\n * Override default decision whether to add implicit help command.\n *\n * @example\n * ```\n * addHelpCommand() // force on\n * addHelpCommand(false); // force off\n * addHelpCommand('help [cmd]', 'display help for [cmd]'); // force on with custom details\n * ```\n *\n * @returns `this` command for chaining\n */\n addHelpCommand(enableOrNameAndArgs?: string | boolean, description?: string): this;\n\n /**\n * Add hook for life cycle event.\n */\n hook(event: HookEvent, listener: (thisCommand: Command, actionCommand: Command) => void | Promise<void>): this;\n\n /**\n * Register callback to use as replacement for calling process.exit.\n */\n exitOverride(callback?: (err: CommanderError) => never | void): this;\n\n /**\n * Display error message and exit (or call exitOverride).\n */\n error(message: string, errorOptions?: ErrorOptions): never;\n\n /**\n * You can customise the help with a subclass of Help by overriding createHelp,\n * or by overriding Help properties using configureHelp().\n */\n createHelp(): Help;\n\n /**\n * You can customise the help by overriding Help properties using configureHelp(),\n * or with a subclass of Help by overriding createHelp().\n */\n configureHelp(configuration: HelpConfiguration): this;\n /** Get configuration */\n configureHelp(): HelpConfiguration;\n\n /**\n * The default output goes to stdout and stderr. You can customise this for special\n * applications. You can also customise the display of errors by overriding outputError.\n *\n * The configuration properties are all functions:\n * ```\n * // functions to change where being written, stdout and stderr\n * writeOut(str)\n * writeErr(str)\n * // matching functions to specify width for wrapping help\n * getOutHelpWidth()\n * getErrHelpWidth()\n * // functions based on what is being written out\n * outputError(str, write) // used for displaying errors, and not used for displaying help\n * ```\n */\n configureOutput(configuration: OutputConfiguration): this;\n /** Get configuration */\n configureOutput(): OutputConfiguration;\n\n /**\n * Copy settings that are useful to have in common across root command and subcommands.\n *\n * (Used internally when adding a command using `.command()` so subcommands inherit parent settings.)\n */\n copyInheritedSettings(sourceCommand: Command): this;\n\n /**\n * Display the help or a custom message after an error occurs.\n */\n showHelpAfterError(displayHelp?: boolean | string): this;\n\n /**\n * Display suggestion of similar commands for unknown commands, or options for unknown options.\n */\n showSuggestionAfterError(displaySuggestion?: boolean): this;\n\n /**\n * Register callback `fn` for the command.\n *\n * @example\n * ```\n * program\n * .command('serve')\n * .description('start service')\n * .action(function() {\n * // do work here\n * });\n * ```\n *\n * @returns `this` command for chaining\n */\n action(fn: (...args: any[]) => void | Promise<void>): this;\n\n /**\n * Define option with `flags`, `description` and optional\n * coercion `fn`.\n *\n * The `flags` string contains the short and/or long flags,\n * separated by comma, a pipe or space. The following are all valid\n * all will output this way when `--help` is used.\n *\n * \"-p, --pepper\"\n * \"-p|--pepper\"\n * \"-p --pepper\"\n *\n * @example\n * ```\n * // simple boolean defaulting to false\n * program.option('-p, --pepper', 'add pepper');\n *\n * --pepper\n * program.pepper\n * // => Boolean\n *\n * // simple boolean defaulting to true\n * program.option('-C, --no-cheese', 'remove cheese');\n *\n * program.cheese\n * // => true\n *\n * --no-cheese\n * program.cheese\n * // => false\n *\n * // required argument\n * program.option('-C, --chdir <path>', 'change the working directory');\n *\n * --chdir /tmp\n * program.chdir\n * // => \"/tmp\"\n *\n * // optional argument\n * program.option('-c, --cheese [type]', 'add cheese [marble]');\n * ```\n *\n * @returns `this` command for chaining\n */\n option(flags: string, description?: string, defaultValue?: string | boolean | string[]): this;\n option<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n /** @deprecated since v7, instead use choices or a custom function */\n option(flags: string, description: string, regexp: RegExp, defaultValue?: string | boolean | string[]): this;\n\n /**\n * Define a required option, which must have a value after parsing. This usually means\n * the option must be specified on the command line. (Otherwise the same as .option().)\n *\n * The `flags` string contains the short and/or long flags, separated by comma, a pipe or space.\n */\n requiredOption(flags: string, description?: string, defaultValue?: string | boolean | string[]): this;\n requiredOption<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n /** @deprecated since v7, instead use choices or a custom function */\n requiredOption(flags: string, description: string, regexp: RegExp, defaultValue?: string | boolean | string[]): this;\n\n /**\n * Factory routine to create a new unattached option.\n *\n * See .option() for creating an attached option, which uses this routine to\n * create the option. You can override createOption to return a custom option.\n */\n\n createOption(flags: string, description?: string): Option;\n\n /**\n * Add a prepared Option.\n *\n * See .option() and .requiredOption() for creating and attaching an option in a single call.\n */\n addOption(option: Option): this;\n\n /**\n * Whether to store option values as properties on command object,\n * or store separately (specify false). In both cases the option values can be accessed using .opts().\n *\n * @returns `this` command for chaining\n */\n storeOptionsAsProperties<T extends OptionValues>(): this & T;\n storeOptionsAsProperties<T extends OptionValues>(storeAsProperties: true): this & T;\n storeOptionsAsProperties(storeAsProperties?: boolean): this;\n\n /**\n * Retrieve option value.\n */\n getOptionValue(key: string): any;\n\n /**\n * Store option value.\n */\n setOptionValue(key: string, value: unknown): this;\n\n /**\n * Store option value and where the value came from.\n */\n setOptionValueWithSource(key: string, value: unknown, source: OptionValueSource): this;\n\n /**\n * Get source of option value.\n */\n getOptionValueSource(key: string): OptionValueSource | undefined;\n\n /**\n * Get source of option value. See also .optsWithGlobals().\n */\n getOptionValueSourceWithGlobals(key: string): OptionValueSource | undefined;\n\n /**\n * Alter parsing of short flags with optional values.\n *\n * @example\n * ```\n * // for `.option('-f,--flag [value]'):\n * .combineFlagAndOptionalValue(true) // `-f80` is treated like `--flag=80`, this is the default behaviour\n * .combineFlagAndOptionalValue(false) // `-fb` is treated like `-f -b`\n * ```\n *\n * @returns `this` command for chaining\n */\n combineFlagAndOptionalValue(combine?: boolean): this;\n\n /**\n * Allow unknown options on the command line.\n *\n * @returns `this` command for chaining\n */\n allowUnknownOption(allowUnknown?: boolean): this;\n\n /**\n * Allow excess command-arguments on the command line. Pass false to make excess arguments an error.\n *\n * @returns `this` command for chaining\n */\n allowExcessArguments(allowExcess?: boolean): this;\n\n /**\n * Enable positional options. Positional means global options are specified before subcommands which lets\n * subcommands reuse the same option names, and also enables subcommands to turn on passThroughOptions.\n *\n * The default behaviour is non-positional and global options may appear anywhere on the command line.\n *\n * @returns `this` command for chaining\n */\n enablePositionalOptions(positional?: boolean): this;\n\n /**\n * Pass through options that come after command-arguments rather than treat them as command-options,\n * so actual command-options come before command-arguments. Turning this on for a subcommand requires\n * positional options to have been enabled on the program (parent commands).\n *\n * The default behaviour is non-positional and options may appear before or after command-arguments.\n *\n * @returns `this` command for chaining\n */\n passThroughOptions(passThrough?: boolean): this;\n\n /**\n * Parse `argv`, setting options and invoking commands when defined.\n *\n * The default expectation is that the arguments are from node and have the application as argv[0]\n * and the script being run in argv[1], with user parameters after that.\n *\n * @example\n * ```\n * program.parse(process.argv);\n * program.parse(); // implicitly use process.argv and auto-detect node vs electron conventions\n * program.parse(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]\n * ```\n *\n * @returns `this` command for chaining\n */\n parse(argv?: readonly string[], options?: ParseOptions): this;\n\n /**\n * Parse `argv`, setting options and invoking commands when defined.\n *\n * Use parseAsync instead of parse if any of your action handlers are async. Returns a Promise.\n *\n * The default expectation is that the arguments are from node and have the application as argv[0]\n * and the script being run in argv[1], with user parameters after that.\n *\n * @example\n * ```\n * program.parseAsync(process.argv);\n * program.parseAsync(); // implicitly use process.argv and auto-detect node vs electron conventions\n * program.parseAsync(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]\n * ```\n *\n * @returns Promise\n */\n parseAsync(argv?: readonly string[], options?: ParseOptions): Promise<this>;\n\n /**\n * Parse options from `argv` removing known options,\n * and return argv split into operands and unknown arguments.\n *\n * argv => operands, unknown\n * --known kkk op => [op], []\n * op --known kkk => [op], []\n * sub --unknown uuu op => [sub], [--unknown uuu op]\n * sub -- --unknown uuu op => [sub --unknown uuu op], []\n */\n parseOptions(argv: string[]): ParseOptionsResult;\n\n /**\n * Return an object containing local option values as key-value pairs\n */\n opts<T extends OptionValues>(): T;\n\n /**\n * Return an object containing merged local and global option values as key-value pairs.\n */\n optsWithGlobals<T extends OptionValues>(): T;\n\n /**\n * Set the description.\n *\n * @returns `this` command for chaining\n */\n\n description(str: string): this;\n /** @deprecated since v8, instead use .argument to add command argument with description */\n description(str: string, argsDescription: Record<string, string>): this;\n /**\n * Get the description.\n */\n description(): string;\n\n /**\n * Set the summary. Used when listed as subcommand of parent.\n *\n * @returns `this` command for chaining\n */\n\n summary(str: string): this;\n /**\n * Get the summary.\n */\n summary(): string;\n\n /**\n * Set an alias for the command.\n *\n * You may call more than once to add multiple aliases. Only the first alias is shown in the auto-generated help.\n *\n * @returns `this` command for chaining\n */\n alias(alias: string): this;\n /**\n * Get alias for the command.\n */\n alias(): string;\n\n /**\n * Set aliases for the command.\n *\n * Only the first alias is shown in the auto-generated help.\n *\n * @returns `this` command for chaining\n */\n aliases(aliases: readonly string[]): this;\n /**\n * Get aliases for the command.\n */\n aliases(): string[];\n\n /**\n * Set the command usage.\n *\n * @returns `this` command for chaining\n */\n usage(str: string): this;\n /**\n * Get the command usage.\n */\n usage(): string;\n\n /**\n * Set the name of the command.\n *\n * @returns `this` command for chaining\n */\n name(str: string): this;\n /**\n * Get the name of the command.\n */\n name(): string;\n\n /**\n * Set the name of the command from script filename, such as process.argv[1],\n * or require.main.filename, or __filename.\n *\n * (Used internally and public although not documented in README.)\n *\n * @example\n * ```ts\n * program.nameFromFilename(require.main.filename);\n * ```\n *\n * @returns `this` command for chaining\n */\n nameFromFilename(filename: string): this;\n\n /**\n * Set the directory for searching for executable subcommands of this command.\n *\n * @example\n * ```ts\n * program.executableDir(__dirname);\n * // or\n * program.executableDir('subcommands');\n * ```\n *\n * @returns `this` command for chaining\n */\n executableDir(path: string): this;\n /**\n * Get the executable search directory.\n */\n executableDir(): string;\n\n /**\n * Output help information for this command.\n *\n * Outputs built-in help, and custom text added using `.addHelpText()`.\n *\n */\n outputHelp(context?: HelpContext): void;\n /** @deprecated since v7 */\n outputHelp(cb?: (str: string) => string): void;\n\n /**\n * Return command help documentation.\n */\n helpInformation(context?: HelpContext): string;\n\n /**\n * You can pass in flags and a description to override the help\n * flags and help description for your command. Pass in false\n * to disable the built-in help option.\n */\n helpOption(flags?: string | boolean, description?: string): this;\n\n /**\n * Output help information and exit.\n *\n * Outputs built-in help, and custom text added using `.addHelpText()`.\n */\n help(context?: HelpContext): never;\n /** @deprecated since v7 */\n help(cb?: (str: string) => string): never;\n\n /**\n * Add additional text to be displayed with the built-in help.\n *\n * Position is 'before' or 'after' to affect just this command,\n * and 'beforeAll' or 'afterAll' to affect this command and all its subcommands.\n */\n addHelpText(position: AddHelpTextPosition, text: string): this;\n addHelpText(position: AddHelpTextPosition, text: (context: AddHelpTextContext) => string): this;\n\n /**\n * Add a listener (callback) for when events occur. (Implemented using EventEmitter.)\n */\n on(event: string | symbol, listener: (...args: any[]) => void): this;\n}\n\nexport interface CommandOptions {\n hidden?: boolean;\n isDefault?: boolean;\n /** @deprecated since v7, replaced by hidden */\n noHelp?: boolean;\n}\nexport interface ExecutableCommandOptions extends CommandOptions {\n executableFile?: string;\n}\n\nexport interface ParseOptionsResult {\n operands: string[];\n unknown: string[];\n}\n\nexport function createCommand(name?: string): Command;\nexport function createOption(flags: string, description?: string): Option;\nexport function createArgument(name: string, description?: string): Argument;\n\nexport const program: Command;\n",
|
|
11719
|
-
"node_modules/@nestia/migrate/node_modules/inquirer/package.json": "{\n \"name\": \"inquirer\",\n \"version\": \"8.2.5\",\n \"description\": \"A collection of common interactive command line user interfaces.\",\n \"author\": \"Simon Boudrias <admin@simonboudrias.com>\",\n \"files\": [\n \"lib\",\n \"README.md\"\n ],\n \"main\": \"lib/inquirer.js\",\n \"keywords\": [\n \"command\",\n \"prompt\",\n \"stdin\",\n \"cli\",\n \"tty\",\n \"menu\"\n ],\n \"engines\": {\n \"node\": \">=12.0.0\"\n },\n \"devDependencies\": {\n \"chai\": \"^4.3.6\",\n \"chai-string\": \"^1.5.0\",\n \"chalk-pipe\": \"^5.1.1\",\n \"cmdify\": \"^0.0.4\",\n \"mocha\": \"^9.2.2\",\n \"mockery\": \"^2.1.0\",\n \"nyc\": \"^15.0.0\",\n \"sinon\": \"^13.0.2\",\n \"terminal-link\": \"^2.1.1\"\n },\n \"scripts\": {\n \"test\": \"nyc mocha test/**/* -r ./test/before\",\n \"posttest\": \"nyc report --reporter=text-lcov > ../../coverage/nyc-report.lcov\",\n \"prepublishOnly\": \"cp ../../README.md .\",\n \"postpublish\": \"rm -f README.md\"\n },\n \"repository\": \"SBoudrias/Inquirer.js\",\n \"license\": \"MIT\",\n \"dependencies\": {\n \"ansi-escapes\": \"^4.2.1\",\n \"chalk\": \"^4.1.1\",\n \"cli-cursor\": \"^3.1.0\",\n \"cli-width\": \"^3.0.0\",\n \"external-editor\": \"^3.0.3\",\n \"figures\": \"^3.0.0\",\n \"lodash\": \"^4.17.21\",\n \"mute-stream\": \"0.0.8\",\n \"ora\": \"^5.4.1\",\n \"run-async\": \"^2.4.0\",\n \"rxjs\": \"^7.5.5\",\n \"string-width\": \"^4.1.0\",\n \"strip-ansi\": \"^6.0.0\",\n \"through\": \"^2.3.6\",\n \"wrap-ansi\": \"^7.0.0\"\n },\n \"gitHead\": \"7a2ade6cf6a3d987f4138c0426493460f6b2515f\"\n}\n",
|
|
11720
|
-
"node_modules/@nestia/migrate/node_modules/wrap-ansi/package.json": "{\n\t\"name\": \"wrap-ansi\",\n\t\"version\": \"7.0.0\",\n\t\"description\": \"Wordwrap a string with ANSI escape codes\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"chalk/wrap-ansi\",\n\t\"funding\": \"https://github.com/chalk/wrap-ansi?sponsor=1\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"https://sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=10\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && nyc ava\"\n\t},\n\t\"files\": [\n\t\t\"index.js\"\n\t],\n\t\"keywords\": [\n\t\t\"wrap\",\n\t\t\"break\",\n\t\t\"wordwrap\",\n\t\t\"wordbreak\",\n\t\t\"linewrap\",\n\t\t\"ansi\",\n\t\t\"styles\",\n\t\t\"color\",\n\t\t\"colour\",\n\t\t\"colors\",\n\t\t\"terminal\",\n\t\t\"console\",\n\t\t\"cli\",\n\t\t\"string\",\n\t\t\"tty\",\n\t\t\"escape\",\n\t\t\"formatting\",\n\t\t\"rgb\",\n\t\t\"256\",\n\t\t\"shell\",\n\t\t\"xterm\",\n\t\t\"log\",\n\t\t\"logging\",\n\t\t\"command-line\",\n\t\t\"text\"\n\t],\n\t\"dependencies\": {\n\t\t\"ansi-styles\": \"^4.0.0\",\n\t\t\"string-width\": \"^4.1.0\",\n\t\t\"strip-ansi\": \"^6.0.0\"\n\t},\n\t\"devDependencies\": {\n\t\t\"ava\": \"^2.1.0\",\n\t\t\"chalk\": \"^4.0.0\",\n\t\t\"coveralls\": \"^3.0.3\",\n\t\t\"has-ansi\": \"^4.0.0\",\n\t\t\"nyc\": \"^15.0.1\",\n\t\t\"xo\": \"^0.29.1\"\n\t}\n}\n",
|
|
11712
|
+
"node_modules/@nestia/migrate/package.json": "{\n \"name\": \"@nestia/migrate\",\n \"version\": \"7.1.0\",\n \"description\": \"Migration program from swagger to NestJS\",\n \"typings\": \"lib/index.d.ts\",\n \"main\": \"lib/index.js\",\n \"module\": \"lib/index.mjs\",\n \"bin\": {\n \"@nestia/migrate\": \"lib/executable/migrate.js\"\n },\n \"scripts\": {\n \"build\": \"rimraf lib && tsc && rollup -c\",\n \"bundle\": \"node src/executable/bundle.js\",\n \"dev\": \"rimraf lib && tsc --watch\",\n \"package:next\": \"npm publish --access public --tag next\",\n \"prepare\": \"ts-patch install && typia patch && npm run bundle\",\n \"test\": \"node lib/test\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/nestia\"\n },\n \"keywords\": [\n \"migration\",\n \"swagger\",\n \"openapi generator\",\n \"NestJS\",\n \"nestia\",\n \"SDK\",\n \"RPC\",\n \"Mockup Simulator\"\n ],\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/nestia/issues\"\n },\n \"homepage\": \"https://nestia.io\",\n \"devDependencies\": {\n \"@nestia/benchmark\": \"^7.1.0\",\n \"@nestia/core\": \"^7.1.0\",\n \"@nestia/e2e\": \"^7.1.0\",\n \"@nestia/fetcher\": \"^7.1.0\",\n \"@nestia/sdk\": \"^7.1.0\",\n \"@nestjs/common\": \"^11.0.13\",\n \"@nestjs/core\": \"^11.0.13\",\n \"@nestjs/platform-express\": \"^11.0.13\",\n \"@nestjs/platform-fastify\": \"^11.0.13\",\n \"@rollup/plugin-terser\": \"^0.4.4\",\n \"@rollup/plugin-typescript\": \"^12.1.1\",\n \"@trivago/prettier-plugin-sort-imports\": \"^4.3.0\",\n \"@types/cli-progress\": \"^3.11.5\",\n \"@types/express\": \"^4.17.21\",\n \"@types/inquirer\": \"^9.0.7\",\n \"@types/multer\": \"^1.4.12\",\n \"@types/node\": \"^20.3.3\",\n \"@types/swagger-ui-express\": \"^4.1.6\",\n \"chalk\": \"4.1.2\",\n \"cli-progress\": \"^3.12.0\",\n \"dotenv\": \"^16.3.1\",\n \"dotenv-expand\": \"^10.0.0\",\n \"express\": \"^4.19.2\",\n \"multer\": \"^2.0.1\",\n \"rimraf\": \"^6.0.1\",\n \"rollup\": \"^4.24.3\",\n \"serialize-error\": \"^4.1.0\",\n \"source-map-support\": \"^0.5.21\",\n \"swagger-ui-express\": \"^5.0.0\",\n \"tgrid\": \"^1.1.0\",\n \"ts-node\": \"^10.9.1\",\n \"ts-patch\": \"^3.3.0\",\n \"typescript-transform-paths\": \"^3.5.2\"\n },\n \"dependencies\": {\n \"@samchon/openapi\": \"^4.5.0\",\n \"commander\": \"10.0.0\",\n \"inquirer\": \"8.2.5\",\n \"prettier\": \"^3.3.3\",\n \"prettier-plugin-jsdoc\": \"^1.3.2\",\n \"tstl\": \"^3.0.0\",\n \"typescript\": \"~5.8.3\",\n \"typia\": \"^9.5.0\"\n },\n \"files\": [\n \"lib\",\n \"src\",\n \"!lib/test\",\n \"!src/test\",\n \"package.json\",\n \"README.md\",\n \"LICENSE\"\n ]\n}",
|
|
11721
11713
|
"node_modules/@nestia/sdk/lib/INestiaConfig.d.ts": "import type { INestApplication } from \"@nestjs/common\";\nimport type { OpenApi } from \"@samchon/openapi\";\n/**\n * Definition for the `nestia.config.ts` file.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface INestiaConfig {\n /**\n * Accessor of controller classes.\n *\n * You can specify target controller classes within two ways.\n *\n * - Asynchronous function returning `INestApplication` instance\n * - Specify the path or directory of controller class files\n */\n input: (() => Promise<INestApplication>) | INestiaConfig.IInput | string[] | string;\n /**\n * Building `swagger.json` is also possible.\n *\n * If not specified, you can't build the `swagger.json`.\n */\n swagger?: INestiaConfig.ISwaggerConfig;\n /**\n * Response directory that SDK would be placed in.\n *\n * If not configured, you can't build the SDK library.\n */\n output?: string;\n /**\n * Target directory that SDK distribution files would be placed in.\n *\n * If you configure this property and runs `npx nestia sdk` command,\n * distribution environments for the SDK library would be generated.\n *\n * After the SDK library generation, move to the `distribute` directory, and\n * runs `npm publish` command, then you can share SDK library with other\n * client (frontend) developers.\n *\n * Recommend to use `\"packages/api\"` value.\n */\n distribute?: string;\n /**\n * @default false\n */\n keyword?: boolean;\n /**\n * Allow simulation mode.\n *\n * If you configure this property to be `true`, the SDK library would be\n * contain simulation mode. In the simulation mode, the SDK library would not\n * communicate with the real backend server, but just returns random mock-up\n * data with requestion data validation.\n *\n * For reference, random mock-up data would be generated by\n * `typia.random<T>()` function.\n *\n * @default false\n */\n simulate?: boolean;\n /**\n * Target directory that e2e test functions would be placed in.\n *\n * If you configure this property and runs `npx nestia e2e` command,\n * `@nestia/sdk` will analyze your NestJS backend server code, and generates\n * e2e test functions for every API endpoints.\n *\n * If not configured, you can't run `npx nestia e2e` command.\n */\n e2e?: string;\n /**\n * Whether to use propagation mode or not.\n *\n * If being configured, interaction functions of the SDK library would perform\n * the propagation mode. The propagation mode means that never throwing\n * exception even when status code is not 200 (or 201), but just returning the\n * {@link IPropagation} typed instance, which can specify its body type through\n * discriminated union determined by status code.\n *\n * @default false\n */\n propagate?: boolean;\n /**\n * Whether to clone DTO structures or not.\n *\n * If being configured, all of DTOs used in the backend server would be cloned\n * into the `structures` directory, and the SDK library would be refer to the\n * cloned DTOs instead of the original.\n *\n * @default false\n */\n clone?: boolean;\n /**\n * Whether to wrap DTO by primitive type.\n *\n * If you don't configure this property as `false`, all of DTOs in the SDK\n * library would be automatically wrapped by {@link Primitive} type.\n *\n * For refenrece, if a DTO type be capsuled by the {@link Primitive} type, all\n * of methods in the DTO type would be automatically erased. Also, if the DTO\n * has a `toJSON()` method, the DTO type would be automatically converted to\n * return type of the `toJSON()` method.\n *\n * @default true\n */\n primitive?: boolean;\n /**\n * Whether to assert parameter types or not.\n *\n * If you configure this property to be `true`, all of the function parameters\n * of SDK library would be checked through [`typia.assert<T>()`\n * function](https://typia.io/docs/validators/assert/).\n *\n * This option would make your SDK library compilation time a little bit\n * slower, but would enahcne the type safety even in the runtime level.\n *\n * @default false\n */\n assert?: boolean;\n /**\n * Whether to optimize JSON string conversion 10x faster or not.\n *\n * If you configure this property to be `true`, the SDK library would utilize\n * the [`typia.assertStringify<T>()\n * function`](https://github.com/samchon/typia#enhanced-json) to boost up JSON\n * serialization speed and ensure type safety.\n *\n * This option would make your SDK library compilation time a little bit\n * slower, but would enhance JSON serialization speed 10x faster. Also, it can\n * ensure type safety even in the runtime level.\n *\n * @default false\n */\n json?: boolean;\n}\nexport declare namespace INestiaConfig {\n /**\n * List of files or directories to include or exclude to specifying the NestJS\n * controllers.\n */\n interface IInput {\n /** List of files or directories containing the NestJS controller classes. */\n include: string[];\n /** List of files or directories to be excluded. */\n exclude?: string[];\n }\n /** Building `swagger.json` is also possible. */\n interface ISwaggerConfig {\n /**\n * Response path of the `swagger.json`.\n *\n * If you've configured only directory, the file name would be the\n * `swagger.json`. Otherwise you've configured the full path with file name\n * and extension, the `swagger.json` file would be renamed to it.\n */\n output: string;\n /**\n * OpenAPI version.\n *\n * If you configure this property to be `2.0` or `3.0`, the newly generated\n * `swagger.json` file would follow the specified OpenAPI version. The newly\n * generated `swagger.json` file would be downgraded from the OpenAPI v3.1\n * specification by {@link OpenApi.downgrade} method.\n *\n * @default 3.1\n */\n openapi?: \"2.0\" | \"3.0\" | \"3.1\";\n /**\n * Whether to beautify JSON content or not.\n *\n * If you configure this property to be `true`, the `swagger.json` file\n * would be beautified with indentation (2 spaces) and line breaks. If you\n * configure numeric value instead, the indentation would be specified by\n * the number.\n *\n * @default false\n */\n beautify?: boolean | number;\n /**\n * Whether to include additional information or not.\n *\n * If configured to be `true`, those properties would be added into each API\n * endpoinnt.\n *\n * - `x-nestia-method`\n * - `x-nestia-namespace` ` `x-nestia-jsDocTags`\n *\n * @default false\n */\n additional?: boolean;\n /**\n * API information.\n *\n * If omitted, `package.json` content would be used instead.\n */\n info?: Partial<OpenApi.IDocument.IInfo>;\n /** List of server addresses. */\n servers?: OpenApi.IServer[];\n /**\n * Security schemes.\n *\n * When generating `swagger.json` file through `nestia`, if your controllers\n * or theirs methods have a security key which is not enrolled in here\n * property, it would be an error.\n */\n security?: Record<string, OpenApi.ISecurityScheme>;\n /**\n * List of tag names with description.\n *\n * It is possible to omit this property or skip some tag name even if the\n * tag name is used in the API routes. In that case, the tag name would be\n * used without description.\n *\n * Of course, if you've written a comment like `@tag {name} {description}`,\n * you can entirely replace this property specification.\n */\n tags?: OpenApi.IDocument.ITag[];\n /**\n * Decompose query DTO.\n *\n * If you configure this property to be `true`, the query DTO would be\n * decomposed into individual query parameters per each property. Otherwise\n * you set it to be `false`, the query DTO would be one object type which\n * contains all of query parameters.\n *\n * @default true\n */\n decompose?: boolean;\n /**\n * Operation ID generator.\n *\n * @param props Properties of the API endpoint.\n * @returns Operation ID.\n */\n operationId?(props: {\n class: string;\n function: string;\n method: \"HEAD\" | \"GET\" | \"POST\" | \"PUT\" | \"PATCH\" | \"DELETE\";\n path: string;\n }): string;\n }\n}\n",
|
|
11722
11714
|
"node_modules/@nestia/sdk/lib/NestiaSdkApplication.d.ts": "import { INestiaConfig } from \"./INestiaConfig\";\nexport declare class NestiaSdkApplication {\n private readonly config;\n constructor(config: INestiaConfig);\n all(): Promise<void>;\n e2e(): Promise<void>;\n sdk(): Promise<void>;\n swagger(): Promise<void>;\n private generate;\n}\n",
|
|
11723
11715
|
"node_modules/@nestia/sdk/lib/NestiaSwaggerComposer.d.ts": "import { INestApplication } from \"@nestjs/common\";\nimport { OpenApi, OpenApiV3, SwaggerV2 } from \"@samchon/openapi\";\nimport { INestiaConfig } from \"./INestiaConfig\";\nexport declare namespace NestiaSwaggerComposer {\n const document: (app: INestApplication, config: Omit<INestiaConfig.ISwaggerConfig, \"output\">) => Promise<OpenApi.IDocument | OpenApiV3.IDocument | SwaggerV2.IDocument>;\n}\n",
|
|
@@ -11815,7 +11807,7 @@
|
|
|
11815
11807
|
"node_modules/@nestia/sdk/lib/validators/HttpQueryValidator.d.ts": "import { MetadataFactory } from \"typia/lib/factories/MetadataFactory\";\nimport { Metadata } from \"typia/lib/schemas/metadata/Metadata\";\nexport declare namespace HttpQueryValidator {\n const validate: (meta: Metadata, explore: MetadataFactory.IExplore) => string[];\n}\n",
|
|
11816
11808
|
"node_modules/path-to-regexp/dist/index.d.ts": "/**\n * Encode a string into another string.\n */\nexport type Encode = (value: string) => string;\n/**\n * Decode a string into another string.\n */\nexport type Decode = (value: string) => string;\nexport interface ParseOptions {\n /**\n * A function for encoding input strings.\n */\n encodePath?: Encode;\n}\nexport interface PathToRegexpOptions {\n /**\n * Matches the path completely without trailing characters. (default: `true`)\n */\n end?: boolean;\n /**\n * Allows optional trailing delimiter to match. (default: `true`)\n */\n trailing?: boolean;\n /**\n * Match will be case sensitive. (default: `false`)\n */\n sensitive?: boolean;\n /**\n * The default delimiter for segments. (default: `'/'`)\n */\n delimiter?: string;\n}\nexport interface MatchOptions extends PathToRegexpOptions {\n /**\n * Function for decoding strings for params, or `false` to disable entirely. (default: `decodeURIComponent`)\n */\n decode?: Decode | false;\n}\nexport interface CompileOptions {\n /**\n * Function for encoding input strings for output into the path, or `false` to disable entirely. (default: `encodeURIComponent`)\n */\n encode?: Encode | false;\n /**\n * The default delimiter for segments. (default: `'/'`)\n */\n delimiter?: string;\n}\n/**\n * Plain text.\n */\nexport interface Text {\n type: \"text\";\n value: string;\n}\n/**\n * A parameter designed to match arbitrary text within a segment.\n */\nexport interface Parameter {\n type: \"param\";\n name: string;\n}\n/**\n * A wildcard parameter designed to match multiple segments.\n */\nexport interface Wildcard {\n type: \"wildcard\";\n name: string;\n}\n/**\n * A set of possible tokens to expand when matching.\n */\nexport interface Group {\n type: \"group\";\n tokens: Token[];\n}\n/**\n * A token that corresponds with a regexp capture.\n */\nexport type Key = Parameter | Wildcard;\n/**\n * A sequence of `path-to-regexp` keys that match capturing groups.\n */\nexport type Keys = Array<Key>;\n/**\n * A sequence of path match characters.\n */\nexport type Token = Text | Parameter | Wildcard | Group;\n/**\n * Tokenized path instance.\n */\nexport declare class TokenData {\n readonly tokens: Token[];\n constructor(tokens: Token[]);\n}\n/**\n * Parse a string for the raw tokens.\n */\nexport declare function parse(str: string, options?: ParseOptions): TokenData;\n/**\n * Compile a string to a template function for the path.\n */\nexport declare function compile<P extends ParamData = ParamData>(path: Path, options?: CompileOptions & ParseOptions): (data?: P) => string;\nexport type ParamData = Partial<Record<string, string | string[]>>;\nexport type PathFunction<P extends ParamData> = (data?: P) => string;\n/**\n * A match result contains data about the path match.\n */\nexport interface MatchResult<P extends ParamData> {\n path: string;\n params: P;\n}\n/**\n * A match is either `false` (no match) or a match result.\n */\nexport type Match<P extends ParamData> = false | MatchResult<P>;\n/**\n * The match function takes a string and returns whether it matched the path.\n */\nexport type MatchFunction<P extends ParamData> = (path: string) => Match<P>;\n/**\n * Supported path types.\n */\nexport type Path = string | TokenData;\n/**\n * Transform a path into a match function.\n */\nexport declare function match<P extends ParamData>(path: Path | Path[], options?: MatchOptions & ParseOptions): MatchFunction<P>;\nexport declare function pathToRegexp(path: Path | Path[], options?: PathToRegexpOptions & ParseOptions): {\n regexp: RegExp;\n keys: Keys;\n};\n/**\n * Stringify token data into a path string.\n */\nexport declare function stringify(data: TokenData): string;\n",
|
|
11817
11809
|
"node_modules/path-to-regexp/package.json": "{\n \"name\": \"path-to-regexp\",\n \"version\": \"8.2.0\",\n \"description\": \"Express style path to RegExp utility\",\n \"keywords\": [\n \"express\",\n \"regexp\",\n \"route\",\n \"routing\"\n ],\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/pillarjs/path-to-regexp.git\"\n },\n \"license\": \"MIT\",\n \"exports\": \"./dist/index.js\",\n \"main\": \"dist/index.js\",\n \"typings\": \"dist/index.d.ts\",\n \"files\": [\n \"dist/\"\n ],\n \"scripts\": {\n \"bench\": \"vitest bench\",\n \"build\": \"ts-scripts build\",\n \"format\": \"ts-scripts format\",\n \"lint\": \"ts-scripts lint\",\n \"prepare\": \"ts-scripts install && npm run build\",\n \"size\": \"size-limit\",\n \"specs\": \"ts-scripts specs\",\n \"test\": \"ts-scripts test && npm run size\"\n },\n \"devDependencies\": {\n \"@borderless/ts-scripts\": \"^0.15.0\",\n \"@size-limit/preset-small-lib\": \"^11.1.2\",\n \"@types/node\": \"^22.7.2\",\n \"@types/semver\": \"^7.3.1\",\n \"@vitest/coverage-v8\": \"^2.1.1\",\n \"recheck\": \"^4.4.5\",\n \"size-limit\": \"^11.1.2\",\n \"typescript\": \"^5.5.3\"\n },\n \"engines\": {\n \"node\": \">=16\"\n },\n \"publishConfig\": {\n \"access\": \"public\"\n },\n \"size-limit\": [\n {\n \"path\": \"dist/index.js\",\n \"limit\": \"2.2 kB\"\n }\n ],\n \"ts-scripts\": {\n \"dist\": [\n \"dist\"\n ],\n \"project\": [\n \"tsconfig.build.json\"\n ]\n }\n}\n",
|
|
11818
|
-
"node_modules/@nestia/sdk/package.json": "{\n \"name\": \"@nestia/sdk\",\n \"version\": \"7.0
|
|
11810
|
+
"node_modules/@nestia/sdk/package.json": "{\n \"name\": \"@nestia/sdk\",\n \"version\": \"7.1.0\",\n \"description\": \"Nestia SDK and Swagger generator\",\n \"main\": \"lib/index.js\",\n \"typings\": \"lib/index.d.ts\",\n \"bin\": {\n \"@nestia/sdk\": \"lib/executable/sdk.js\"\n },\n \"scripts\": {\n \"build\": \"rimraf lib && tsc\",\n \"dev\": \"tsc -p tsconfig.test.json --watch\",\n \"eslint\": \"eslint ./**/*.ts\",\n \"prepare\": \"ts-patch install && typia patch\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/nestia\"\n },\n \"keywords\": [\n \"nestia\",\n \"sdk\",\n \"swagger\",\n \"generator\",\n \"nestjs\",\n \"typia\"\n ],\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/nestia/issues\"\n },\n \"homepage\": \"https://nestia.io\",\n \"dependencies\": {\n \"@nestia/core\": \"^7.1.0\",\n \"@nestia/fetcher\": \"^7.1.0\",\n \"@samchon/openapi\": \"^4.5.0\",\n \"cli\": \"^1.0.1\",\n \"get-function-location\": \"^2.0.0\",\n \"glob\": \"^7.2.0\",\n \"path-to-regexp\": \"^6.2.1\",\n \"prettier\": \"^3.2.5\",\n \"ts-node\": \">=10.6.0\",\n \"tsconfck\": \"^2.1.2\",\n \"tsconfig-paths\": \"^4.1.1\",\n \"tstl\": \"^3.0.0\",\n \"typia\": \"^9.5.0\"\n },\n \"peerDependencies\": {\n \"@nestia/core\": \">=7.1.0\"\n },\n \"devDependencies\": {\n \"@nestjs/common\": \"^11.0.13\",\n \"@nestjs/core\": \"^11.0.13\",\n \"@trivago/prettier-plugin-sort-imports\": \"^4.3.0\",\n \"@types/cli\": \"^0.11.21\",\n \"@types/express\": \"^4.17.15\",\n \"@types/glob\": \"^7.2.0\",\n \"@types/node\": \"^18.11.15\",\n \"@types/ts-expose-internals\": \"npm:ts-expose-internals@5.4.5\",\n \"@typescript-eslint/eslint-plugin\": \"^5.46.1\",\n \"@typescript-eslint/parser\": \"^5.46.1\",\n \"eslint\": \"^8.29.0\",\n \"eslint-plugin-deprecation\": \"^1.4.1\",\n \"rimraf\": \"^6.0.1\",\n \"tgrid\": \"^1.1.0\",\n \"ts-patch\": \"^3.3.0\",\n \"typescript\": \"~5.8.3\",\n \"typescript-transform-paths\": \"^3.4.4\"\n },\n \"files\": [\n \"assets\",\n \"lib\",\n \"src\",\n \"README.md\",\n \"LICENSE\",\n \"package.json\"\n ]\n}",
|
|
11819
11811
|
"node_modules/@nestia/sdk/src/typings/get-function-location.d.ts": "declare module \"get-function-location\" {\n export default function (func: any): Promise<{\n source: string;\n line: number;\n column: number;\n }>;\n}\n",
|
|
11820
11812
|
"node_modules/@nestia/sdk/node_modules/path-to-regexp/dist/index.d.ts": "export interface ParseOptions {\n /**\n * Set the default delimiter for repeat parameters. (default: `'/'`)\n */\n delimiter?: string;\n /**\n * List of characters to automatically consider prefixes when parsing.\n */\n prefixes?: string;\n}\n/**\n * Parse a string for the raw tokens.\n */\nexport declare function parse(str: string, options?: ParseOptions): Token[];\nexport interface TokensToFunctionOptions {\n /**\n * When `true` the regexp will be case sensitive. (default: `false`)\n */\n sensitive?: boolean;\n /**\n * Function for encoding input strings for output.\n */\n encode?: (value: string, token: Key) => string;\n /**\n * When `false` the function can produce an invalid (unmatched) path. (default: `true`)\n */\n validate?: boolean;\n}\n/**\n * Compile a string to a template function for the path.\n */\nexport declare function compile<P extends object = object>(str: string, options?: ParseOptions & TokensToFunctionOptions): PathFunction<P>;\nexport type PathFunction<P extends object = object> = (data?: P) => string;\n/**\n * Expose a method for transforming tokens into the path function.\n */\nexport declare function tokensToFunction<P extends object = object>(tokens: Token[], options?: TokensToFunctionOptions): PathFunction<P>;\nexport interface RegexpToFunctionOptions {\n /**\n * Function for decoding strings for params.\n */\n decode?: (value: string, token: Key) => string;\n}\n/**\n * A match result contains data about the path match.\n */\nexport interface MatchResult<P extends object = object> {\n path: string;\n index: number;\n params: P;\n}\n/**\n * A match is either `false` (no match) or a match result.\n */\nexport type Match<P extends object = object> = false | MatchResult<P>;\n/**\n * The match function takes a string and returns whether it matched the path.\n */\nexport type MatchFunction<P extends object = object> = (path: string) => Match<P>;\n/**\n * Create path match function from `path-to-regexp` spec.\n */\nexport declare function match<P extends object = object>(str: Path, options?: ParseOptions & TokensToRegexpOptions & RegexpToFunctionOptions): MatchFunction<P>;\n/**\n * Create a path match function from `path-to-regexp` output.\n */\nexport declare function regexpToFunction<P extends object = object>(re: RegExp, keys: Key[], options?: RegexpToFunctionOptions): MatchFunction<P>;\n/**\n * Metadata about a key.\n */\nexport interface Key {\n name: string | number;\n prefix: string;\n suffix: string;\n pattern: string;\n modifier: string;\n}\n/**\n * A token is a string (nothing special) or key metadata (capture group).\n */\nexport type Token = string | Key;\nexport interface TokensToRegexpOptions {\n /**\n * When `true` the regexp will be case sensitive. (default: `false`)\n */\n sensitive?: boolean;\n /**\n * When `true` the regexp won't allow an optional trailing delimiter to match. (default: `false`)\n */\n strict?: boolean;\n /**\n * When `true` the regexp will match to the end of the string. (default: `true`)\n */\n end?: boolean;\n /**\n * When `true` the regexp will match from the beginning of the string. (default: `true`)\n */\n start?: boolean;\n /**\n * Sets the final character for non-ending optimistic matches. (default: `/`)\n */\n delimiter?: string;\n /**\n * List of characters that can also be \"end\" characters.\n */\n endsWith?: string;\n /**\n * Encode path tokens for use in the `RegExp`.\n */\n encode?: (value: string) => string;\n}\n/**\n * Expose a function for taking tokens and returning a RegExp.\n */\nexport declare function tokensToRegexp(tokens: Token[], keys?: Key[], options?: TokensToRegexpOptions): RegExp;\n/**\n * Supported `path-to-regexp` input types.\n */\nexport type Path = string | RegExp | Array<string | RegExp>;\n/**\n * Normalize the given path string, returning a regular expression.\n *\n * An empty array can be passed in for the keys, which will hold the\n * placeholder key descriptions. For example, using `/user/:id`, `keys` will\n * contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.\n */\nexport declare function pathToRegexp(path: Path, keys?: Key[], options?: TokensToRegexpOptions & ParseOptions): RegExp;\n",
|
|
11821
11813
|
"node_modules/@nestia/sdk/node_modules/path-to-regexp/package.json": "{\n \"name\": \"path-to-regexp\",\n \"version\": \"6.3.0\",\n \"description\": \"Express style path to RegExp utility\",\n \"keywords\": [\n \"express\",\n \"regexp\",\n \"route\",\n \"routing\"\n ],\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/pillarjs/path-to-regexp.git\"\n },\n \"license\": \"MIT\",\n \"sideEffects\": false,\n \"main\": \"dist/index.js\",\n \"module\": \"dist.es2015/index.js\",\n \"typings\": \"dist/index.d.ts\",\n \"files\": [\n \"dist.es2015/\",\n \"dist/\"\n ],\n \"scripts\": {\n \"build\": \"ts-scripts build\",\n \"format\": \"ts-scripts format\",\n \"lint\": \"ts-scripts lint\",\n \"prepare\": \"ts-scripts install && npm run build\",\n \"size\": \"size-limit\",\n \"specs\": \"ts-scripts specs\",\n \"test\": \"ts-scripts test && npm run size\"\n },\n \"devDependencies\": {\n \"@borderless/ts-scripts\": \"^0.15.0\",\n \"@size-limit/preset-small-lib\": \"^11.1.2\",\n \"@types/node\": \"^20.4.9\",\n \"@types/semver\": \"^7.3.1\",\n \"@vitest/coverage-v8\": \"^1.4.0\",\n \"recheck\": \"^4.4.5\",\n \"semver\": \"^7.3.5\",\n \"size-limit\": \"^11.1.2\",\n \"typescript\": \"^5.1.6\"\n },\n \"publishConfig\": {\n \"access\": \"public\"\n },\n \"size-limit\": [\n {\n \"path\": \"dist.es2015/index.js\",\n \"limit\": \"2.1 kB\"\n }\n ],\n \"ts-scripts\": {\n \"dist\": [\n \"dist\",\n \"dist.es2015\"\n ],\n \"project\": [\n \"tsconfig.build.json\",\n \"tsconfig.es2015.json\"\n ]\n }\n}\n",
|
|
@@ -12556,7 +12548,7 @@
|
|
|
12556
12548
|
"node_modules/@samchon/openapi/lib/utils/internal/OpenApiStringValidator.d.ts": "import { OpenApi } from \"../../OpenApi\";\nimport { IOpenApiValidatorContext } from \"./IOpenApiValidatorContext\";\nexport declare namespace OpenApiStringValidator {\n const validate: (ctx: IOpenApiValidatorContext<OpenApi.IJsonSchema.IString>) => boolean;\n}\n",
|
|
12557
12549
|
"node_modules/@samchon/openapi/lib/utils/internal/OpenApiTupleValidator.d.ts": "import { OpenApi } from \"../../OpenApi\";\nimport { IOpenApiValidatorContext } from \"./IOpenApiValidatorContext\";\nexport declare namespace OpenApiTupleValidator {\n const validate: (ctx: IOpenApiValidatorContext<OpenApi.IJsonSchema.ITuple>) => boolean;\n}\n",
|
|
12558
12550
|
"node_modules/@samchon/openapi/lib/utils/internal/OpenApiTypeCheckerBase.d.ts": "export {};\n",
|
|
12559
|
-
"node_modules/@samchon/openapi/package.json": "{\n \"name\": \"@samchon/openapi\",\n \"version\": \"4.
|
|
12551
|
+
"node_modules/@samchon/openapi/package.json": "{\n \"name\": \"@samchon/openapi\",\n \"version\": \"4.5.0\",\n \"description\": \"OpenAPI definitions and converters for 'typia' and 'nestia'.\",\n \"main\": \"./lib/index.js\",\n \"module\": \"./lib/index.mjs\",\n \"typings\": \"./lib/index.d.ts\",\n \"scripts\": {\n \"prepare\": \"ts-patch install\",\n \"build\": \"rimraf lib && tsc && rollup -c && ts-node build/post.ts\",\n \"dev\": \"rimraf lib && tsc --watch\",\n \"typedoc\": \"typedoc --plugin typedoc-github-theme --theme typedoc-github-theme\"\n },\n \"keywords\": [\n \"swagger\",\n \"openapi\",\n \"openapi-generator\",\n \"openapi-validator\",\n \"converter\",\n \"migrate\",\n \"typia\",\n \"nestia\",\n \"llm\",\n \"llm-function-calling\",\n \"structured-output\",\n \"openai\",\n \"chatgpt\",\n \"claude\",\n \"gemini\",\n \"llama\"\n ],\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/openapi\"\n },\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/openapi/issues\"\n },\n \"homepage\": \"https://samchon.github.io/openapi/api\",\n \"devDependencies\": {\n \"@modelcontextprotocol/sdk\": \"^1.11.4\",\n \"@rollup/plugin-terser\": \"^0.4.4\",\n \"@rollup/plugin-typescript\": \"^12.1.2\",\n \"@trivago/prettier-plugin-sort-imports\": \"^5.2.2\",\n \"@types/node\": \"^20.12.7\",\n \"gh-pages\": \"^6.3.0\",\n \"prettier\": \"^3.5.3\",\n \"prettier-plugin-jsdoc\": \"^1.3.2\",\n \"rimraf\": \"^5.0.5\",\n \"rollup\": \"^4.18.1\",\n \"rollup-plugin-auto-external\": \"^2.0.0\",\n \"tinyglobby\": \"^0.2.10\",\n \"ts-node\": \"^10.9.2\",\n \"ts-patch\": \"^3.3.0\",\n \"typedoc\": \"^0.27.6\",\n \"typedoc-github-theme\": \"^0.2.1\",\n \"typescript\": \"~5.8.3\"\n },\n \"sideEffects\": false,\n \"files\": [\n \"lib\",\n \"src\",\n \"README.md\",\n \"LICENSE\"\n ],\n \"packageManager\": \"pnpm@10.5.2\",\n \"pnpm\": {\n \"executionEnv\": {\n \"nodeVersion\": \"22.14.0\"\n },\n \"onlyBuiltDependencies\": [\n \"@nestjs/core\"\n ]\n }\n}\n",
|
|
12560
12552
|
"node_modules/@scarf/scarf/package.json": "{\n \"name\": \"@scarf/scarf\",\n \"version\": \"1.4.0\",\n \"description\": \"Scarf is like Google Analytics for your npm packages. Gain insights into how your packages are installed and used, and by which companies.\",\n \"main\": \"report.js\",\n \"homepage\": \"https://github.com/scarf-sh/scarf-js\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git+https://github.com/scarf-sh/scarf-js.git\"\n },\n \"files\": [\n \"report.js\"\n ],\n \"scripts\": {\n \"postinstall\": \"node ./report.js\",\n \"test\": \"jest --verbose\"\n },\n \"author\": \"Scarf Systems\",\n \"license\": \"Apache-2.0\",\n \"devDependencies\": {\n \"jest\": \"^25.3.0\",\n \"minimist\": \"^1.2.2\",\n \"standard\": \"^14.3.1\"\n },\n \"standard\": {\n \"globals\": [\n \"expect\",\n \"test\",\n \"jest\",\n \"beforeAll\",\n \"afterAll\",\n \"fail\",\n \"describe\"\n ]\n }\n}\n",
|
|
12561
12553
|
"node_modules/@stackblitz/sdk/package.json": "{\n \"name\": \"@stackblitz/sdk\",\n \"version\": \"1.11.0\",\n \"description\": \"SDK for generating and embedding StackBlitz projects.\",\n \"license\": \"MIT\",\n \"author\": \"Eric Simons\",\n \"homepage\": \"https://github.com/stackblitz/sdk\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/stackblitz/sdk.git\"\n },\n \"main\": \"./bundles/sdk.js\",\n \"module\": \"./bundles/sdk.m.js\",\n \"unpkg\": \"./bundles/sdk.umd.js\",\n \"jsdelivr\": \"./bundles/sdk.umd.js\",\n \"types\": \"./types/index.d.ts\",\n \"files\": [\n \"bundles\",\n \"types\",\n \"CHANGELOG.md\",\n \"LICENSE.md\",\n \"README.md\"\n ],\n \"scripts\": {\n \"build\": \"npm run build:clean && npm run build:types && npm run build:lib\",\n \"build:clean\": \"rimraf bundles temp types\",\n \"build:lib\": \"vite build --mode lib\",\n \"build:types\": \"tsc -p tsconfig.lib.json\",\n \"format\": \"prettier --write 'src/**/*.ts' 'test/**/*.ts' vite.*.ts\",\n \"prepack\": \"npm run test:unit && npm run build\",\n \"start\": \"vite dev --mode dev --open /examples/\",\n \"start:e2e\": \"vite dev --mode e2e\",\n \"test\": \"vitest run --mode test --coverage\",\n \"test:unit\": \"vitest run --mode test\",\n \"test:e2e\": \"npx playwright test\",\n \"test:format\": \"npx prettier --check .\"\n },\n \"devDependencies\": {\n \"@playwright/test\": \"^1.32.2\",\n \"@rollup/plugin-replace\": \"^5.0.2\",\n \"@types/body-parser\": \"^1.19.2\",\n \"@types/lodash\": \"^4.14.192\",\n \"@vitest/coverage-c8\": \"^0.29.8\",\n \"@vitest/ui\": \"^0.29.8\",\n \"body-parser\": \"^1.20.2\",\n \"happy-dom\": \"^9.1.0\",\n \"lodash\": \"^4.17.21\",\n \"prettier\": \"^2.8.7\",\n \"rimraf\": \"^4.4.1\",\n \"typescript\": \"~4.4.4\",\n \"vite\": \"^4.2.1\",\n \"vite-tsconfig-paths\": \"^4.0.8\",\n \"vitest\": \"^0.29.8\"\n }\n}\n",
|
|
12562
12554
|
"node_modules/@stackblitz/sdk/types/connection.d.ts": "import { VM } from './vm';\nexport declare class Connection {\n element: HTMLIFrameElement;\n id: string;\n pending: Promise<VM>;\n vm?: VM;\n constructor(element: HTMLIFrameElement);\n}\nexport declare const getConnection: (identifier: string | HTMLIFrameElement) => Connection | null;\n",
|
|
@@ -12922,6 +12914,8 @@
|
|
|
12922
12914
|
"node_modules/clsx/package.json": "{\n \"name\": \"clsx\",\n \"version\": \"2.1.1\",\n \"repository\": \"lukeed/clsx\",\n \"description\": \"A tiny (239B) utility for constructing className strings conditionally.\",\n \"module\": \"dist/clsx.mjs\",\n \"unpkg\": \"dist/clsx.min.js\",\n \"main\": \"dist/clsx.js\",\n \"types\": \"clsx.d.ts\",\n \"license\": \"MIT\",\n \"exports\": {\n \".\": {\n \"import\": {\n \"types\": \"./clsx.d.mts\",\n \"default\": \"./dist/clsx.mjs\"\n },\n \"default\": {\n \"types\": \"./clsx.d.ts\",\n \"default\": \"./dist/clsx.js\"\n }\n },\n \"./lite\": {\n \"import\": {\n \"types\": \"./clsx.d.mts\",\n \"default\": \"./dist/lite.mjs\"\n },\n \"default\": {\n \"types\": \"./clsx.d.ts\",\n \"default\": \"./dist/lite.js\"\n }\n }\n },\n \"author\": {\n \"name\": \"Luke Edwards\",\n \"email\": \"luke.edwards05@gmail.com\",\n \"url\": \"https://lukeed.com\"\n },\n \"engines\": {\n \"node\": \">=6\"\n },\n \"scripts\": {\n \"build\": \"node bin\",\n \"test\": \"uvu -r esm test\"\n },\n \"files\": [\n \"*.d.mts\",\n \"*.d.ts\",\n \"dist\"\n ],\n \"keywords\": [\n \"classes\",\n \"classname\",\n \"classnames\"\n ],\n \"devDependencies\": {\n \"esm\": \"3.2.25\",\n \"terser\": \"4.8.0\",\n \"uvu\": \"0.5.4\"\n }\n}\n",
|
|
12923
12915
|
"node_modules/color-convert/package.json": "{\n \"name\": \"color-convert\",\n \"description\": \"Plain color conversion functions\",\n \"version\": \"2.0.1\",\n \"author\": \"Heather Arthur <fayearthur@gmail.com>\",\n \"license\": \"MIT\",\n \"repository\": \"Qix-/color-convert\",\n \"scripts\": {\n \"pretest\": \"xo\",\n \"test\": \"node test/basic.js\"\n },\n \"engines\": {\n \"node\": \">=7.0.0\"\n },\n \"keywords\": [\n \"color\",\n \"colour\",\n \"convert\",\n \"converter\",\n \"conversion\",\n \"rgb\",\n \"hsl\",\n \"hsv\",\n \"hwb\",\n \"cmyk\",\n \"ansi\",\n \"ansi16\"\n ],\n \"files\": [\n \"index.js\",\n \"conversions.js\",\n \"route.js\"\n ],\n \"xo\": {\n \"rules\": {\n \"default-case\": 0,\n \"no-inline-comments\": 0,\n \"operator-linebreak\": 0\n }\n },\n \"devDependencies\": {\n \"chalk\": \"^2.4.2\",\n \"xo\": \"^0.24.0\"\n },\n \"dependencies\": {\n \"color-name\": \"~1.1.4\"\n }\n}\n",
|
|
12924
12916
|
"node_modules/color-name/package.json": "{\r\n \"name\": \"color-name\",\r\n \"version\": \"1.1.4\",\r\n \"description\": \"A list of color names and its values\",\r\n \"main\": \"index.js\",\r\n \"files\": [\r\n \"index.js\"\r\n ],\r\n \"scripts\": {\r\n \"test\": \"node test.js\"\r\n },\r\n \"repository\": {\r\n \"type\": \"git\",\r\n \"url\": \"git@github.com:colorjs/color-name.git\"\r\n },\r\n \"keywords\": [\r\n \"color-name\",\r\n \"color\",\r\n \"color-keyword\",\r\n \"keyword\"\r\n ],\r\n \"author\": \"DY <dfcreative@gmail.com>\",\r\n \"license\": \"MIT\",\r\n \"bugs\": {\r\n \"url\": \"https://github.com/colorjs/color-name/issues\"\r\n },\r\n \"homepage\": \"https://github.com/colorjs/color-name\"\r\n}\r\n",
|
|
12917
|
+
"node_modules/commander/package.json": "{\n \"name\": \"commander\",\n \"version\": \"10.0.0\",\n \"description\": \"the complete solution for node.js command-line programs\",\n \"keywords\": [\n \"commander\",\n \"command\",\n \"option\",\n \"parser\",\n \"cli\",\n \"argument\",\n \"args\",\n \"argv\"\n ],\n \"author\": \"TJ Holowaychuk <tj@vision-media.ca>\",\n \"license\": \"MIT\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/tj/commander.js.git\"\n },\n \"scripts\": {\n \"lint\": \"npm run lint:javascript && npm run lint:typescript\",\n \"lint:javascript\": \"eslint index.js esm.mjs \\\"lib/*.js\\\" \\\"tests/**/*.js\\\"\",\n \"lint:typescript\": \"eslint typings/*.ts tests/*.ts\",\n \"test\": \"jest && npm run test-typings\",\n \"test-esm\": \"node ./tests/esm-imports-test.mjs\",\n \"test-typings\": \"tsd\",\n \"typescript-checkJS\": \"tsc --allowJS --checkJS index.js lib/*.js --noEmit\",\n \"test-all\": \"npm run test && npm run lint && npm run typescript-checkJS && npm run test-esm\"\n },\n \"files\": [\n \"index.js\",\n \"lib/*.js\",\n \"esm.mjs\",\n \"typings/index.d.ts\",\n \"package-support.json\"\n ],\n \"type\": \"commonjs\",\n \"main\": \"./index.js\",\n \"exports\": {\n \".\": {\n \"types\": \"./typings/index.d.ts\",\n \"require\": \"./index.js\",\n \"import\": \"./esm.mjs\"\n },\n \"./esm.mjs\": \"./esm.mjs\"\n },\n \"devDependencies\": {\n \"@types/jest\": \"^29.2.4\",\n \"@types/node\": \"^18.11.18\",\n \"@typescript-eslint/eslint-plugin\": \"^5.47.1\",\n \"@typescript-eslint/parser\": \"^5.47.1\",\n \"eslint\": \"^8.30.0\",\n \"eslint-config-standard\": \"^17.0.0\",\n \"eslint-config-standard-with-typescript\": \"^24.0.0\",\n \"eslint-plugin-import\": \"^2.26.0\",\n \"eslint-plugin-jest\": \"^27.1.7\",\n \"eslint-plugin-n\": \"^15.6.0\",\n \"eslint-plugin-promise\": \"^6.1.1\",\n \"jest\": \"^29.3.1\",\n \"ts-jest\": \"^29.0.3\",\n \"tsd\": \"^0.25.0\",\n \"typescript\": \"^4.9.4\"\n },\n \"types\": \"typings/index.d.ts\",\n \"jest\": {\n \"testEnvironment\": \"node\",\n \"collectCoverage\": true,\n \"transform\": {\n \"^.+\\\\.tsx?$\": \"ts-jest\"\n },\n \"testPathIgnorePatterns\": [\n \"/node_modules/\"\n ]\n },\n \"engines\": {\n \"node\": \">=14\"\n },\n \"support\": true\n}\n",
|
|
12918
|
+
"node_modules/commander/typings/index.d.ts": "// Type definitions for commander\n// Original definitions by: Alan Agius <https://github.com/alan-agius4>, Marcelo Dezem <https://github.com/mdezem>, vvakame <https://github.com/vvakame>, Jules Randolph <https://github.com/sveinburne>\n\n// Using method rather than property for method-signature-style, to document method overloads separately. Allow either.\n/* eslint-disable @typescript-eslint/method-signature-style */\n/* eslint-disable @typescript-eslint/no-explicit-any */\n\nexport class CommanderError extends Error {\n code: string;\n exitCode: number;\n message: string;\n nestedError?: string;\n\n /**\n * Constructs the CommanderError class\n * @param exitCode - suggested exit code which could be used with process.exit\n * @param code - an id string representing the error\n * @param message - human-readable description of the error\n * @constructor\n */\n constructor(exitCode: number, code: string, message: string);\n}\n\nexport class InvalidArgumentError extends CommanderError {\n /**\n * Constructs the InvalidArgumentError class\n * @param message - explanation of why argument is invalid\n * @constructor\n */\n constructor(message: string);\n}\nexport { InvalidArgumentError as InvalidOptionArgumentError }; // deprecated old name\n\nexport interface ErrorOptions { // optional parameter for error()\n /** an id string representing the error */\n code?: string;\n /** suggested exit code which could be used with process.exit */\n exitCode?: number;\n}\n\nexport class Argument {\n description: string;\n required: boolean;\n variadic: boolean;\n\n /**\n * Initialize a new command argument with the given name and description.\n * The default is that the argument is required, and you can explicitly\n * indicate this with <> around the name. Put [] around the name for an optional argument.\n */\n constructor(arg: string, description?: string);\n\n /**\n * Return argument name.\n */\n name(): string;\n\n /**\n * Set the default value, and optionally supply the description to be displayed in the help.\n */\n default(value: unknown, description?: string): this;\n\n /**\n * Set the custom handler for processing CLI command arguments into argument values.\n */\n argParser<T>(fn: (value: string, previous: T) => T): this;\n\n /**\n * Only allow argument value to be one of choices.\n */\n choices(values: readonly string[]): this;\n\n /**\n * Make argument required.\n */\n argRequired(): this;\n\n /**\n * Make argument optional.\n */\n argOptional(): this;\n}\n\nexport class Option {\n flags: string;\n description: string;\n\n required: boolean; // A value must be supplied when the option is specified.\n optional: boolean; // A value is optional when the option is specified.\n variadic: boolean;\n mandatory: boolean; // The option must have a value after parsing, which usually means it must be specified on command line.\n optionFlags: string;\n short?: string;\n long?: string;\n negate: boolean;\n defaultValue?: any;\n defaultValueDescription?: string;\n parseArg?: <T>(value: string, previous: T) => T;\n hidden: boolean;\n argChoices?: string[];\n\n constructor(flags: string, description?: string);\n\n /**\n * Set the default value, and optionally supply the description to be displayed in the help.\n */\n default(value: unknown, description?: string): this;\n\n /**\n * Preset to use when option used without option-argument, especially optional but also boolean and negated.\n * The custom processing (parseArg) is called.\n *\n * @example\n * ```ts\n * new Option('--color').default('GREYSCALE').preset('RGB');\n * new Option('--donate [amount]').preset('20').argParser(parseFloat);\n * ```\n */\n preset(arg: unknown): this;\n\n /**\n * Add option name(s) that conflict with this option.\n * An error will be displayed if conflicting options are found during parsing.\n *\n * @example\n * ```ts\n * new Option('--rgb').conflicts('cmyk');\n * new Option('--js').conflicts(['ts', 'jsx']);\n * ```\n */\n conflicts(names: string | string[]): this;\n\n /**\n * Specify implied option values for when this option is set and the implied options are not.\n *\n * The custom processing (parseArg) is not called on the implied values.\n *\n * @example\n * program\n * .addOption(new Option('--log', 'write logging information to file'))\n * .addOption(new Option('--trace', 'log extra details').implies({ log: 'trace.txt' }));\n */\n implies(optionValues: OptionValues): this;\n\n /**\n * Set environment variable to check for option value.\n *\n * An environment variables is only used if when processed the current option value is\n * undefined, or the source of the current value is 'default' or 'config' or 'env'.\n */\n env(name: string): this;\n\n /**\n * Calculate the full description, including defaultValue etc.\n */\n fullDescription(): string;\n\n /**\n * Set the custom handler for processing CLI option arguments into option values.\n */\n argParser<T>(fn: (value: string, previous: T) => T): this;\n\n /**\n * Whether the option is mandatory and must have a value after parsing.\n */\n makeOptionMandatory(mandatory?: boolean): this;\n\n /**\n * Hide option in help.\n */\n hideHelp(hide?: boolean): this;\n\n /**\n * Only allow option value to be one of choices.\n */\n choices(values: readonly string[]): this;\n\n /**\n * Return option name.\n */\n name(): string;\n\n /**\n * Return option name, in a camelcase format that can be used\n * as a object attribute key.\n */\n attributeName(): string;\n\n /**\n * Return whether a boolean option.\n *\n * Options are one of boolean, negated, required argument, or optional argument.\n */\n isBoolean(): boolean;\n}\n\nexport class Help {\n /** output helpWidth, long lines are wrapped to fit */\n helpWidth?: number;\n sortSubcommands: boolean;\n sortOptions: boolean;\n showGlobalOptions: boolean;\n\n constructor();\n\n /** Get the command term to show in the list of subcommands. */\n subcommandTerm(cmd: Command): string;\n /** Get the command summary to show in the list of subcommands. */\n subcommandDescription(cmd: Command): string;\n /** Get the option term to show in the list of options. */\n optionTerm(option: Option): string;\n /** Get the option description to show in the list of options. */\n optionDescription(option: Option): string;\n /** Get the argument term to show in the list of arguments. */\n argumentTerm(argument: Argument): string;\n /** Get the argument description to show in the list of arguments. */\n argumentDescription(argument: Argument): string;\n\n /** Get the command usage to be displayed at the top of the built-in help. */\n commandUsage(cmd: Command): string;\n /** Get the description for the command. */\n commandDescription(cmd: Command): string;\n\n /** Get an array of the visible subcommands. Includes a placeholder for the implicit help command, if there is one. */\n visibleCommands(cmd: Command): Command[];\n /** Get an array of the visible options. Includes a placeholder for the implicit help option, if there is one. */\n visibleOptions(cmd: Command): Option[];\n /** Get an array of the visible global options. (Not including help.) */\n visibleGlobalOptions(cmd: Command): Option[];\n /** Get an array of the arguments which have descriptions. */\n visibleArguments(cmd: Command): Argument[];\n\n /** Get the longest command term length. */\n longestSubcommandTermLength(cmd: Command, helper: Help): number;\n /** Get the longest option term length. */\n longestOptionTermLength(cmd: Command, helper: Help): number;\n /** Get the longest global option term length. */\n longestGlobalOptionTermLength(cmd: Command, helper: Help): number;\n /** Get the longest argument term length. */\n longestArgumentTermLength(cmd: Command, helper: Help): number;\n /** Calculate the pad width from the maximum term length. */\n padWidth(cmd: Command, helper: Help): number;\n\n /**\n * Wrap the given string to width characters per line, with lines after the first indented.\n * Do not wrap if insufficient room for wrapping (minColumnWidth), or string is manually formatted.\n */\n wrap(str: string, width: number, indent: number, minColumnWidth?: number): string;\n\n /** Generate the built-in help text. */\n formatHelp(cmd: Command, helper: Help): string;\n}\nexport type HelpConfiguration = Partial<Help>;\n\nexport interface ParseOptions {\n from: 'node' | 'electron' | 'user';\n}\nexport interface HelpContext { // optional parameter for .help() and .outputHelp()\n error: boolean;\n}\nexport interface AddHelpTextContext { // passed to text function used with .addHelpText()\n error: boolean;\n command: Command;\n}\nexport interface OutputConfiguration {\n writeOut?(str: string): void;\n writeErr?(str: string): void;\n getOutHelpWidth?(): number;\n getErrHelpWidth?(): number;\n outputError?(str: string, write: (str: string) => void): void;\n\n}\n\nexport type AddHelpTextPosition = 'beforeAll' | 'before' | 'after' | 'afterAll';\nexport type HookEvent = 'preSubcommand' | 'preAction' | 'postAction';\nexport type OptionValueSource = 'default' | 'config' | 'env' | 'cli' | 'implied';\n\nexport type OptionValues = Record<string, any>;\n\nexport class Command {\n args: string[];\n processedArgs: any[];\n readonly commands: readonly Command[];\n readonly options: readonly Option[];\n parent: Command | null;\n\n constructor(name?: string);\n\n /**\n * Set the program version to `str`.\n *\n * This method auto-registers the \"-V, --version\" flag\n * which will print the version number when passed.\n *\n * You can optionally supply the flags and description to override the defaults.\n */\n version(str: string, flags?: string, description?: string): this;\n\n /**\n * Define a command, implemented using an action handler.\n *\n * @remarks\n * The command description is supplied using `.description`, not as a parameter to `.command`.\n *\n * @example\n * ```ts\n * program\n * .command('clone <source> [destination]')\n * .description('clone a repository into a newly created directory')\n * .action((source, destination) => {\n * console.log('clone command called');\n * });\n * ```\n *\n * @param nameAndArgs - command name and arguments, args are `<required>` or `[optional]` and last may also be `variadic...`\n * @param opts - configuration options\n * @returns new command\n */\n command(nameAndArgs: string, opts?: CommandOptions): ReturnType<this['createCommand']>;\n /**\n * Define a command, implemented in a separate executable file.\n *\n * @remarks\n * The command description is supplied as the second parameter to `.command`.\n *\n * @example\n * ```ts\n * program\n * .command('start <service>', 'start named service')\n * .command('stop [service]', 'stop named service, or all if no name supplied');\n * ```\n *\n * @param nameAndArgs - command name and arguments, args are `<required>` or `[optional]` and last may also be `variadic...`\n * @param description - description of executable command\n * @param opts - configuration options\n * @returns `this` command for chaining\n */\n command(nameAndArgs: string, description: string, opts?: ExecutableCommandOptions): this;\n\n /**\n * Factory routine to create a new unattached command.\n *\n * See .command() for creating an attached subcommand, which uses this routine to\n * create the command. You can override createCommand to customise subcommands.\n */\n createCommand(name?: string): Command;\n\n /**\n * Add a prepared subcommand.\n *\n * See .command() for creating an attached subcommand which inherits settings from its parent.\n *\n * @returns `this` command for chaining\n */\n addCommand(cmd: Command, opts?: CommandOptions): this;\n\n /**\n * Factory routine to create a new unattached argument.\n *\n * See .argument() for creating an attached argument, which uses this routine to\n * create the argument. You can override createArgument to return a custom argument.\n */\n createArgument(name: string, description?: string): Argument;\n\n /**\n * Define argument syntax for command.\n *\n * The default is that the argument is required, and you can explicitly\n * indicate this with <> around the name. Put [] around the name for an optional argument.\n *\n * @example\n * ```\n * program.argument('<input-file>');\n * program.argument('[output-file]');\n * ```\n *\n * @returns `this` command for chaining\n */\n argument<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n argument(name: string, description?: string, defaultValue?: unknown): this;\n\n /**\n * Define argument syntax for command, adding a prepared argument.\n *\n * @returns `this` command for chaining\n */\n addArgument(arg: Argument): this;\n\n /**\n * Define argument syntax for command, adding multiple at once (without descriptions).\n *\n * See also .argument().\n *\n * @example\n * ```\n * program.arguments('<cmd> [env]');\n * ```\n *\n * @returns `this` command for chaining\n */\n arguments(names: string): this;\n\n /**\n * Override default decision whether to add implicit help command.\n *\n * @example\n * ```\n * addHelpCommand() // force on\n * addHelpCommand(false); // force off\n * addHelpCommand('help [cmd]', 'display help for [cmd]'); // force on with custom details\n * ```\n *\n * @returns `this` command for chaining\n */\n addHelpCommand(enableOrNameAndArgs?: string | boolean, description?: string): this;\n\n /**\n * Add hook for life cycle event.\n */\n hook(event: HookEvent, listener: (thisCommand: Command, actionCommand: Command) => void | Promise<void>): this;\n\n /**\n * Register callback to use as replacement for calling process.exit.\n */\n exitOverride(callback?: (err: CommanderError) => never | void): this;\n\n /**\n * Display error message and exit (or call exitOverride).\n */\n error(message: string, errorOptions?: ErrorOptions): never;\n\n /**\n * You can customise the help with a subclass of Help by overriding createHelp,\n * or by overriding Help properties using configureHelp().\n */\n createHelp(): Help;\n\n /**\n * You can customise the help by overriding Help properties using configureHelp(),\n * or with a subclass of Help by overriding createHelp().\n */\n configureHelp(configuration: HelpConfiguration): this;\n /** Get configuration */\n configureHelp(): HelpConfiguration;\n\n /**\n * The default output goes to stdout and stderr. You can customise this for special\n * applications. You can also customise the display of errors by overriding outputError.\n *\n * The configuration properties are all functions:\n * ```\n * // functions to change where being written, stdout and stderr\n * writeOut(str)\n * writeErr(str)\n * // matching functions to specify width for wrapping help\n * getOutHelpWidth()\n * getErrHelpWidth()\n * // functions based on what is being written out\n * outputError(str, write) // used for displaying errors, and not used for displaying help\n * ```\n */\n configureOutput(configuration: OutputConfiguration): this;\n /** Get configuration */\n configureOutput(): OutputConfiguration;\n\n /**\n * Copy settings that are useful to have in common across root command and subcommands.\n *\n * (Used internally when adding a command using `.command()` so subcommands inherit parent settings.)\n */\n copyInheritedSettings(sourceCommand: Command): this;\n\n /**\n * Display the help or a custom message after an error occurs.\n */\n showHelpAfterError(displayHelp?: boolean | string): this;\n\n /**\n * Display suggestion of similar commands for unknown commands, or options for unknown options.\n */\n showSuggestionAfterError(displaySuggestion?: boolean): this;\n\n /**\n * Register callback `fn` for the command.\n *\n * @example\n * ```\n * program\n * .command('serve')\n * .description('start service')\n * .action(function() {\n * // do work here\n * });\n * ```\n *\n * @returns `this` command for chaining\n */\n action(fn: (...args: any[]) => void | Promise<void>): this;\n\n /**\n * Define option with `flags`, `description` and optional\n * coercion `fn`.\n *\n * The `flags` string contains the short and/or long flags,\n * separated by comma, a pipe or space. The following are all valid\n * all will output this way when `--help` is used.\n *\n * \"-p, --pepper\"\n * \"-p|--pepper\"\n * \"-p --pepper\"\n *\n * @example\n * ```\n * // simple boolean defaulting to false\n * program.option('-p, --pepper', 'add pepper');\n *\n * --pepper\n * program.pepper\n * // => Boolean\n *\n * // simple boolean defaulting to true\n * program.option('-C, --no-cheese', 'remove cheese');\n *\n * program.cheese\n * // => true\n *\n * --no-cheese\n * program.cheese\n * // => false\n *\n * // required argument\n * program.option('-C, --chdir <path>', 'change the working directory');\n *\n * --chdir /tmp\n * program.chdir\n * // => \"/tmp\"\n *\n * // optional argument\n * program.option('-c, --cheese [type]', 'add cheese [marble]');\n * ```\n *\n * @returns `this` command for chaining\n */\n option(flags: string, description?: string, defaultValue?: string | boolean | string[]): this;\n option<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n /** @deprecated since v7, instead use choices or a custom function */\n option(flags: string, description: string, regexp: RegExp, defaultValue?: string | boolean | string[]): this;\n\n /**\n * Define a required option, which must have a value after parsing. This usually means\n * the option must be specified on the command line. (Otherwise the same as .option().)\n *\n * The `flags` string contains the short and/or long flags, separated by comma, a pipe or space.\n */\n requiredOption(flags: string, description?: string, defaultValue?: string | boolean | string[]): this;\n requiredOption<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n /** @deprecated since v7, instead use choices or a custom function */\n requiredOption(flags: string, description: string, regexp: RegExp, defaultValue?: string | boolean | string[]): this;\n\n /**\n * Factory routine to create a new unattached option.\n *\n * See .option() for creating an attached option, which uses this routine to\n * create the option. You can override createOption to return a custom option.\n */\n\n createOption(flags: string, description?: string): Option;\n\n /**\n * Add a prepared Option.\n *\n * See .option() and .requiredOption() for creating and attaching an option in a single call.\n */\n addOption(option: Option): this;\n\n /**\n * Whether to store option values as properties on command object,\n * or store separately (specify false). In both cases the option values can be accessed using .opts().\n *\n * @returns `this` command for chaining\n */\n storeOptionsAsProperties<T extends OptionValues>(): this & T;\n storeOptionsAsProperties<T extends OptionValues>(storeAsProperties: true): this & T;\n storeOptionsAsProperties(storeAsProperties?: boolean): this;\n\n /**\n * Retrieve option value.\n */\n getOptionValue(key: string): any;\n\n /**\n * Store option value.\n */\n setOptionValue(key: string, value: unknown): this;\n\n /**\n * Store option value and where the value came from.\n */\n setOptionValueWithSource(key: string, value: unknown, source: OptionValueSource): this;\n\n /**\n * Get source of option value.\n */\n getOptionValueSource(key: string): OptionValueSource | undefined;\n\n /**\n * Get source of option value. See also .optsWithGlobals().\n */\n getOptionValueSourceWithGlobals(key: string): OptionValueSource | undefined;\n\n /**\n * Alter parsing of short flags with optional values.\n *\n * @example\n * ```\n * // for `.option('-f,--flag [value]'):\n * .combineFlagAndOptionalValue(true) // `-f80` is treated like `--flag=80`, this is the default behaviour\n * .combineFlagAndOptionalValue(false) // `-fb` is treated like `-f -b`\n * ```\n *\n * @returns `this` command for chaining\n */\n combineFlagAndOptionalValue(combine?: boolean): this;\n\n /**\n * Allow unknown options on the command line.\n *\n * @returns `this` command for chaining\n */\n allowUnknownOption(allowUnknown?: boolean): this;\n\n /**\n * Allow excess command-arguments on the command line. Pass false to make excess arguments an error.\n *\n * @returns `this` command for chaining\n */\n allowExcessArguments(allowExcess?: boolean): this;\n\n /**\n * Enable positional options. Positional means global options are specified before subcommands which lets\n * subcommands reuse the same option names, and also enables subcommands to turn on passThroughOptions.\n *\n * The default behaviour is non-positional and global options may appear anywhere on the command line.\n *\n * @returns `this` command for chaining\n */\n enablePositionalOptions(positional?: boolean): this;\n\n /**\n * Pass through options that come after command-arguments rather than treat them as command-options,\n * so actual command-options come before command-arguments. Turning this on for a subcommand requires\n * positional options to have been enabled on the program (parent commands).\n *\n * The default behaviour is non-positional and options may appear before or after command-arguments.\n *\n * @returns `this` command for chaining\n */\n passThroughOptions(passThrough?: boolean): this;\n\n /**\n * Parse `argv`, setting options and invoking commands when defined.\n *\n * The default expectation is that the arguments are from node and have the application as argv[0]\n * and the script being run in argv[1], with user parameters after that.\n *\n * @example\n * ```\n * program.parse(process.argv);\n * program.parse(); // implicitly use process.argv and auto-detect node vs electron conventions\n * program.parse(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]\n * ```\n *\n * @returns `this` command for chaining\n */\n parse(argv?: readonly string[], options?: ParseOptions): this;\n\n /**\n * Parse `argv`, setting options and invoking commands when defined.\n *\n * Use parseAsync instead of parse if any of your action handlers are async. Returns a Promise.\n *\n * The default expectation is that the arguments are from node and have the application as argv[0]\n * and the script being run in argv[1], with user parameters after that.\n *\n * @example\n * ```\n * program.parseAsync(process.argv);\n * program.parseAsync(); // implicitly use process.argv and auto-detect node vs electron conventions\n * program.parseAsync(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]\n * ```\n *\n * @returns Promise\n */\n parseAsync(argv?: readonly string[], options?: ParseOptions): Promise<this>;\n\n /**\n * Parse options from `argv` removing known options,\n * and return argv split into operands and unknown arguments.\n *\n * argv => operands, unknown\n * --known kkk op => [op], []\n * op --known kkk => [op], []\n * sub --unknown uuu op => [sub], [--unknown uuu op]\n * sub -- --unknown uuu op => [sub --unknown uuu op], []\n */\n parseOptions(argv: string[]): ParseOptionsResult;\n\n /**\n * Return an object containing local option values as key-value pairs\n */\n opts<T extends OptionValues>(): T;\n\n /**\n * Return an object containing merged local and global option values as key-value pairs.\n */\n optsWithGlobals<T extends OptionValues>(): T;\n\n /**\n * Set the description.\n *\n * @returns `this` command for chaining\n */\n\n description(str: string): this;\n /** @deprecated since v8, instead use .argument to add command argument with description */\n description(str: string, argsDescription: Record<string, string>): this;\n /**\n * Get the description.\n */\n description(): string;\n\n /**\n * Set the summary. Used when listed as subcommand of parent.\n *\n * @returns `this` command for chaining\n */\n\n summary(str: string): this;\n /**\n * Get the summary.\n */\n summary(): string;\n\n /**\n * Set an alias for the command.\n *\n * You may call more than once to add multiple aliases. Only the first alias is shown in the auto-generated help.\n *\n * @returns `this` command for chaining\n */\n alias(alias: string): this;\n /**\n * Get alias for the command.\n */\n alias(): string;\n\n /**\n * Set aliases for the command.\n *\n * Only the first alias is shown in the auto-generated help.\n *\n * @returns `this` command for chaining\n */\n aliases(aliases: readonly string[]): this;\n /**\n * Get aliases for the command.\n */\n aliases(): string[];\n\n /**\n * Set the command usage.\n *\n * @returns `this` command for chaining\n */\n usage(str: string): this;\n /**\n * Get the command usage.\n */\n usage(): string;\n\n /**\n * Set the name of the command.\n *\n * @returns `this` command for chaining\n */\n name(str: string): this;\n /**\n * Get the name of the command.\n */\n name(): string;\n\n /**\n * Set the name of the command from script filename, such as process.argv[1],\n * or require.main.filename, or __filename.\n *\n * (Used internally and public although not documented in README.)\n *\n * @example\n * ```ts\n * program.nameFromFilename(require.main.filename);\n * ```\n *\n * @returns `this` command for chaining\n */\n nameFromFilename(filename: string): this;\n\n /**\n * Set the directory for searching for executable subcommands of this command.\n *\n * @example\n * ```ts\n * program.executableDir(__dirname);\n * // or\n * program.executableDir('subcommands');\n * ```\n *\n * @returns `this` command for chaining\n */\n executableDir(path: string): this;\n /**\n * Get the executable search directory.\n */\n executableDir(): string;\n\n /**\n * Output help information for this command.\n *\n * Outputs built-in help, and custom text added using `.addHelpText()`.\n *\n */\n outputHelp(context?: HelpContext): void;\n /** @deprecated since v7 */\n outputHelp(cb?: (str: string) => string): void;\n\n /**\n * Return command help documentation.\n */\n helpInformation(context?: HelpContext): string;\n\n /**\n * You can pass in flags and a description to override the help\n * flags and help description for your command. Pass in false\n * to disable the built-in help option.\n */\n helpOption(flags?: string | boolean, description?: string): this;\n\n /**\n * Output help information and exit.\n *\n * Outputs built-in help, and custom text added using `.addHelpText()`.\n */\n help(context?: HelpContext): never;\n /** @deprecated since v7 */\n help(cb?: (str: string) => string): never;\n\n /**\n * Add additional text to be displayed with the built-in help.\n *\n * Position is 'before' or 'after' to affect just this command,\n * and 'beforeAll' or 'afterAll' to affect this command and all its subcommands.\n */\n addHelpText(position: AddHelpTextPosition, text: string): this;\n addHelpText(position: AddHelpTextPosition, text: (context: AddHelpTextContext) => string): this;\n\n /**\n * Add a listener (callback) for when events occur. (Implemented using EventEmitter.)\n */\n on(event: string | symbol, listener: (...args: any[]) => void): this;\n}\n\nexport interface CommandOptions {\n hidden?: boolean;\n isDefault?: boolean;\n /** @deprecated since v7, replaced by hidden */\n noHelp?: boolean;\n}\nexport interface ExecutableCommandOptions extends CommandOptions {\n executableFile?: string;\n}\n\nexport interface ParseOptionsResult {\n operands: string[];\n unknown: string[];\n}\n\nexport function createCommand(name?: string): Command;\nexport function createOption(flags: string, description?: string): Option;\nexport function createArgument(name: string, description?: string): Argument;\n\nexport const program: Command;\n",
|
|
12925
12919
|
"node_modules/comment-json/index.d.ts": "// Original from DefinitelyTyped. Thanks a million\n// Type definitions for comment-json 1.1\n// Project: https://github.com/kaelzhang/node-comment-json\n// Definitions by: Jason Dent <https://github.com/Jason3S>\n// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped\n\ndeclare const commentSymbol: unique symbol\n\nexport type CommentPrefix = 'before'\n | 'after-prop'\n | 'after-colon'\n | 'after-value'\n | 'after'\n\nexport type CommentDescriptor = `${CommentPrefix}:${string}`\n | 'before'\n | 'before-all'\n | 'after-all'\n\nexport type CommentSymbol = typeof commentSymbol\n\nexport class CommentArray<TValue> extends Array<TValue> {\n [commentSymbol]: CommentToken[]\n}\n\nexport type CommentJSONValue = number\n | string\n | null\n | boolean\n | CommentArray<CommentJSONValue>\n | CommentObject\n\nexport interface CommentObject {\n [key: string]: CommentJSONValue\n [commentSymbol]: CommentToken[]\n}\n\nexport interface CommentToken {\n type: 'BlockComment' | 'LineComment'\n // The content of the comment, including whitespaces and line breaks\n value: string\n // If the start location is the same line as the previous token,\n // then `inline` is `true`\n inline: boolean\n // But pay attention that,\n // locations will NOT be maintained when stringified\n loc: CommentLocation\n}\n\nexport interface CommentLocation {\n // The start location begins at the `//` or `/*` symbol\n start: Location\n // The end location of multi-line comment ends at the `*/` symbol\n end: Location\n}\n\nexport interface Location {\n line: number\n column: number\n}\n\nexport type Reviver = (k: number | string, v: unknown) => unknown\n\n/**\n * Converts a JavaScript Object Notation (JSON) string into an object.\n * @param json A valid JSON string.\n * @param reviver A function that transforms the results. This function is called for each member of the object.\n * @param removesComments If true, the comments won't be maintained, which is often used when we want to get a clean object.\n * If a member contains nested objects, the nested objects are transformed before the parent object is.\n */\nexport function parse(\n json: string,\n reviver?: Reviver | null,\n removesComments?: boolean\n): CommentJSONValue\n\n/**\n * Converts a JavaScript value to a JavaScript Object Notation (JSON) string.\n * @param value A JavaScript value, usually an object or array, to be converted.\n * @param replacer A function that transforms the results or an array of strings and numbers that acts as a approved list for selecting the object properties that will be stringified.\n * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.\n */\nexport function stringify(\n value: unknown,\n replacer?: (\n (key: string, value: unknown) => unknown\n ) | Array<number | string> | null,\n space?: string | number\n): string\n\n\nexport function tokenize(input: string, config?: TokenizeOptions): Token[]\n\nexport interface Token {\n type: string\n value: string\n}\n\nexport interface TokenizeOptions {\n tolerant?: boolean\n range?: boolean\n loc?: boolean\n comment?: boolean\n}\n\nexport function assign<TTarget, TSource>(\n target: TTarget,\n source: TSource,\n // Although it actually accepts more key types and filters then`,\n // we set the type of `keys` stricter\n keys?: readonly (number | string)[]\n): TTarget\n",
|
|
12926
12920
|
"node_modules/comment-json/package.json": "{\n \"name\": \"comment-json\",\n \"version\": \"4.2.5\",\n \"description\": \"Parse and stringify JSON with comments. It will retain comments even after saved!\",\n \"main\": \"src/index.js\",\n \"types\": \"index.d.ts\",\n \"scripts\": {\n \"test\": \"npm run test:only\",\n \"test:only\": \"npm run test:ts && npm run test:node\",\n \"test:ts\": \"tsc -b test/ts/tsconfig.build.json && node test/ts/test-ts.js\",\n \"test:node\": \"NODE_DEBUG=comment-json nyc ava --timeout=10s --verbose\",\n \"test:dev\": \"npm run test:only && npm run report:dev\",\n \"lint\": \"eslint .\",\n \"fix\": \"eslint . --fix\",\n \"posttest\": \"npm run report\",\n \"report\": \"nyc report --reporter=text-lcov > coverage.lcov && codecov\",\n \"report:dev\": \"nyc report --reporter=html && npm run report:open\",\n \"report:open\": \"open coverage/index.html\"\n },\n \"files\": [\n \"src/\",\n \"index.d.ts\"\n ],\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git://github.com/kaelzhang/node-comment-json.git\"\n },\n \"keywords\": [\n \"comment-json\",\n \"comments\",\n \"annotations\",\n \"json\",\n \"json-stringify\",\n \"json-parse\",\n \"parser\",\n \"comments-json\",\n \"json-comments\"\n ],\n \"engines\": {\n \"node\": \">= 6\"\n },\n \"ava\": {\n \"files\": [\n \"test/*.test.js\"\n ]\n },\n \"author\": \"kaelzhang\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/kaelzhang/node-comment-json/issues\"\n },\n \"devDependencies\": {\n \"@ostai/eslint-config\": \"^3.6.0\",\n \"ava\": \"^4.0.1\",\n \"codecov\": \"^3.8.2\",\n \"eslint\": \"^8.8.0\",\n \"eslint-plugin-import\": \"^2.25.4\",\n \"nyc\": \"^15.1.0\",\n \"test-fixture\": \"^2.4.1\",\n \"typescript\": \"^4.5.5\"\n },\n \"dependencies\": {\n \"array-timsort\": \"^1.0.3\",\n \"core-util-is\": \"^1.0.3\",\n \"esprima\": \"^4.0.1\",\n \"has-own-prop\": \"^2.0.0\",\n \"repeat-string\": \"^1.6.1\"\n }\n}\n",
|
|
12927
12921
|
"node_modules/comment-parser/es6/index.d.ts": "import { Options as ParserOptions } from './parser/index.js';\nimport descriptionTokenizer from './parser/tokenizers/description.js';\nimport nameTokenizer from './parser/tokenizers/name.js';\nimport tagTokenizer from './parser/tokenizers/tag.js';\nimport typeTokenizer from './parser/tokenizers/type.js';\nimport alignTransform from './transforms/align.js';\nimport indentTransform from './transforms/indent.js';\nimport crlfTransform from './transforms/crlf.js';\nimport { flow as flowTransform } from './transforms/index.js';\nimport { rewireSpecs, rewireSource, seedBlock, seedTokens } from './util.js';\nexport * from './primitives.js';\nexport declare function parse(source: string, options?: Partial<ParserOptions>): import(\"./primitives.js\").Block[];\nexport declare const stringify: import(\"./stringifier/index.js\").Stringifier;\nexport { default as inspect } from './stringifier/inspect.js';\nexport declare const transforms: {\n flow: typeof flowTransform;\n align: typeof alignTransform;\n indent: typeof indentTransform;\n crlf: typeof crlfTransform;\n};\nexport declare const tokenizers: {\n tag: typeof tagTokenizer;\n type: typeof typeTokenizer;\n name: typeof nameTokenizer;\n description: typeof descriptionTokenizer;\n};\nexport declare const util: {\n rewireSpecs: typeof rewireSpecs;\n rewireSource: typeof rewireSource;\n seedBlock: typeof seedBlock;\n seedTokens: typeof seedTokens;\n};\n",
|
|
@@ -13271,6 +13265,7 @@
|
|
|
13271
13265
|
"node_modules/import2/package.json": "{\n \"name\": \"import2\",\n \"version\": \"1.0.3\",\n \"description\": \"Dynamic import function which can avoid transpiling to require function\",\n \"typings\": \"./index.d.ts\",\n \"main\": \"index.js\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/import2\"\n },\n \"keywords\": [\n \"import\",\n \"require\",\n \"avoid\",\n \"transpile\",\n \"typescript\"\n ],\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/import2/issues\"\n },\n \"homepage\": \"https://github.com/samchon/import2#readme\"\n}\n",
|
|
13272
13266
|
"node_modules/inflight/package.json": "{\n \"name\": \"inflight\",\n \"version\": \"1.0.6\",\n \"description\": \"Add callbacks to requests in flight to avoid async duplication\",\n \"main\": \"inflight.js\",\n \"files\": [\n \"inflight.js\"\n ],\n \"dependencies\": {\n \"once\": \"^1.3.0\",\n \"wrappy\": \"1\"\n },\n \"devDependencies\": {\n \"tap\": \"^7.1.2\"\n },\n \"scripts\": {\n \"test\": \"tap test.js --100\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/npm/inflight.git\"\n },\n \"author\": \"Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)\",\n \"bugs\": {\n \"url\": \"https://github.com/isaacs/inflight/issues\"\n },\n \"homepage\": \"https://github.com/isaacs/inflight\",\n \"license\": \"ISC\"\n}\n",
|
|
13273
13267
|
"node_modules/inherits/package.json": "{\n \"name\": \"inherits\",\n \"description\": \"Browser-friendly inheritance fully compatible with standard node.js inherits()\",\n \"version\": \"2.0.4\",\n \"keywords\": [\n \"inheritance\",\n \"class\",\n \"klass\",\n \"oop\",\n \"object-oriented\",\n \"inherits\",\n \"browser\",\n \"browserify\"\n ],\n \"main\": \"./inherits.js\",\n \"browser\": \"./inherits_browser.js\",\n \"repository\": \"git://github.com/isaacs/inherits\",\n \"license\": \"ISC\",\n \"scripts\": {\n \"test\": \"tap\"\n },\n \"devDependencies\": {\n \"tap\": \"^14.2.4\"\n },\n \"files\": [\n \"inherits.js\",\n \"inherits_browser.js\"\n ]\n}\n",
|
|
13268
|
+
"node_modules/inquirer/package.json": "{\n \"name\": \"inquirer\",\n \"version\": \"8.2.5\",\n \"description\": \"A collection of common interactive command line user interfaces.\",\n \"author\": \"Simon Boudrias <admin@simonboudrias.com>\",\n \"files\": [\n \"lib\",\n \"README.md\"\n ],\n \"main\": \"lib/inquirer.js\",\n \"keywords\": [\n \"command\",\n \"prompt\",\n \"stdin\",\n \"cli\",\n \"tty\",\n \"menu\"\n ],\n \"engines\": {\n \"node\": \">=12.0.0\"\n },\n \"devDependencies\": {\n \"chai\": \"^4.3.6\",\n \"chai-string\": \"^1.5.0\",\n \"chalk-pipe\": \"^5.1.1\",\n \"cmdify\": \"^0.0.4\",\n \"mocha\": \"^9.2.2\",\n \"mockery\": \"^2.1.0\",\n \"nyc\": \"^15.0.0\",\n \"sinon\": \"^13.0.2\",\n \"terminal-link\": \"^2.1.1\"\n },\n \"scripts\": {\n \"test\": \"nyc mocha test/**/* -r ./test/before\",\n \"posttest\": \"nyc report --reporter=text-lcov > ../../coverage/nyc-report.lcov\",\n \"prepublishOnly\": \"cp ../../README.md .\",\n \"postpublish\": \"rm -f README.md\"\n },\n \"repository\": \"SBoudrias/Inquirer.js\",\n \"license\": \"MIT\",\n \"dependencies\": {\n \"ansi-escapes\": \"^4.2.1\",\n \"chalk\": \"^4.1.1\",\n \"cli-cursor\": \"^3.1.0\",\n \"cli-width\": \"^3.0.0\",\n \"external-editor\": \"^3.0.3\",\n \"figures\": \"^3.0.0\",\n \"lodash\": \"^4.17.21\",\n \"mute-stream\": \"0.0.8\",\n \"ora\": \"^5.4.1\",\n \"run-async\": \"^2.4.0\",\n \"rxjs\": \"^7.5.5\",\n \"string-width\": \"^4.1.0\",\n \"strip-ansi\": \"^6.0.0\",\n \"through\": \"^2.3.6\",\n \"wrap-ansi\": \"^7.0.0\"\n },\n \"gitHead\": \"7a2ade6cf6a3d987f4138c0426493460f6b2515f\"\n}\n",
|
|
13274
13269
|
"node_modules/ipaddr.js/lib/ipaddr.js.d.ts": "declare module \"ipaddr.js\" {\n type IPv4Range = 'unicast' | 'unspecified' | 'broadcast' | 'multicast' | 'linkLocal' | 'loopback' | 'carrierGradeNat' | 'private' | 'reserved';\n type IPv6Range = 'unicast' | 'unspecified' | 'linkLocal' | 'multicast' | 'loopback' | 'uniqueLocal' | 'ipv4Mapped' | 'rfc6145' | 'rfc6052' | '6to4' | 'teredo' | 'reserved';\n\n interface RangeList<T> {\n [name: string]: [T, number] | [T, number][];\n }\n\n // Common methods/properties for IPv4 and IPv6 classes.\n class IP {\n prefixLengthFromSubnetMask(): number | null;\n toByteArray(): number[];\n toNormalizedString(): string;\n toString(): string;\n }\n\n namespace Address {\n export function isValid(addr: string): boolean;\n export function fromByteArray(bytes: number[]): IPv4 | IPv6;\n export function parse(addr: string): IPv4 | IPv6;\n export function parseCIDR(mask: string): [IPv4 | IPv6, number];\n export function process(addr: string): IPv4 | IPv6;\n export function subnetMatch(addr: IPv4, rangeList: RangeList<IPv4>, defaultName?: string): string;\n export function subnetMatch(addr: IPv6, rangeList: RangeList<IPv6>, defaultName?: string): string;\n\n export class IPv4 extends IP {\n static broadcastAddressFromCIDR(addr: string): IPv4;\n static isIPv4(addr: string): boolean;\n static isValidFourPartDecimal(addr: string): boolean;\n static isValid(addr: string): boolean;\n static networkAddressFromCIDR(addr: string): IPv4;\n static parse(addr: string): IPv4;\n static parseCIDR(addr: string): [IPv4, number];\n static subnetMaskFromPrefixLength(prefix: number): IPv4;\n constructor(octets: number[]);\n octets: number[]\n\n kind(): 'ipv4';\n match(addr: IPv4, bits: number): boolean;\n match(mask: [IPv4, number]): boolean;\n range(): IPv4Range;\n subnetMatch(rangeList: RangeList<IPv4>, defaultName?: string): string;\n toIPv4MappedAddress(): IPv6;\n }\n\n export class IPv6 extends IP {\n static broadcastAddressFromCIDR(addr: string): IPv6;\n static isIPv6(addr: string): boolean;\n static isValid(addr: string): boolean;\n static parse(addr: string): IPv6;\n static parseCIDR(addr: string): [IPv6, number];\n static subnetMaskFromPrefixLength(prefix: number): IPv6;\n constructor(parts: number[]);\n parts: number[]\n zoneId?: string\n\n isIPv4MappedAddress(): boolean;\n kind(): 'ipv6';\n match(addr: IPv6, bits: number): boolean;\n match(mask: [IPv6, number]): boolean;\n range(): IPv6Range;\n subnetMatch(rangeList: RangeList<IPv6>, defaultName?: string): string;\n toIPv4Address(): IPv4;\n }\n }\n\n export = Address;\n}\n",
|
|
13275
13270
|
"node_modules/ipaddr.js/package.json": "{\n \"name\": \"ipaddr.js\",\n \"description\": \"A library for manipulating IPv4 and IPv6 addresses in JavaScript.\",\n \"version\": \"1.9.1\",\n \"author\": \"whitequark <whitequark@whitequark.org>\",\n \"directories\": {\n \"lib\": \"./lib\"\n },\n \"dependencies\": {},\n \"devDependencies\": {\n \"coffee-script\": \"~1.12.6\",\n \"nodeunit\": \"^0.11.3\",\n \"uglify-js\": \"~3.0.19\"\n },\n \"scripts\": {\n \"test\": \"cake build test\"\n },\n \"files\": [\n \"lib/\",\n \"LICENSE\",\n \"ipaddr.min.js\"\n ],\n \"keywords\": [\n \"ip\",\n \"ipv4\",\n \"ipv6\"\n ],\n \"repository\": \"git://github.com/whitequark/ipaddr.js\",\n \"main\": \"./lib/ipaddr.js\",\n \"engines\": {\n \"node\": \">= 0.10\"\n },\n \"license\": \"MIT\",\n \"types\": \"./lib/ipaddr.js.d.ts\"\n}\n",
|
|
13276
13271
|
"node_modules/is-arrayish/package.json": "{\n \"name\": \"is-arrayish\",\n \"description\": \"Determines if an object can be used as an array\",\n \"version\": \"0.2.1\",\n \"author\": \"Qix (http://github.com/qix-)\",\n \"keywords\": [\n \"is\",\n \"array\",\n \"duck\",\n \"type\",\n \"arrayish\",\n \"similar\",\n \"proto\",\n \"prototype\",\n \"type\"\n ],\n \"license\": \"MIT\",\n \"scripts\": {\n \"pretest\": \"xo\",\n \"test\": \"mocha --compilers coffee:coffee-script/register\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/qix-/node-is-arrayish.git\"\n },\n \"devDependencies\": {\n \"coffee-script\": \"^1.9.3\",\n \"coveralls\": \"^2.11.2\",\n \"istanbul\": \"^0.3.17\",\n \"mocha\": \"^2.2.5\",\n \"should\": \"^7.0.1\",\n \"xo\": \"^0.6.1\"\n }\n}\n",
|
|
@@ -15065,7 +15060,7 @@
|
|
|
15065
15060
|
"node_modules/typia/lib/utils/ProtobufNameEncoder.d.ts": "export declare namespace ProtobufNameEncoder {\n const encode: (str: string) => string;\n const decode: (str: string) => string;\n}\n",
|
|
15066
15061
|
"node_modules/typia/lib/utils/Singleton.d.ts": "export declare class Singleton<T, Args extends any[] = []> {\n private readonly closure_;\n private value_;\n constructor(closure: (...args: Args) => T);\n get(...args: Args): T;\n}\n",
|
|
15067
15062
|
"node_modules/typia/lib/utils/StringUtil.d.ts": "export declare namespace StringUtil {\n const capitalize: (str: string) => string;\n const escapeDuplicate: (props: {\n keep: string[];\n input: string;\n escape?: (str: string) => string;\n }) => string;\n}\n",
|
|
15068
|
-
"node_modules/typia/package.json": "{\n \"name\": \"typia\",\n \"version\": \"9.
|
|
15063
|
+
"node_modules/typia/package.json": "{\n \"name\": \"typia\",\n \"version\": \"9.5.0\",\n \"description\": \"Superfast runtime validators with only one line\",\n \"main\": \"lib/index.js\",\n \"typings\": \"lib/index.d.ts\",\n \"module\": \"lib/index.mjs\",\n \"bin\": {\n \"typia\": \"./lib/executable/typia.js\"\n },\n \"tsp\": {\n \"tscOptions\": {\n \"parseAllJsDoc\": true\n }\n },\n \"scripts\": {\n \"test\": \"ts-node deploy --tag test\",\n \"test:template\": \"npm run --tag test --template\",\n \"-------------------------------------------------\": \"\",\n \"build\": \"rimraf lib && tsc && rollup -c\",\n \"dev\": \"rimraf lib && tsc --watch\",\n \"dev:errors\": \"tsc --project tsconfig.errors.json --watch\",\n \"eslint\": \"eslint\",\n \"eslint:fix\": \"eslint --fix\",\n \"prettier\": \"prettier src --check\",\n \"prettier:fix\": \"prettier src --write\",\n \"------------------------------------------------\": \"\",\n \"package:latest\": \"ts-node deploy --tag latest\",\n \"package:next\": \"ts-node deploy --tag next\",\n \"package:patch\": \"ts-node deploy --tag patch\",\n \"package:tgz\": \"ts-node deploy/tgz.ts\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/typia\"\n },\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/typia/issues\"\n },\n \"homepage\": \"https://typia.io\",\n \"dependencies\": {\n \"@samchon/openapi\": \"^4.5.0\",\n \"@standard-schema/spec\": \"^1.0.0\",\n \"commander\": \"^10.0.0\",\n \"comment-json\": \"^4.2.3\",\n \"inquirer\": \"^8.2.5\",\n \"package-manager-detector\": \"^0.2.0\",\n \"randexp\": \"^0.5.3\"\n },\n \"peerDependencies\": {\n \"typescript\": \">=4.8.0 <5.9.0\"\n },\n \"devDependencies\": {\n \"@rollup/plugin-commonjs\": \"^26.0.1\",\n \"@rollup/plugin-node-resolve\": \"^15.2.3\",\n \"@rollup/plugin-typescript\": \"^11.1.6\",\n \"@trivago/prettier-plugin-sort-imports\": \"^4.3.0\",\n \"@types/inquirer\": \"^8.2.5\",\n \"@types/node\": \"^18.15.12\",\n \"@types/ts-expose-internals\": \"npm:ts-expose-internals@5.5.4\",\n \"@typescript-eslint/eslint-plugin\": \"^8.1.0\",\n \"@typescript-eslint/parser\": \"^8.1.0\",\n \"chalk\": \"^4.0.0\",\n \"eslint-plugin-deprecation\": \"^3.0.0\",\n \"prettier\": \"^3.2.5\",\n \"rimraf\": \"^5.0.5\",\n \"rollup\": \"^4.18.0\",\n \"rollup-plugin-auto-external\": \"^2.0.0\",\n \"rollup-plugin-node-externals\": \"^8.0.0\",\n \"suppress-warnings\": \"^1.0.2\",\n \"tinyglobby\": \"^0.2.12\",\n \"ts-node\": \"^10.9.2\",\n \"typescript\": \"~5.8.3\"\n },\n \"sideEffects\": false,\n \"files\": [\n \"LICENSE\",\n \"README.md\",\n \"package.json\",\n \"lib\",\n \"src\"\n ],\n \"keywords\": [\n \"fast\",\n \"json\",\n \"stringify\",\n \"typescript\",\n \"transform\",\n \"ajv\",\n \"io-ts\",\n \"zod\",\n \"schema\",\n \"json-schema\",\n \"generator\",\n \"assert\",\n \"clone\",\n \"is\",\n \"validate\",\n \"equal\",\n \"runtime\",\n \"type\",\n \"typebox\",\n \"checker\",\n \"validator\",\n \"safe\",\n \"parse\",\n \"prune\",\n \"random\",\n \"protobuf\",\n \"llm\",\n \"llm-function-calling\",\n \"structured-output\",\n \"openai\",\n \"chatgpt\",\n \"claude\",\n \"gemini\",\n \"llama\"\n ]\n}",
|
|
15069
15064
|
"node_modules/uid/index.d.ts": "/**\n * Produce a UID of desired length.\n * @NOTE Relies on a hexadecimal alphabet (A-E, 0-9).\n * @param {number} [length] Defaults to `11`\n */\nexport function uid(length?: number): string;\n",
|
|
15070
15065
|
"node_modules/uid/package.json": "{\n \"name\": \"uid\",\n \"version\": \"2.0.2\",\n \"repository\": \"lukeed/uid\",\n \"description\": \"A tiny (130B to 205B) and fast utility to randomize unique IDs of fixed length\",\n \"unpkg\": \"dist/index.min.js\",\n \"module\": \"dist/index.mjs\",\n \"main\": \"dist/index.js\",\n \"types\": \"index.d.ts\",\n \"license\": \"MIT\",\n \"author\": {\n \"name\": \"Luke Edwards\",\n \"email\": \"luke.edwards05@gmail.com\",\n \"url\": \"https://lukeed.com\"\n },\n \"engines\": {\n \"node\": \">=8\"\n },\n \"scripts\": {\n \"build\": \"bundt\",\n \"test\": \"uvu -r esm test -i collisions\"\n },\n \"exports\": {\n \".\": {\n \"types\": \"./index.d.ts\",\n \"import\": \"./dist/index.mjs\",\n \"require\": \"./dist/index.js\"\n },\n \"./single\": {\n \"types\": \"./single/index.d.ts\",\n \"import\": \"./single/index.mjs\",\n \"require\": \"./single/index.js\"\n },\n \"./secure\": {\n \"types\": \"./secure/index.d.ts\",\n \"import\": \"./secure/index.mjs\",\n \"require\": \"./secure/index.js\"\n },\n \"./package.json\": \"./package.json\"\n },\n \"files\": [\n \"*.d.ts\",\n \"single\",\n \"secure\",\n \"dist\"\n ],\n \"keywords\": [\n \"id\",\n \"uid\",\n \"uuid\",\n \"random\",\n \"generate\",\n \"secure\",\n \"crypto\",\n \"foid\"\n ],\n \"modes\": {\n \"secure\": \"src/secure.js\",\n \"default\": \"src/index.js\",\n \"single\": \"src/single.js\"\n },\n \"dependencies\": {\n \"@lukeed/csprng\": \"^1.0.0\"\n },\n \"devDependencies\": {\n \"bundt\": \"1.1.1\",\n \"esm\": \"3.2.25\",\n \"uvu\": \"0.3.4\"\n }\n}\n",
|
|
15071
15066
|
"node_modules/uid/secure/index.d.ts": "/**\n * Produce a cryptographically secure (CSPRNG) UID of desired length using the current environment's `crypto` module.\n * @NOTE Relies on a hexadecimal alphabet (A-E, 0-9).\n * @param {number} [length] Defaults to `11`\n */\nexport function uid(length?: number): string;\n",
|
|
@@ -15081,6 +15076,7 @@
|
|
|
15081
15076
|
"node_modules/v8-compile-cache-lib/v8-compile-cache.d.ts": "export function install(opts?: {\n cacheDir?: string;\n prefix?: string;\n}): {\n uninstall(): void;\n} | undefined;\nx",
|
|
15082
15077
|
"node_modules/vary/package.json": "{\n \"name\": \"vary\",\n \"description\": \"Manipulate the HTTP Vary header\",\n \"version\": \"1.1.2\",\n \"author\": \"Douglas Christopher Wilson <doug@somethingdoug.com>\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"http\",\n \"res\",\n \"vary\"\n ],\n \"repository\": \"jshttp/vary\",\n \"devDependencies\": {\n \"beautify-benchmark\": \"0.2.4\",\n \"benchmark\": \"2.1.4\",\n \"eslint\": \"3.19.0\",\n \"eslint-config-standard\": \"10.2.1\",\n \"eslint-plugin-import\": \"2.7.0\",\n \"eslint-plugin-markdown\": \"1.0.0-beta.6\",\n \"eslint-plugin-node\": \"5.1.1\",\n \"eslint-plugin-promise\": \"3.5.0\",\n \"eslint-plugin-standard\": \"3.0.1\",\n \"istanbul\": \"0.4.5\",\n \"mocha\": \"2.5.3\",\n \"supertest\": \"1.1.0\"\n },\n \"files\": [\n \"HISTORY.md\",\n \"LICENSE\",\n \"README.md\",\n \"index.js\"\n ],\n \"engines\": {\n \"node\": \">= 0.8\"\n },\n \"scripts\": {\n \"bench\": \"node benchmark/index.js\",\n \"lint\": \"eslint --plugin markdown --ext js,md .\",\n \"test\": \"mocha --reporter spec --bail --check-leaks test/\",\n \"test-cov\": \"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/\",\n \"test-travis\": \"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/\"\n }\n}\n",
|
|
15083
15078
|
"node_modules/wcwidth/package.json": "{\n \"name\": \"wcwidth\",\n \"version\": \"1.0.1\",\n \"description\": \"Port of C's wcwidth() and wcswidth()\",\n \"author\": \"Tim Oxley\",\n \"contributors\": [\n \"Woong Jun <woong.jun@gmail.com> (http://code.woong.org/)\"\n ],\n \"main\": \"index.js\",\n \"dependencies\": {\n \"defaults\": \"^1.0.3\"\n },\n \"devDependencies\": {\n \"tape\": \"^4.5.1\"\n },\n \"license\": \"MIT\",\n \"keywords\": [\n \"wide character\",\n \"wc\",\n \"wide character string\",\n \"wcs\",\n \"terminal\",\n \"width\",\n \"wcwidth\",\n \"wcswidth\"\n ],\n \"directories\": {\n \"doc\": \"docs\",\n \"test\": \"test\"\n },\n \"scripts\": {\n \"test\": \"tape test/*.js\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git+https://github.com/timoxley/wcwidth.git\"\n },\n \"bugs\": {\n \"url\": \"https://github.com/timoxley/wcwidth/issues\"\n },\n \"homepage\": \"https://github.com/timoxley/wcwidth#readme\"\n}\n",
|
|
15079
|
+
"node_modules/wrap-ansi/package.json": "{\n\t\"name\": \"wrap-ansi\",\n\t\"version\": \"7.0.0\",\n\t\"description\": \"Wordwrap a string with ANSI escape codes\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"chalk/wrap-ansi\",\n\t\"funding\": \"https://github.com/chalk/wrap-ansi?sponsor=1\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"https://sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=10\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && nyc ava\"\n\t},\n\t\"files\": [\n\t\t\"index.js\"\n\t],\n\t\"keywords\": [\n\t\t\"wrap\",\n\t\t\"break\",\n\t\t\"wordwrap\",\n\t\t\"wordbreak\",\n\t\t\"linewrap\",\n\t\t\"ansi\",\n\t\t\"styles\",\n\t\t\"color\",\n\t\t\"colour\",\n\t\t\"colors\",\n\t\t\"terminal\",\n\t\t\"console\",\n\t\t\"cli\",\n\t\t\"string\",\n\t\t\"tty\",\n\t\t\"escape\",\n\t\t\"formatting\",\n\t\t\"rgb\",\n\t\t\"256\",\n\t\t\"shell\",\n\t\t\"xterm\",\n\t\t\"log\",\n\t\t\"logging\",\n\t\t\"command-line\",\n\t\t\"text\"\n\t],\n\t\"dependencies\": {\n\t\t\"ansi-styles\": \"^4.0.0\",\n\t\t\"string-width\": \"^4.1.0\",\n\t\t\"strip-ansi\": \"^6.0.0\"\n\t},\n\t\"devDependencies\": {\n\t\t\"ava\": \"^2.1.0\",\n\t\t\"chalk\": \"^4.0.0\",\n\t\t\"coveralls\": \"^3.0.3\",\n\t\t\"has-ansi\": \"^4.0.0\",\n\t\t\"nyc\": \"^15.0.1\",\n\t\t\"xo\": \"^0.29.1\"\n\t}\n}\n",
|
|
15084
15080
|
"node_modules/wrappy/package.json": "{\n \"name\": \"wrappy\",\n \"version\": \"1.0.2\",\n \"description\": \"Callback wrapping utility\",\n \"main\": \"wrappy.js\",\n \"files\": [\n \"wrappy.js\"\n ],\n \"directories\": {\n \"test\": \"test\"\n },\n \"dependencies\": {},\n \"devDependencies\": {\n \"tap\": \"^2.3.1\"\n },\n \"scripts\": {\n \"test\": \"tap --coverage test/*.js\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/npm/wrappy\"\n },\n \"author\": \"Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)\",\n \"license\": \"ISC\",\n \"bugs\": {\n \"url\": \"https://github.com/npm/wrappy/issues\"\n },\n \"homepage\": \"https://github.com/npm/wrappy\"\n}\n",
|
|
15085
15081
|
"node_modules/ws/package.json": "{\n \"name\": \"ws\",\n \"version\": \"7.5.10\",\n \"description\": \"Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js\",\n \"keywords\": [\n \"HyBi\",\n \"Push\",\n \"RFC-6455\",\n \"WebSocket\",\n \"WebSockets\",\n \"real-time\"\n ],\n \"homepage\": \"https://github.com/websockets/ws\",\n \"bugs\": \"https://github.com/websockets/ws/issues\",\n \"repository\": \"websockets/ws\",\n \"author\": \"Einar Otto Stangvik <einaros@gmail.com> (http://2x.io)\",\n \"license\": \"MIT\",\n \"main\": \"index.js\",\n \"browser\": \"browser.js\",\n \"engines\": {\n \"node\": \">=8.3.0\"\n },\n \"files\": [\n \"browser.js\",\n \"index.js\",\n \"lib/*.js\"\n ],\n \"scripts\": {\n \"test\": \"nyc --reporter=lcov --reporter=text mocha --throw-deprecation test/*.test.js\",\n \"integration\": \"mocha --throw-deprecation test/*.integration.js\",\n \"lint\": \"eslint --ignore-path .gitignore . && prettier --check --ignore-path .gitignore \\\"**/*.{json,md,yaml,yml}\\\"\"\n },\n \"peerDependencies\": {\n \"bufferutil\": \"^4.0.1\",\n \"utf-8-validate\": \"^5.0.2\"\n },\n \"peerDependenciesMeta\": {\n \"bufferutil\": {\n \"optional\": true\n },\n \"utf-8-validate\": {\n \"optional\": true\n }\n },\n \"devDependencies\": {\n \"benchmark\": \"^2.1.4\",\n \"bufferutil\": \"^4.0.1\",\n \"eslint\": \"^7.2.0\",\n \"eslint-config-prettier\": \"^8.1.0\",\n \"eslint-plugin-prettier\": \"^4.0.0\",\n \"mocha\": \"^7.0.0\",\n \"nyc\": \"^15.0.0\",\n \"prettier\": \"^2.0.5\",\n \"utf-8-validate\": \"^5.0.2\"\n }\n}\n",
|
|
15086
15082
|
"node_modules/xtend/package.json": "{\n \"name\": \"xtend\",\n \"version\": \"4.0.2\",\n \"description\": \"extend like a boss\",\n \"keywords\": [\n \"extend\",\n \"merge\",\n \"options\",\n \"opts\",\n \"object\",\n \"array\"\n ],\n \"author\": \"Raynos <raynos2@gmail.com>\",\n \"repository\": \"git://github.com/Raynos/xtend.git\",\n \"main\": \"immutable\",\n \"scripts\": {\n \"test\": \"node test\"\n },\n \"dependencies\": {},\n \"devDependencies\": {\n \"tape\": \"~1.1.0\"\n },\n \"homepage\": \"https://github.com/Raynos/xtend\",\n \"contributors\": [\n {\n \"name\": \"Jake Verbaten\"\n },\n {\n \"name\": \"Matt Esch\"\n }\n ],\n \"bugs\": {\n \"url\": \"https://github.com/Raynos/xtend/issues\",\n \"email\": \"raynos2@gmail.com\"\n },\n \"license\": \"MIT\",\n \"testling\": {\n \"files\": \"test.js\",\n \"browsers\": [\n \"ie/7..latest\",\n \"firefox/16..latest\",\n \"firefox/nightly\",\n \"chrome/22..latest\",\n \"chrome/canary\",\n \"opera/12..latest\",\n \"opera/next\",\n \"safari/5.1..latest\",\n \"ipad/6.0..latest\",\n \"iphone/6.0..latest\"\n ]\n },\n \"engines\": {\n \"node\": \">=0.4\"\n }\n}\n",
|