@point-hub/papi 0.1.6 → 0.1.7
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/src/app.d.ts +3 -0
- package/lib/src/app.d.ts.map +1 -0
- package/lib/src/app.spec.d.ts +2 -0
- package/lib/src/app.spec.d.ts.map +1 -0
- package/lib/src/console/commands/make-command/index.command.d.ts +6 -0
- package/lib/src/console/commands/make-command/index.command.d.ts.map +1 -0
- package/lib/src/console/commands/make-command/index.spec.d.ts +2 -0
- package/lib/src/console/commands/make-command/index.spec.d.ts.map +1 -0
- package/lib/src/console/commands/make-middleware/index.command.d.ts +8 -0
- package/lib/src/console/commands/make-middleware/index.command.d.ts.map +1 -0
- package/lib/src/console/commands/make-middleware/index.spec.d.ts +2 -0
- package/lib/src/console/commands/make-middleware/index.spec.d.ts.map +1 -0
- package/lib/src/console/index.d.ts +13 -0
- package/lib/src/console/index.d.ts.map +1 -0
- package/lib/src/console/index.spec.d.ts +2 -0
- package/lib/src/console/index.spec.d.ts.map +1 -0
- package/lib/src/database/connection.d.ts +32 -0
- package/lib/src/database/connection.d.ts.map +1 -0
- package/lib/src/database/mongodb/connection.d.ts +37 -0
- package/lib/src/database/mongodb/connection.d.ts.map +1 -0
- package/lib/src/database/mongodb/mongodb-error-handler.d.ts +10 -0
- package/lib/src/database/mongodb/mongodb-error-handler.d.ts.map +1 -0
- package/lib/src/database/mongodb/mongodb-helper.d.ts +35 -0
- package/lib/src/database/mongodb/mongodb-helper.d.ts.map +1 -0
- package/lib/src/database/mongodb/mongodb-querystring.d.ts +82 -0
- package/lib/src/database/mongodb/mongodb-querystring.d.ts.map +1 -0
- package/lib/src/database/mongodb/mongodb-querystring.spec.d.ts +2 -0
- package/lib/src/database/mongodb/mongodb-querystring.spec.d.ts.map +1 -0
- package/lib/src/index.d.ts +38 -0
- package/lib/src/index.d.ts.map +1 -0
- package/lib/src/server.d.ts +16 -0
- package/lib/src/server.d.ts.map +1 -0
- package/lib/src/server.spec.d.ts +2 -0
- package/lib/src/server.spec.d.ts.map +1 -0
- package/lib/stub/command/index.command.d.ts +6 -0
- package/lib/stub/command/index.command.d.ts.map +1 -0
- package/lib/stub/command/index.spec.d.ts +2 -0
- package/lib/stub/command/index.spec.d.ts.map +1 -0
- package/lib/stub/middleware/configurable.middleware.d.ts +3 -0
- package/lib/stub/middleware/configurable.middleware.d.ts.map +1 -0
- package/lib/stub/middleware/configurable.spec.d.ts +2 -0
- package/lib/stub/middleware/configurable.spec.d.ts.map +1 -0
- package/lib/stub/middleware/new.middleware.d.ts +3 -0
- package/lib/stub/middleware/new.middleware.d.ts.map +1 -0
- package/lib/stub/middleware/new.spec.d.ts +2 -0
- package/lib/stub/middleware/new.spec.d.ts.map +1 -0
- package/package.json +4 -5
- package/lib/index.d.ts +0 -318
- package/lib/index.tsbuildinfo +0 -1
- package/src/app.spec.ts +0 -8
- package/src/app.ts +0 -13
- package/src/console/commands/make-command/index.command.ts +0 -52
- package/src/console/commands/make-command/index.spec.ts +0 -58
- package/src/console/commands/make-middleware/index.command.ts +0 -86
- package/src/console/commands/make-middleware/index.spec.ts +0 -73
- package/src/console/index.spec.ts +0 -14
- package/src/console/index.ts +0 -23
- package/src/database/connection.ts +0 -78
- package/src/database/mongodb/connection.ts +0 -339
- package/src/database/mongodb/mongodb-error-handler.ts +0 -63
- package/src/database/mongodb/mongodb-helper.ts +0 -109
- package/src/database/mongodb/mongodb-querystring.spec.ts +0 -80
- package/src/database/mongodb/mongodb-querystring.ts +0 -143
- package/src/index.ts +0 -42
- package/src/server.spec.ts +0 -68
- package/src/server.ts +0 -49
- package/src/types/controller.d.ts +0 -18
- package/src/types/database.d.ts +0 -104
- package/src/types/use-case.d.ts +0 -3
package/lib/index.d.ts
DELETED
|
@@ -1,318 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
/// <reference types="node" />
|
|
3
|
-
/// <reference types="bun-types" />
|
|
4
|
-
declare module "build" { }
|
|
5
|
-
declare module "src/console/commands/make-command/index.command" {
|
|
6
|
-
import { BaseCommand } from '@point-hub/express-cli';
|
|
7
|
-
export default class MakeCommand extends BaseCommand {
|
|
8
|
-
constructor();
|
|
9
|
-
handle(): Promise<void>;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
declare module "src/console/commands/make-middleware/index.command" {
|
|
13
|
-
import { BaseCommand } from '@point-hub/express-cli';
|
|
14
|
-
export default class MakeMiddleware extends BaseCommand {
|
|
15
|
-
constructor();
|
|
16
|
-
handle(): Promise<void>;
|
|
17
|
-
private copyMiddleware;
|
|
18
|
-
private copyConfigureableMiddleware;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
declare module "src/console/index" {
|
|
22
|
-
import { ExpressCli } from '@point-hub/express-cli';
|
|
23
|
-
export class ConsoleKernel {
|
|
24
|
-
private command;
|
|
25
|
-
constructor(command: ExpressCli);
|
|
26
|
-
/**
|
|
27
|
-
* Register the commands for the application.
|
|
28
|
-
*
|
|
29
|
-
* @example
|
|
30
|
-
* this.command.register(new ExampleCommand());
|
|
31
|
-
*/
|
|
32
|
-
register(): Promise<void>;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
declare module "src/database/connection" {
|
|
36
|
-
export class DatabaseConnection implements IDatabase {
|
|
37
|
-
adapter: IDatabase;
|
|
38
|
-
session: unknown;
|
|
39
|
-
constructor(adapter: IDatabase);
|
|
40
|
-
open(): Promise<void>;
|
|
41
|
-
close(): Promise<void>;
|
|
42
|
-
database(name: string): this;
|
|
43
|
-
collection(name: string): this;
|
|
44
|
-
listCollections(): Promise<{
|
|
45
|
-
name: string;
|
|
46
|
-
}[]>;
|
|
47
|
-
startSession(): IClientSession;
|
|
48
|
-
endSession(): Promise<void>;
|
|
49
|
-
startTransaction(): void;
|
|
50
|
-
commitTransaction(): Promise<void>;
|
|
51
|
-
abortTransaction(): Promise<void>;
|
|
52
|
-
createIndex(name: string, spec: unknown, options?: unknown): Promise<void>;
|
|
53
|
-
createCollection(name: string, options?: unknown): Promise<void>;
|
|
54
|
-
dropCollection(name: string, options?: unknown): Promise<void>;
|
|
55
|
-
updateSchema(name: string, schema: unknown): Promise<void>;
|
|
56
|
-
create(document: IDocument, options?: unknown): Promise<ICreateOutput>;
|
|
57
|
-
createMany(documents: IDocument[], options?: unknown): Promise<ICreateManyOutput>;
|
|
58
|
-
retrieveAll(query: IQuery, options?: unknown): Promise<IRetrieveAllOutput>;
|
|
59
|
-
retrieve(_id: string, options?: unknown): Promise<IRetrieveOutput>;
|
|
60
|
-
update(_id: string, document: IDocument, options?: unknown): Promise<IUpdateOutput>;
|
|
61
|
-
updateMany(filter: IDocument, document: IDocument, options?: unknown): Promise<IUpdateManyOutput>;
|
|
62
|
-
delete(_id: string, options?: unknown): Promise<IDeleteOutput>;
|
|
63
|
-
deleteMany(_ids: string[], options?: unknown): Promise<IDeleteManyOutput>;
|
|
64
|
-
deleteAll(options?: unknown): Promise<IDeleteManyOutput>;
|
|
65
|
-
aggregate(pipeline: IPipeline[], query: IQuery, options?: unknown): Promise<IAggregateOutput>;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
declare module "src/database/mongodb/mongodb-helper" {
|
|
69
|
-
/**
|
|
70
|
-
* https://www.mongodb.com/docs/drivers/node/current/fundamentals/indexes/
|
|
71
|
-
* https://www.mongodb.com/docs/manual/reference/collation/
|
|
72
|
-
* https://www.mongodb.com/docs/manual/core/index-sparse/
|
|
73
|
-
* https://www.mongodb.com/docs/manual/core/index-partial/
|
|
74
|
-
*/
|
|
75
|
-
export class MongoDBHelper {
|
|
76
|
-
private db;
|
|
77
|
-
constructor(db: IDatabase);
|
|
78
|
-
/**
|
|
79
|
-
* Create unique column
|
|
80
|
-
*
|
|
81
|
-
* @example
|
|
82
|
-
* create unique attribute "name"
|
|
83
|
-
* createUnique(collection, {
|
|
84
|
-
* name: -1,
|
|
85
|
-
* })
|
|
86
|
-
*
|
|
87
|
-
* @example
|
|
88
|
-
* create unique attribute for multiple column "first_name" and "last_name"
|
|
89
|
-
* createUnique(collection, {
|
|
90
|
-
* firstName: -1,
|
|
91
|
-
* lastName: -1,
|
|
92
|
-
* })
|
|
93
|
-
*/
|
|
94
|
-
createUnique(collection: string, properties: object): Promise<void>;
|
|
95
|
-
/**
|
|
96
|
-
* Create unique if column is exists
|
|
97
|
-
*/
|
|
98
|
-
createUniqueIfNotNull(collection: string, properties: object): Promise<void>;
|
|
99
|
-
isExists(name: string): Promise<boolean>;
|
|
100
|
-
static stringToObjectId(val: any): any;
|
|
101
|
-
static objectIdToString(val: any): any;
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
declare module "src/database/mongodb/mongodb-querystring" {
|
|
105
|
-
import { SortDirection } from 'mongodb';
|
|
106
|
-
interface IFieldsObject {
|
|
107
|
-
[key: string]: number;
|
|
108
|
-
}
|
|
109
|
-
interface ISortObject {
|
|
110
|
-
[key: string]: SortDirection;
|
|
111
|
-
}
|
|
112
|
-
/**
|
|
113
|
-
* Parse query string to number
|
|
114
|
-
*
|
|
115
|
-
* @example
|
|
116
|
-
* page("10") // => 10
|
|
117
|
-
* page(10) // => 10
|
|
118
|
-
*/
|
|
119
|
-
export function page(page?: string | number): number;
|
|
120
|
-
/**
|
|
121
|
-
* Parse query string to number
|
|
122
|
-
*
|
|
123
|
-
* @example
|
|
124
|
-
* limit("10") // => 10
|
|
125
|
-
* limit(10) // => 10
|
|
126
|
-
*/
|
|
127
|
-
export function limit(pageSize?: string | number): number;
|
|
128
|
-
/**
|
|
129
|
-
* Skip number of data from page
|
|
130
|
-
*
|
|
131
|
-
* @example
|
|
132
|
-
* skip(1, 10) // => 0
|
|
133
|
-
* skip(2, 10) // => 10
|
|
134
|
-
* skip(3, 10) // => 20
|
|
135
|
-
*/
|
|
136
|
-
export function skip(currentPage: string | number, pageSize: string | number): number;
|
|
137
|
-
export function filter(filter: never): never;
|
|
138
|
-
/**
|
|
139
|
-
* Convert string param to mongodb field object
|
|
140
|
-
*
|
|
141
|
-
* @example
|
|
142
|
-
* fields("name, address") // => { name: 1, address: 1 }
|
|
143
|
-
*/
|
|
144
|
-
export function fields(fields?: string, excludeFields?: string[]): IFieldsObject;
|
|
145
|
-
/**
|
|
146
|
-
* Convert string to array
|
|
147
|
-
*
|
|
148
|
-
* @example
|
|
149
|
-
* convertStringToArray("name, address") // => ["name", "address"]
|
|
150
|
-
*/
|
|
151
|
-
export function convertStringToArray(fields: string): string[];
|
|
152
|
-
/**
|
|
153
|
-
* Convert array to mongodb field object
|
|
154
|
-
*
|
|
155
|
-
* @example
|
|
156
|
-
* convertArrayToObject(["name", "address"]) // => { name: 1, address: 1 }
|
|
157
|
-
* convertArrayToObject(["name", "address"], -1) // => { name: -1, address: -1 }
|
|
158
|
-
*/
|
|
159
|
-
export function convertArrayToObject(array: string[], value?: number): IFieldsObject;
|
|
160
|
-
/**
|
|
161
|
-
* Remove excluded fields
|
|
162
|
-
*
|
|
163
|
-
* @example
|
|
164
|
-
* ex: { password: 0 }
|
|
165
|
-
*/
|
|
166
|
-
export function filterExludeFields(obj: IFieldsObject, excludeFields: string[]): IFieldsObject;
|
|
167
|
-
/**
|
|
168
|
-
* Convert string param to mongodb sort object
|
|
169
|
-
*
|
|
170
|
-
* @example
|
|
171
|
-
* sort("name, -createdAt") // => { name: 1, createdAt: -1 }
|
|
172
|
-
*/
|
|
173
|
-
export function sort(fields: string): ISortObject;
|
|
174
|
-
const _default: {
|
|
175
|
-
page: typeof page;
|
|
176
|
-
limit: typeof limit;
|
|
177
|
-
skip: typeof skip;
|
|
178
|
-
sort: typeof sort;
|
|
179
|
-
fields: typeof fields;
|
|
180
|
-
filter: typeof filter;
|
|
181
|
-
filterExludeFields: typeof filterExludeFields;
|
|
182
|
-
convertStringToArray: typeof convertStringToArray;
|
|
183
|
-
convertArrayToObject: typeof convertArrayToObject;
|
|
184
|
-
};
|
|
185
|
-
export default _default;
|
|
186
|
-
}
|
|
187
|
-
declare module "src/database/mongodb/connection" {
|
|
188
|
-
import type { ClientSession, Collection, CollectionOptions, CreateIndexesOptions, Db, DbOptions, IndexSpecification } from 'mongodb';
|
|
189
|
-
import { MongoClient } from 'mongodb';
|
|
190
|
-
export class MongoDBConnection implements IDatabase {
|
|
191
|
-
databaseName: string;
|
|
192
|
-
client: MongoClient;
|
|
193
|
-
_database: Db | undefined;
|
|
194
|
-
_collection: Collection | undefined;
|
|
195
|
-
session: ClientSession | undefined;
|
|
196
|
-
constructor(connectionString: string, databaseName: string);
|
|
197
|
-
open(): Promise<void>;
|
|
198
|
-
close(): Promise<void>;
|
|
199
|
-
database(name: string, options?: DbOptions): this;
|
|
200
|
-
collection(name: string, options?: CollectionOptions): this;
|
|
201
|
-
listCollections(): Promise<{
|
|
202
|
-
name: string;
|
|
203
|
-
}[]>;
|
|
204
|
-
createIndex(name: string, spec: IndexSpecification, options: CreateIndexesOptions): Promise<void>;
|
|
205
|
-
updateSchema(name: string, schema: unknown): Promise<void>;
|
|
206
|
-
createCollection(name: string, options: any): Promise<void>;
|
|
207
|
-
dropCollection(name: string, options: any): Promise<void>;
|
|
208
|
-
startSession(): ClientSession;
|
|
209
|
-
endSession(): Promise<void>;
|
|
210
|
-
startTransaction(): void;
|
|
211
|
-
commitTransaction(): Promise<void>;
|
|
212
|
-
abortTransaction(): Promise<void>;
|
|
213
|
-
create(document: IDocument, options?: unknown): Promise<ICreateOutput>;
|
|
214
|
-
createMany(documents: IDocument[], options?: unknown): Promise<ICreateManyOutput>;
|
|
215
|
-
retrieveAll(query: IQuery, options?: any): Promise<IRetrieveAllOutput>;
|
|
216
|
-
retrieve(_id: string, options?: any): Promise<IRetrieveOutput>;
|
|
217
|
-
update(_id: string, document: IDocument, options?: any): Promise<IUpdateOutput>;
|
|
218
|
-
updateMany(filter: IDocument[], document: IDocument[], options?: any): Promise<IUpdateManyOutput>;
|
|
219
|
-
delete(_id: string, options?: any): Promise<IDeleteOutput>;
|
|
220
|
-
deleteMany(_ids: string[], options?: any): Promise<IDeleteManyOutput>;
|
|
221
|
-
deleteAll(options?: any): Promise<IDeleteManyOutput>;
|
|
222
|
-
aggregate(pipeline: IPipeline[], query: IQuery, options?: any): Promise<IAggregateOutput>;
|
|
223
|
-
}
|
|
224
|
-
}
|
|
225
|
-
declare module "src/database/mongodb/mongodb-error-handler" {
|
|
226
|
-
import { BaseError, type IError } from '@point-hub/express-error-handler';
|
|
227
|
-
import { MongoServerError } from 'mongodb';
|
|
228
|
-
export function handleSchemaValidation(err: MongoServerError, error: IError): void;
|
|
229
|
-
export function handleUniqueValidation(err: MongoServerError, error: IError): void;
|
|
230
|
-
export class MongoErrorHandler extends BaseError {
|
|
231
|
-
constructor(err: MongoServerError);
|
|
232
|
-
get isOperational(): boolean;
|
|
233
|
-
get name(): string;
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
|
-
declare module "src/server" {
|
|
237
|
-
import { Express } from 'express';
|
|
238
|
-
import { Server as HttpServer } from 'http';
|
|
239
|
-
export class Server {
|
|
240
|
-
app: Express;
|
|
241
|
-
server: HttpServer | null;
|
|
242
|
-
constructor(app: Express);
|
|
243
|
-
listen(port: number, hostname?: string): Promise<unknown>;
|
|
244
|
-
start(port: number, hostname?: string): Promise<void>;
|
|
245
|
-
stop(): void;
|
|
246
|
-
get host(): string;
|
|
247
|
-
get port(): number;
|
|
248
|
-
get url(): string;
|
|
249
|
-
}
|
|
250
|
-
}
|
|
251
|
-
declare module "src/index" {
|
|
252
|
-
import { BaseCommand } from '@point-hub/express-cli';
|
|
253
|
-
import { ApiError, BaseError, errorHandlerMiddleware, find, invalidPathMiddleware } from '@point-hub/express-error-handler';
|
|
254
|
-
import { MongoServerError } from 'mongodb';
|
|
255
|
-
import { ConsoleKernel } from "src/console/index";
|
|
256
|
-
import { DatabaseConnection } from "src/database/connection";
|
|
257
|
-
import { MongoDBConnection } from "src/database/mongodb/connection";
|
|
258
|
-
import { MongoErrorHandler } from "src/database/mongodb/mongodb-error-handler";
|
|
259
|
-
import { MongoDBHelper } from "src/database/mongodb/mongodb-helper";
|
|
260
|
-
export const stubDir: string;
|
|
261
|
-
export { ExpressCli as BaseConsoleCli } from '@point-hub/express-cli';
|
|
262
|
-
export const BaseConsoleCommand: typeof BaseCommand;
|
|
263
|
-
export const BaseConsoleKernel: typeof ConsoleKernel;
|
|
264
|
-
export const BaseDatabaseConnection: typeof DatabaseConnection;
|
|
265
|
-
export const BaseMongoDBConnection: typeof MongoDBConnection;
|
|
266
|
-
export const BaseMongoDBHelper: typeof MongoDBHelper;
|
|
267
|
-
export const BaseMongoDBQuerystring: {
|
|
268
|
-
page: typeof import("src/database/mongodb/mongodb-querystring").page;
|
|
269
|
-
limit: typeof import("src/database/mongodb/mongodb-querystring").limit;
|
|
270
|
-
skip: typeof import("src/database/mongodb/mongodb-querystring").skip;
|
|
271
|
-
sort: typeof import("src/database/mongodb/mongodb-querystring").sort;
|
|
272
|
-
fields: typeof import("src/database/mongodb/mongodb-querystring").fields;
|
|
273
|
-
filter: typeof import("src/database/mongodb/mongodb-querystring").filter;
|
|
274
|
-
filterExludeFields: typeof import("src/database/mongodb/mongodb-querystring").filterExludeFields;
|
|
275
|
-
convertStringToArray: typeof import("src/database/mongodb/mongodb-querystring").convertStringToArray;
|
|
276
|
-
convertArrayToObject: typeof import("src/database/mongodb/mongodb-querystring").convertArrayToObject;
|
|
277
|
-
};
|
|
278
|
-
export const BaseMongoServerError: typeof MongoServerError;
|
|
279
|
-
export const BaseMongoErrorHandler: typeof MongoErrorHandler;
|
|
280
|
-
export const BaseErrorHandler: {
|
|
281
|
-
ApiError: typeof ApiError;
|
|
282
|
-
BaseError: typeof BaseError;
|
|
283
|
-
isTrustedError: (err: Error) => boolean;
|
|
284
|
-
getHttpError: typeof find;
|
|
285
|
-
errorHandlerMiddleware: typeof errorHandlerMiddleware;
|
|
286
|
-
invalidPathMiddleware: typeof invalidPathMiddleware;
|
|
287
|
-
};
|
|
288
|
-
export { Server as BaseServer } from "src/server";
|
|
289
|
-
}
|
|
290
|
-
declare module "cli" { }
|
|
291
|
-
declare module "src/app" {
|
|
292
|
-
import express from 'express';
|
|
293
|
-
export function createApp(): Promise<express.Express>;
|
|
294
|
-
}
|
|
295
|
-
declare module "src/app.spec" { }
|
|
296
|
-
declare module "src/server.spec" { }
|
|
297
|
-
declare module "src/console/index.spec" { }
|
|
298
|
-
declare module "src/console/commands/make-command/index.spec" { }
|
|
299
|
-
declare module "src/console/commands/make-middleware/index.spec" { }
|
|
300
|
-
declare module "src/database/mongodb/mongodb-querystring.spec" { }
|
|
301
|
-
declare module "stub/command/index.command" {
|
|
302
|
-
import { BaseCommand } from '@point-hub/express-cli';
|
|
303
|
-
export default class NewCommand extends BaseCommand {
|
|
304
|
-
constructor();
|
|
305
|
-
handle(): Promise<void>;
|
|
306
|
-
}
|
|
307
|
-
}
|
|
308
|
-
declare module "stub/command/index.spec" { }
|
|
309
|
-
declare module "stub/middleware/configurable.middleware" {
|
|
310
|
-
import { NextFunction, Request, Response } from 'express';
|
|
311
|
-
export default function newMiddleware<T>(options?: T): (req: Request, res: Response, next: NextFunction) => void;
|
|
312
|
-
}
|
|
313
|
-
declare module "stub/middleware/configurable.spec" { }
|
|
314
|
-
declare module "stub/middleware/new.middleware" {
|
|
315
|
-
import { NextFunction, Request, Response } from 'express';
|
|
316
|
-
export default function (req: Request, res: Response, next: NextFunction): void;
|
|
317
|
-
}
|
|
318
|
-
declare module "stub/middleware/new.spec" { }
|
package/lib/index.tsbuildinfo
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"bundle":{"commonSourceDirectory":"..","sourceFiles":["../build.ts","../package.json","../src/console/commands/make-command/index.command.ts","../src/console/commands/make-middleware/index.command.ts","../src/console/index.ts","../src/database/connection.ts","../src/database/mongodb/mongodb-helper.ts","../src/database/mongodb/mongodb-querystring.ts","../src/database/mongodb/connection.ts","../src/database/mongodb/mongodb-error-handler.ts","../src/server.ts","../src/index.ts","../cli.ts","../src/app.ts","../src/app.spec.ts","../src/server.spec.ts","../src/console/index.spec.ts","../src/console/commands/make-command/index.spec.ts","../src/console/commands/make-middleware/index.spec.ts","../src/database/mongodb/mongodb-querystring.spec.ts","../stub/command/index.command.ts","../stub/command/index.spec.ts","../stub/middleware/configurable.middleware.ts","../stub/middleware/configurable.spec.ts","../stub/middleware/new.middleware.ts","../stub/middleware/new.spec.ts"],"dts":{"sections":[{"pos":20,"end":50,"kind":"type","data":"node"},{"pos":51,"end":86,"kind":"type","data":"bun-types"},{"pos":87,"end":13471,"kind":"text"}],"hash":"d99848e9b93d5513b29df7f91b8c238e57c36f7bf022672a89dd79cc246bafcc"}},"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../build.ts","../node_modules/@point-hub/express-cli/lib/command.d.ts","../node_modules/@point-hub/express-cli/lib/base-command.d.ts","../node_modules/@point-hub/express-cli/lib/argument.d.ts","../node_modules/@point-hub/express-cli/lib/help.d.ts","../node_modules/arg/index.d.ts","../node_modules/@point-hub/express-cli/lib/option.d.ts","../node_modules/@point-hub/express-cli/lib/prompt.d.ts","../node_modules/@point-hub/express-cli/lib/color.d.ts","../node_modules/cli-table3/index.d.ts","../node_modules/@point-hub/express-cli/lib/table.d.ts","../node_modules/@point-hub/express-cli/lib/index.d.ts","../package.json","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/send/node_modules/@types/mime/index.d.ts","../node_modules/@types/send/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/http-errors/index.d.ts","../node_modules/@types/mime/mime.d.ts","../node_modules/@types/mime/index.d.ts","../node_modules/@types/serve-static/index.d.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/body-parser/index.d.ts","../node_modules/@types/express/index.d.ts","../node_modules/@point-hub/express-error-handler/lib/invalid-path-middleware.d.ts","../node_modules/@point-hub/express-error-handler/lib/error-handler-middleware.d.ts","../node_modules/@point-hub/express-error-handler/lib/base-error.d.ts","../node_modules/@point-hub/express-error-handler/lib/http-status.d.ts","../node_modules/@point-hub/express-error-handler/lib/api-error.d.ts","../node_modules/@point-hub/express-error-handler/lib/index.d.ts","../node_modules/bson/bson.d.ts","../node_modules/mongodb/mongodb.d.ts","../node_modules/@point-hub/express-utils/lib/file/search/index.d.ts","../node_modules/@point-hub/express-utils/lib/file/copy/index.d.ts","../node_modules/@point-hub/express-utils/lib/file/exists/index.d.ts","../node_modules/@point-hub/express-utils/lib/object/clean/index.d.ts","../node_modules/@point-hub/express-utils/lib/object/keys/index.d.ts","../node_modules/@point-hub/express-utils/lib/object/own-property/index.d.ts","../node_modules/@point-hub/express-utils/lib/object/dot-notation/index.d.ts","../node_modules/@point-hub/express-utils/lib/response/paginate/index.d.ts","../node_modules/@point-hub/express-utils/lib/response/error/index.d.ts","../node_modules/@point-hub/express-utils/lib/string/trim/index.d.ts","../node_modules/@point-hub/express-utils/lib/string/capitalize/index.d.ts","../node_modules/@point-hub/express-utils/lib/string/camel-case/index.d.ts","../node_modules/@point-hub/express-utils/lib/string/pascal-case/index.d.ts","../node_modules/@point-hub/express-utils/lib/string/kebab-case/index.d.ts","../node_modules/@point-hub/express-utils/lib/string/snake-case/index.d.ts","../node_modules/@point-hub/express-utils/lib/string/remove-spaces/index.d.ts","../node_modules/@point-hub/express-utils/lib/type/is-array/index.d.ts","../node_modules/@point-hub/express-utils/lib/type/is-boolean/index.d.ts","../node_modules/@point-hub/express-utils/lib/type/is-date/index.d.ts","../node_modules/@point-hub/express-utils/lib/type/is-function/index.d.ts","../node_modules/@point-hub/express-utils/lib/type/is-number/index.d.ts","../node_modules/@point-hub/express-utils/lib/type/is-object/index.d.ts","../node_modules/@point-hub/express-utils/lib/type/is-string/index.d.ts","../node_modules/@point-hub/express-utils/lib/type/is-type/index.d.ts","../node_modules/@point-hub/express-utils/lib/value/is-empty/index.d.ts","../node_modules/@point-hub/express-utils/lib/value/is-nil/index.d.ts","../node_modules/@point-hub/express-utils/lib/value/is-null/index.d.ts","../node_modules/@point-hub/express-utils/lib/value/is-undefined/index.d.ts","../node_modules/@point-hub/express-utils/lib/index.d.ts","../src/console/commands/make-command/index.command.ts","../src/console/commands/make-middleware/index.command.ts","../src/console/index.ts","../src/database/connection.ts","../node_modules/date-fns/locale/types.d.ts","../node_modules/date-fns/fp/types.d.ts","../node_modules/date-fns/types.d.ts","../node_modules/date-fns/add.d.ts","../node_modules/date-fns/addbusinessdays.d.ts","../node_modules/date-fns/adddays.d.ts","../node_modules/date-fns/addhours.d.ts","../node_modules/date-fns/addisoweekyears.d.ts","../node_modules/date-fns/addmilliseconds.d.ts","../node_modules/date-fns/addminutes.d.ts","../node_modules/date-fns/addmonths.d.ts","../node_modules/date-fns/addquarters.d.ts","../node_modules/date-fns/addseconds.d.ts","../node_modules/date-fns/addweeks.d.ts","../node_modules/date-fns/addyears.d.ts","../node_modules/date-fns/areintervalsoverlapping.d.ts","../node_modules/date-fns/clamp.d.ts","../node_modules/date-fns/closestindexto.d.ts","../node_modules/date-fns/closestto.d.ts","../node_modules/date-fns/compareasc.d.ts","../node_modules/date-fns/comparedesc.d.ts","../node_modules/date-fns/constructfrom.d.ts","../node_modules/date-fns/daystoweeks.d.ts","../node_modules/date-fns/differenceinbusinessdays.d.ts","../node_modules/date-fns/differenceincalendardays.d.ts","../node_modules/date-fns/differenceincalendarisoweekyears.d.ts","../node_modules/date-fns/differenceincalendarisoweeks.d.ts","../node_modules/date-fns/differenceincalendarmonths.d.ts","../node_modules/date-fns/differenceincalendarquarters.d.ts","../node_modules/date-fns/differenceincalendarweeks.d.ts","../node_modules/date-fns/differenceincalendaryears.d.ts","../node_modules/date-fns/differenceindays.d.ts","../node_modules/date-fns/differenceinhours.d.ts","../node_modules/date-fns/differenceinisoweekyears.d.ts","../node_modules/date-fns/differenceinmilliseconds.d.ts","../node_modules/date-fns/differenceinminutes.d.ts","../node_modules/date-fns/differenceinmonths.d.ts","../node_modules/date-fns/differenceinquarters.d.ts","../node_modules/date-fns/differenceinseconds.d.ts","../node_modules/date-fns/differenceinweeks.d.ts","../node_modules/date-fns/differenceinyears.d.ts","../node_modules/date-fns/eachdayofinterval.d.ts","../node_modules/date-fns/eachhourofinterval.d.ts","../node_modules/date-fns/eachminuteofinterval.d.ts","../node_modules/date-fns/eachmonthofinterval.d.ts","../node_modules/date-fns/eachquarterofinterval.d.ts","../node_modules/date-fns/eachweekofinterval.d.ts","../node_modules/date-fns/eachweekendofinterval.d.ts","../node_modules/date-fns/eachweekendofmonth.d.ts","../node_modules/date-fns/eachweekendofyear.d.ts","../node_modules/date-fns/eachyearofinterval.d.ts","../node_modules/date-fns/endofday.d.ts","../node_modules/date-fns/endofdecade.d.ts","../node_modules/date-fns/endofhour.d.ts","../node_modules/date-fns/endofisoweek.d.ts","../node_modules/date-fns/endofisoweekyear.d.ts","../node_modules/date-fns/endofminute.d.ts","../node_modules/date-fns/endofmonth.d.ts","../node_modules/date-fns/endofquarter.d.ts","../node_modules/date-fns/endofsecond.d.ts","../node_modules/date-fns/endoftoday.d.ts","../node_modules/date-fns/endoftomorrow.d.ts","../node_modules/date-fns/endofweek.d.ts","../node_modules/date-fns/endofyear.d.ts","../node_modules/date-fns/endofyesterday.d.ts","../node_modules/date-fns/format.d.ts","../node_modules/date-fns/formatdistance.d.ts","../node_modules/date-fns/formatdistancestrict.d.ts","../node_modules/date-fns/formatdistancetonow.d.ts","../node_modules/date-fns/formatdistancetonowstrict.d.ts","../node_modules/date-fns/formatduration.d.ts","../node_modules/date-fns/formatiso.d.ts","../node_modules/date-fns/formatiso9075.d.ts","../node_modules/date-fns/formatisoduration.d.ts","../node_modules/date-fns/formatrfc3339.d.ts","../node_modules/date-fns/formatrfc7231.d.ts","../node_modules/date-fns/formatrelative.d.ts","../node_modules/date-fns/fromunixtime.d.ts","../node_modules/date-fns/getdate.d.ts","../node_modules/date-fns/getday.d.ts","../node_modules/date-fns/getdayofyear.d.ts","../node_modules/date-fns/getdaysinmonth.d.ts","../node_modules/date-fns/getdaysinyear.d.ts","../node_modules/date-fns/getdecade.d.ts","../node_modules/date-fns/_lib/defaultoptions.d.ts","../node_modules/date-fns/getdefaultoptions.d.ts","../node_modules/date-fns/gethours.d.ts","../node_modules/date-fns/getisoday.d.ts","../node_modules/date-fns/getisoweek.d.ts","../node_modules/date-fns/getisoweekyear.d.ts","../node_modules/date-fns/getisoweeksinyear.d.ts","../node_modules/date-fns/getmilliseconds.d.ts","../node_modules/date-fns/getminutes.d.ts","../node_modules/date-fns/getmonth.d.ts","../node_modules/date-fns/getoverlappingdaysinintervals.d.ts","../node_modules/date-fns/getquarter.d.ts","../node_modules/date-fns/getseconds.d.ts","../node_modules/date-fns/gettime.d.ts","../node_modules/date-fns/getunixtime.d.ts","../node_modules/date-fns/getweek.d.ts","../node_modules/date-fns/getweekofmonth.d.ts","../node_modules/date-fns/getweekyear.d.ts","../node_modules/date-fns/getweeksinmonth.d.ts","../node_modules/date-fns/getyear.d.ts","../node_modules/date-fns/hourstomilliseconds.d.ts","../node_modules/date-fns/hourstominutes.d.ts","../node_modules/date-fns/hourstoseconds.d.ts","../node_modules/date-fns/interval.d.ts","../node_modules/date-fns/intervaltoduration.d.ts","../node_modules/date-fns/intlformat.d.ts","../node_modules/date-fns/intlformatdistance.d.ts","../node_modules/date-fns/isafter.d.ts","../node_modules/date-fns/isbefore.d.ts","../node_modules/date-fns/isdate.d.ts","../node_modules/date-fns/isequal.d.ts","../node_modules/date-fns/isexists.d.ts","../node_modules/date-fns/isfirstdayofmonth.d.ts","../node_modules/date-fns/isfriday.d.ts","../node_modules/date-fns/isfuture.d.ts","../node_modules/date-fns/islastdayofmonth.d.ts","../node_modules/date-fns/isleapyear.d.ts","../node_modules/date-fns/ismatch.d.ts","../node_modules/date-fns/ismonday.d.ts","../node_modules/date-fns/ispast.d.ts","../node_modules/date-fns/issameday.d.ts","../node_modules/date-fns/issamehour.d.ts","../node_modules/date-fns/issameisoweek.d.ts","../node_modules/date-fns/issameisoweekyear.d.ts","../node_modules/date-fns/issameminute.d.ts","../node_modules/date-fns/issamemonth.d.ts","../node_modules/date-fns/issamequarter.d.ts","../node_modules/date-fns/issamesecond.d.ts","../node_modules/date-fns/issameweek.d.ts","../node_modules/date-fns/issameyear.d.ts","../node_modules/date-fns/issaturday.d.ts","../node_modules/date-fns/issunday.d.ts","../node_modules/date-fns/isthishour.d.ts","../node_modules/date-fns/isthisisoweek.d.ts","../node_modules/date-fns/isthisminute.d.ts","../node_modules/date-fns/isthismonth.d.ts","../node_modules/date-fns/isthisquarter.d.ts","../node_modules/date-fns/isthissecond.d.ts","../node_modules/date-fns/isthisweek.d.ts","../node_modules/date-fns/isthisyear.d.ts","../node_modules/date-fns/isthursday.d.ts","../node_modules/date-fns/istoday.d.ts","../node_modules/date-fns/istomorrow.d.ts","../node_modules/date-fns/istuesday.d.ts","../node_modules/date-fns/isvalid.d.ts","../node_modules/date-fns/iswednesday.d.ts","../node_modules/date-fns/isweekend.d.ts","../node_modules/date-fns/iswithininterval.d.ts","../node_modules/date-fns/isyesterday.d.ts","../node_modules/date-fns/lastdayofdecade.d.ts","../node_modules/date-fns/lastdayofisoweek.d.ts","../node_modules/date-fns/lastdayofisoweekyear.d.ts","../node_modules/date-fns/lastdayofmonth.d.ts","../node_modules/date-fns/lastdayofquarter.d.ts","../node_modules/date-fns/lastdayofweek.d.ts","../node_modules/date-fns/lastdayofyear.d.ts","../node_modules/date-fns/lightformat.d.ts","../node_modules/date-fns/max.d.ts","../node_modules/date-fns/milliseconds.d.ts","../node_modules/date-fns/millisecondstohours.d.ts","../node_modules/date-fns/millisecondstominutes.d.ts","../node_modules/date-fns/millisecondstoseconds.d.ts","../node_modules/date-fns/min.d.ts","../node_modules/date-fns/minutestohours.d.ts","../node_modules/date-fns/minutestomilliseconds.d.ts","../node_modules/date-fns/minutestoseconds.d.ts","../node_modules/date-fns/monthstoquarters.d.ts","../node_modules/date-fns/monthstoyears.d.ts","../node_modules/date-fns/nextday.d.ts","../node_modules/date-fns/nextfriday.d.ts","../node_modules/date-fns/nextmonday.d.ts","../node_modules/date-fns/nextsaturday.d.ts","../node_modules/date-fns/nextsunday.d.ts","../node_modules/date-fns/nextthursday.d.ts","../node_modules/date-fns/nexttuesday.d.ts","../node_modules/date-fns/nextwednesday.d.ts","../node_modules/date-fns/parse.d.ts","../node_modules/date-fns/parseiso.d.ts","../node_modules/date-fns/parsejson.d.ts","../node_modules/date-fns/previousday.d.ts","../node_modules/date-fns/previousfriday.d.ts","../node_modules/date-fns/previousmonday.d.ts","../node_modules/date-fns/previoussaturday.d.ts","../node_modules/date-fns/previoussunday.d.ts","../node_modules/date-fns/previousthursday.d.ts","../node_modules/date-fns/previoustuesday.d.ts","../node_modules/date-fns/previouswednesday.d.ts","../node_modules/date-fns/quarterstomonths.d.ts","../node_modules/date-fns/quarterstoyears.d.ts","../node_modules/date-fns/roundtonearestminutes.d.ts","../node_modules/date-fns/secondstohours.d.ts","../node_modules/date-fns/secondstomilliseconds.d.ts","../node_modules/date-fns/secondstominutes.d.ts","../node_modules/date-fns/set.d.ts","../node_modules/date-fns/setdate.d.ts","../node_modules/date-fns/setday.d.ts","../node_modules/date-fns/setdayofyear.d.ts","../node_modules/date-fns/setdefaultoptions.d.ts","../node_modules/date-fns/sethours.d.ts","../node_modules/date-fns/setisoday.d.ts","../node_modules/date-fns/setisoweek.d.ts","../node_modules/date-fns/setisoweekyear.d.ts","../node_modules/date-fns/setmilliseconds.d.ts","../node_modules/date-fns/setminutes.d.ts","../node_modules/date-fns/setmonth.d.ts","../node_modules/date-fns/setquarter.d.ts","../node_modules/date-fns/setseconds.d.ts","../node_modules/date-fns/setweek.d.ts","../node_modules/date-fns/setweekyear.d.ts","../node_modules/date-fns/setyear.d.ts","../node_modules/date-fns/startofday.d.ts","../node_modules/date-fns/startofdecade.d.ts","../node_modules/date-fns/startofhour.d.ts","../node_modules/date-fns/startofisoweek.d.ts","../node_modules/date-fns/startofisoweekyear.d.ts","../node_modules/date-fns/startofminute.d.ts","../node_modules/date-fns/startofmonth.d.ts","../node_modules/date-fns/startofquarter.d.ts","../node_modules/date-fns/startofsecond.d.ts","../node_modules/date-fns/startoftoday.d.ts","../node_modules/date-fns/startoftomorrow.d.ts","../node_modules/date-fns/startofweek.d.ts","../node_modules/date-fns/startofweekyear.d.ts","../node_modules/date-fns/startofyear.d.ts","../node_modules/date-fns/startofyesterday.d.ts","../node_modules/date-fns/sub.d.ts","../node_modules/date-fns/subbusinessdays.d.ts","../node_modules/date-fns/subdays.d.ts","../node_modules/date-fns/subhours.d.ts","../node_modules/date-fns/subisoweekyears.d.ts","../node_modules/date-fns/submilliseconds.d.ts","../node_modules/date-fns/subminutes.d.ts","../node_modules/date-fns/submonths.d.ts","../node_modules/date-fns/subquarters.d.ts","../node_modules/date-fns/subseconds.d.ts","../node_modules/date-fns/subweeks.d.ts","../node_modules/date-fns/subyears.d.ts","../node_modules/date-fns/todate.d.ts","../node_modules/date-fns/transpose.d.ts","../node_modules/date-fns/weekstodays.d.ts","../node_modules/date-fns/yearstomonths.d.ts","../node_modules/date-fns/yearstoquarters.d.ts","../node_modules/date-fns/index.d.mts","../src/database/mongodb/mongodb-helper.ts","../src/database/mongodb/mongodb-querystring.ts","../src/database/mongodb/connection.ts","../src/database/mongodb/mongodb-error-handler.ts","../src/server.ts","../src/index.ts","../cli.ts","../src/app.ts","../src/app.spec.ts","../src/server.spec.ts","../src/console/index.spec.ts","../node_modules/@types/minimatch/index.d.ts","../node_modules/@types/glob/index.d.ts","../node_modules/@types/shelljs/index.d.ts","../src/console/commands/make-command/index.spec.ts","../src/console/commands/make-middleware/index.spec.ts","../src/database/mongodb/mongodb-querystring.spec.ts","../src/types/controller.d.ts","../src/types/database.d.ts","../src/types/use-case.d.ts","../stub/command/index.command.ts","../stub/command/index.spec.ts","../stub/middleware/configurable.middleware.ts","../stub/middleware/configurable.spec.ts","../stub/middleware/new.middleware.ts","../stub/middleware/new.spec.ts","../node_modules/bun-types/types.d.ts"],"fileInfos":["f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","bed7b7ba0eb5a160b69af72814b4dde371968e40b6c5e73d3a9f7bee407d158c","138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","62a4966981264d1f04c44eb0f4b5bdc3d81c1a54725608861e44755aa24ad6a5","4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","86a34c7a13de9cabc43161348f663624b56871ed80986e41d214932ddd8d6719","8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","4350e5922fecd4bedda2964d69c213a1436349d0b8d260dd902795f5b94dc74b","d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","c5b0d06e2ed0fd1cb906e0ea0cda72efe38deecd7e817dd2768f5b1c1177b6a1","960cdf4b8d1239386ba4636e7f27a39d316b40b443ce156cc11613504518b163","37e62b31b950970a6fcdea25b49080be56ce00331d20066efa1f6925e291ad5f","4aa445b86c1f49da915dea5c08bb702e9cff665595f5487ec2f86935ef191a0b","fa67a8af1f68169a74458a6b4227dc4935137d423faa61bbc7743626dbd7e0ae","5faa5a81d34228d0ecb70b59ffca5b04fc5f6ec259f008d4d74098a6f0eeba91","138b428cdc7406d334361b931f9c5fdafb816f2effda5cb5ccb9dcc076c73306","0c7378e123372e07069f4bc9d08483a2db88ed342d2386fbacea7389af2dd546","4804f0bf1771bf2aaabfaaec77b6ca3e83b4df003c265800809a216bf3571f9c","e6d2c107b358421399671d5afc04f9a0993833121c74bcbd3648ac3a65770936","a33a00253396a81b3c7e70ce27e4fc32bf14823f29c2d6fe2683a017feaaf356","4ab5ae112fc249d91b195ee0e6741122e48aa85badcc80a1a0b76744f4cdaa2c","57e9298dd55f8204415de8ab254d814f71c892f2e153f92404f6ee483864bdf1","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1","a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c","185282b122cbca820c297a02a57b89cf5967ab43e220e3e174d872d3f9a94d2c","16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba","41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","e8968b394e4365588f8f89cfff86435258cf10062585c1d2224627ab92acda22","285e512c7a0db217a0599e18c462d565fa35be4a5153dd7b80bee88c83e83ddf","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e","2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","7aae1df2053572c2cfc2089a77847aadbb38eedbaa837a846c6a49fb37c6e5bd","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","1f758340b027b18ae8773ac3d33a60648a2af49eaae9e4fde18d0a0dd608642c","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac","dea4c00820d4fac5e530d4842aed2fb20d6744d75a674b95502cbd433f88bcb0","a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7","0d832a0650a74aafc276cb3f7bb26bde2e2270a6f87e6c871a64122e9203079b","c6f3869f12bb5c3bb8ecd0b050ea20342b89b944eae18d313cde6b0ccc0925d7","8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","d742ed2db6d5425b3b6ac5fb1f2e4b1ed2ae74fbeee8d0030d852121a4b05d2f","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12","2225100373ca3d63bcc7f206e1177152d2e2161285a0bd83c8374db1503a0d1f","7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eefcdf86cefff36e5d87de36a3638ab5f7d16c2b68932be4a72c14bb924e43c1","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df","4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","4a34b074b11c3597fb2ff890bc8f1484375b3b80793ab01f974534808d5777c7","629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795","ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","fedd311d427fdafac411b4e0edc0d1014668853679e021e04717a6de45ff5c0c","2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","50072f976cfa86af1a3044f55cd729d992abe39222d2f6cdf929266c77a42b0b","b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","d2a38ad7bb4676e7fd5d058a08105d81ac232c363ee56be0b401fc277d50dbb1","2ac2e08e0d0ed266849cb9da521c3be170a8bc111d25eeeb668c7dbf0ac4171a","34118be360cdd3381bbebbfd4b093c394460c8fc5df40688d58f45d86ab1448b","104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","1a02b196c580954a991163cfa42851f45b1e4ca6fbb4ac124c9511eff92cb04b","2639d7a368514bbbdbc3382a00fbec4ddaf11f1326e077176888924d9e92461d","ae6c6ac0910d432e8d6eaf5e592d42c8a6ea7e4394faf6ba4a06e8e5f3712068","9431b235ce545cd377c32666ddac788fb79438b5d83a8cfff158dc8cc72d70db","ce0e78ce410fad24bff997eb63da60afe3a5aa027e58fd745482f723e686b8da","fdf96e3bce664025cd5b2e5609917f0de9aad0aae25d95f47dd5b1196393066b","6d43223c298babedfca1dee06f74ad380fdc8c05d1934abea391b3f182a4e9c6","0614f6ba14d3d32330755c8f050309542f2080740472d2f33a8e3f3f528f3a89","757e78908b92ac1fd120aed890a1a61e46ff491e45e62a763bc387fbfa55b2b7","ac06c2d4300f6275d73af9f2c86f387002082d64c07b949e9581cf84cbf4305a","84540fd99a325528c8c0a299bc1b92fca3b20f0a09f21f55c67e90eedd91a602","83cb8f1dc46897b6361f89f8a207e98293b0617774352feaec564457fe6c99e7","10971dc58ca0573631b062f68ac073d8bc6b7c3d7ad4d64ee248c04e133031e5","308dbcb114fe8d587dee7b0a36e056fa6fa81f97fb2e295a6b4ccb71a81c041e","af38e1086105c3260cf8fd0e2a855b049ad8bb67131b413c2f301ddcc4ee0d8f","70e2856d17d21dd76413d1db8bbf7ded86991839f7628d52c58271c5f8a82504","af078d2cd62e2b195eb638c263afe7e988e562e4e59ccdda7c52765d70ca7982","a6ed5ded282cde9813420cc22a3edf3f0800a9073dbeefda2582301717fa6450","a14cf7fc855715f356680d8c3f8f96f62da5fce46f1917f83efe2367a3355b72","71d30cac9d47de3dde69c2fb6cc1095e7cc7863d2b934ca14ab5ee8d2bd878f0","e9fc0d5fec6d3c816adadc2fb32c26e783885040cb5be55080d6776ad13f5681","5c53aebc953ac4c8a0ec77b612030dd87737be90bbf9e609d820f2c8152363eb","bfd4b5f030347b2ab2bf574ff0ac77764be9a24dcd38ad6f6b19f68b0bf03635","2d0183dccc85690fcde7a83f1f8b38518e5dab57c8f9dfdcc1ba053ddb61e502","9612805eed6c53434189413bd7985a9d3c87b95bd28cf5c420c733cc1e8aa56d","e8fa72f5bb7ed8e716e23e84872e7f93479dbbafee6f23f3034965818d1ae4f8","b3775c650eac4c48d0e6056ae3460d6df1ce2f11739db8eab363c623de15e875","c15d78e8d98b2688f95cbd3b58566be9ef999eb9f2c3d899d4ab4f8056ff9b18","b24a32ab138b3a37f7eaf280ff814aec3041c445cab02d73ca248a5acd5e6a52","15d57b2c16db068859b4c97006906727db38175840872fc08c7ff083c03b258e","59c57fb179c9d288338abb3a88a621df27dd648a29c9a403b8f8eacb9f1ff781","73722e9b5c10f1ca63632ebaf8c4d59796e254ad7c427ade3c940e807c215143","ec522374c0b4c57d95464cd5bf16e3e8b93fa3ffba9c74d2872d3b00cb01b3b0","9db246877e75d2edd061dae5193caf2a0de6e3e1bcc812040c189f17abd04498","f8ceda508d4fd622b8a4deab374579146c97838ac84fd364ee2f84155de224c9","fe213076b0761b19ee9cade15f8de871f7b7654df7abae77d66afdbb5fd9cc89","b6b66e9e12b9f6e3d1a5aa3be2ffb141f79286df1827573488e8c456b940d641","2370c2e6e0b5aececa10581c6668bd89808f2cad6c7615f169d44df92dc3aa26","8d37d2a5d044287c6089d736b44e53e39d5afdbafc7d84abf02120a2121f345d","be9e79ad8af394f8d8ef13bcf788c5c4dd0b0c7d08747ae089b584450227a3e6","7c7cc5ba8a16dc124f66f11c5f8525910efba6ad488f7c31d90d151cbea697a5","bcb8241434460ceb69ba6fcb53df240f0637a12b6471f664509d7e402a12a75e","f769d3d5cd64d428a4ef6649f6e0de12ad244ef6e2fa11c986552f613ca9c0d0","de7e1334f4957353cebe390ab220878d404e53d1811f46ff7dad3a60f4464d13","1f66fb3648732c9585e397a3f7584e693b793f6de4d81833b07bb59b81b4a90f","b81045119b14cb3c9f9bee9d6e508175a0e94fc109f77a17f46785cc1ba499e1","07a88b3096f551e5be75df1f50f0595ddedc191560816d372acb4c0aaa8d6e0a","53fd19cdcdda48d004665ed8e93552492418cc137147720fdfc009b34aa053fc","a7a1c8eb51444b6ca9aa7348717ba890235541160ea5d32db2ad333dadf61316","fa332e21cdb317976ffd5b96839393f9c161db686862b0d075cd24d72cf19741","3a1136edeb1e95c6e80cf120e7a6de1160e5b253e8e789a176e6e584788b0ba6","38342aec72b2f9043b240fff13c73c85341727540a103c82ad640f0f5cbab378","230fae2ae619c71324907ad6569f01e122c6927aee51c8d702f43b473d2336ff","57eaee5af8458bb0f21d8f18eb6373d0fa29101e36541812f904a4d3d093665a","678032487b370015fa05ff627688825b083061afb652d7a5cb1a6535cc7757e8","cb40c769392a5e9b9478544845bbfc6d5be003feab5a094f76a588b8f8e17f49","55fc49198d8a85a73cdb79e596d9381cfdc9de93c32c77d42e661c1c1e7268ef","6a53fb3df8dd32ed1a65502ca30aeae19cfe80990e78ba68162d6cb2a7fed129","b5dcc18d7902597a5584a43c1146ca4fe0295ceb5125f724c1348f6a851dd6ed","0c6b0f3fbe6eb6a3805170b3766a341118c92ed7b6d1f193b9f35aa82f594846","60eaadb36cf157c5cae9c40e84fa367d04f52a150db3920dbe35139780739143","4680a32b1098c49dc87881329af1e68af9af94e051e1b9e19fed555a786f6ce6","5117f2f78e1d9133802a22b33f2250ca44e75230d095e1133feb479b93b66312","36d688c003693b3924805d66fb34f9cb65bb4f8ebb8acb01819351fccf9cd54a","6b74700abfe4a9b88be957fd8e373cfd998efb1a5f6ad122da49a92997e183ad","9ef1342f193bd8bae86c64e450c3ac468ef08652110355e1f3cdd45362eb95c4","6853c91662c36a2bf4c8371a87177c819007c76a23c293ef3f686ce9157ae4c8","9be1c5dabce43380d13fc621100676b03d420b5687b08d1288f479bee68ab7a8","8996d218010896712678e6a0337d8ef8b81c1066ab76f637dd8253f0d6ff838d","a15603bf387fc45defe28a68f405a6c29105e135c4e8538eeb6d0a1ef5b69a81","84e2532e4d42949a2775cdd8bb7b2b97370dd6ddb683d0c199b21bf6978b152d","22bf5f19f620db3b8392cfece44bdd587cdbed80ba39c88a53697d427135bf37","7532bffb2955abfb97bb405f18b1006ab72a081a0dbb8152ee8fd83eba03944e","18b6fa2c778cad6489f2febf76433453f5e2432ec3535f2d45ae7d803b93cc17","609d0d7419999cf44529e6ba687e2944b2fc7ad2570d278fd4e6b1683c075149","249cf421b8878a3fe948d9c02f6b0bae65491b3bb974c2ffc612341406fa78ff","b4aa22522d653428c8148ddbf1dcc1fb3a3471e15eb1964429a67c390d8c7f38","30b2cee905b1848b61c7d28082ebfa2675dd5545c0d25d1c093ce21a905cdccc","0a2a2eed4137368735205de97c245f2a685af1a7f1bf8d636b918a0ee4ff4326","69f342ce86706aa2835a62898e93ea7a1f21b1d89c70845da69371441bb6cd56","2ed73db081ca50e23e7a475be08509ecd08c8edf0665f76a134574a6ff97bc8c","d396233f6cd3edf0d33c2fbfc84ded029c3ea4a05af3c94d09d31a367cced111","bc41a726c817624a5136ae893d7aac7c4dc93c771e8d243a670324bccf39b02b","710728600e4b3197f834c4dd1956443be787d2e647a72f190bf6519f235aaadd","a45097e01ef30ba26640fed365376ab3ccd5faf97d03f20daff3355a7e60286a","763cbb7c22199f43fd5c2b1566af5ba96bf7366f125dd31a038a2291cbc89254","031933bf279b7563e11100b5e1746397caf3a278596796a87bc0db23cf68dc9e","a4a54c1f58fc6e25a82e2c0f651bf680058bd7f72cfb2d43b85ee0ab5fe2e87e","9613d789b6f1037f2523a8f70e1b736f1da4566b470593da062be5c9e13dac57","0d2a320763a0c9c71493f8f1069971018c8720a6e7e5a8f10c26b6de79aa2f7d","817e0df27a237a268dc16e5acffc19f9a74467093af7a0ba164ee927007a4d25","43102521b5ca50ff1865188c3c60790feaed94dc9262b25d4adec4dbc76f9035","f99947f8d873b960b0115e506ef9c43f4e40c2071b1d20375564538af4a6023b","c1e5ad5ca89d18d2a36d25e8ec105623648cf35615825e202c7d8295a49d61ab","2b6c9cb81da4e0a2e32a58230e8c0dec49fc5b345efb7f7a3648b98956be4b13","99e34af3ede50062dcc826a1c3ce2d45562060dfd0f29f8066381a6ef548bf2a","49f5c2a23ea5fc4b2cdb4426f09d1c8b83f8409fa2af13ef38845cc9b9d4bc3d","e935227675144b64ecde3489e4a5e242eeb25fdd6b7464b8c21ad1f7a0faa88b","b42e6bbe88dc79c2d6dc5605fb9c15184e70f64bdd7b8d4069b802b90ce86df6","b9cd712399fdc00fdae07e96c9b39c3cb311e2a8a5425f1bd583f13cab35e44b","5a978550ae131b7fef441d67372fd972abab98ea9fdb9fa266e8bdc89edcb8d6","4f287919cfc1d26420db9f0457cd5c8780b1ef0a9f949570936abe48d3a43d91","496b23b2fd07e614bc01d90dd4388996cb18cd5f3a612d98201e9f683e58ad2e","dcfbe42824f37c5fb6dc7b9427ef2500791ec0d30825ecb614f15b8d5bf5a667","390124ad2361b46bf01851d25e331cd7eed355d04451d8b2a4aa985c9de4f8ce","14d94f17772c3a58eda01b6603490983d845ee2012cd643f7497b4e22566aacb","36e132919b19c610d6f797a1336427e7f0242de617a9002b74e8eb2893d5c99b","4707625392316d3c16edbd0716f4ac310e8ff5d346d58f4d01a2b7e0533a23df","154d58a4b2d9c552dc864ea39c223d66efd0ed2dd8b55bd13db5225d14322915","6a830433fa072931b4ea3eb9aa5fa7d283f470080586a27bfe69837a0f12de9a","d25e930e181f4f69b2b128514538f2abb54ef1d48a046ad776ac6f1cda885a72","0259b4c21bc93b52ca82c755f97fc90481072bcc44a8010131b2ea7326cf03fe","bea43a13a1104a640da0cb049db85c6993f484a6cc03660496b97824719ecc91","0224239d61fe66d4900544d912b2e11c2cca24b4707d53fdb94b874a01e29f48","2bce8fd2d16a9432110bbe0ba1e663fd02f7d8b8968cd10178ea7bc306c4a5df","9c4ad63738346873d685e5c086acbf41199e7022eff5b72bb668931e9ca42404","cfb6329bf8ce324e83fe4bbdee537d866a0d5328246f149a0958b75d033de409","91caec8f6ccbd6a7cfdffa74da6643a9e15c2fc398fac94950f6e062872a5ec8","f99f6737336140047e8dd4ade3859f08331aa4b17bc2bd5f156a25c54e0febbc","12a2b25c7c9c05c8994adf193e65749926acfcc076381f7166c2f709a97bdf0a","0f93a3fdd517c1e45218cd0027c1d6b82237e379dc6b66d693aab1fe74c82e81","03c753da0bee80ad0d0f1819b9b42dfe9bf9f436664caf15325aa426246fd891","18f5bf1dae429c451f20171427c9e3223fade4346af4dfd817725cbeb247a09d","a4eece5fab202e840dd84f7239e511017a8162edb8fc8b54ff2851c5c844125c","c4a94af483a63bf947d89f97553a55df5107c605ec8a26f0b9b8bdcc14bd6d89","19de2915ccebc0a1482c2337b34cb178d446def2493bf775c4018a4ea355adb8","9be8fc03c8b5392cd17d40fd61063d73f08d0ee3457ecf075dcb3768ae1427bd","3b568b63f0e8b3873629a4d7a918dce4266ad41461004ab979f8dcdfd13532bb","a5e5223c775fe30d606b8aaa521953c925d5ad176a531c2b69437d2461aaabbd","8cbf41d2d1ce8ac2066783ae00613c33feef07493796f638e30beaf892e4354a","e22ad737718160df198cd428f18da707177d0467934cecdeed4be6e067b0c619","15bf5ed8cb7c1a1e1db53fa9b45bc1a1c73c0497735343a8d0c59fdb596a3744","791fce84bce8b6948e4f23422d9cbbd7d08c74b3f91cca12dcae83d96079798b","8a2619c8e24305f6b9700b35af178394b995dcb28690a57a71cca87ee7e709ae","ae0d84470bd762cb83671e46b2894fab2fbeef798b5f2258b83c116abf30e791","f0b6944290b45a8866357d2cf4a35a361e587fc4079fff8687317b75283f4020","2b7a82692ecc877c5379df9653902e23f2d0d0bc9f210ec3cf9e47be54413c5c","e2ad09c011cf9d7ee128875406bef787eeb504659495f42656a0098c15fe646c","eb518567ea6b0b2623f9a6d37c364e1b1ac9d8b508d79e558f64ac05c17e2685","630a48fb8f6b07161588e0aee3f9d301c59c97e1532c884118f89368baf4073b","2770a124f461ad91747868b3692c07192a294f85119e7c3bd7e97f27d4b73a94","7574803692d2230db13205a7749b9c3587dccaccdf9e76f003f9e08078bb6d09","9d4081d5ed01e2d2ff0c6cf0f7a0502470f8a5e5ffc887d9174c566668360b59","0d4ea8a20527dcf3ad6cf1bd188b8ad4e449df174fad09b9e540ed81080af834","aa82876d59912d25becff5a79ed7341af04c71bfeb2221cc0417bc34531125e2","6f4b0389f439adc84cba35d45428668eabcfbdd351ba17e459d414ca51ab8eb8","d5dd33d15fbb07668c264b38065ac542a07a7650af4917727bbc09b58570e862","7d90202d0212e9cdc91a20bfddf04a539c89f09fe1d64db3343546fa2eb37e71","1a5d073c95a3a4480b17d2fa7fd41862a9df0cb2afaee86834b13649e96bdb45","2092495a5b3116c760527a690c4529748f2d8b126cdd5f56b2ce2230b48aba3f","fb0490525f0727aa81ac36518e4b6e62f3f8e6220251fe9003ad988f61ef739d","931eda51b5977f7f3fa7a0d9afde01cfd8b0cc1df0bb66dcf8c2cf6e7090384e","b084a412374bdd124048c52c4e8a82d64f3adec6c0a9ad5ecbb7317636039b0f","11199daa694c3ced3cc2a382a3fa7bd64e95eb40f9bbc3979fc8fb43f5ba38cc","2c86f279d7db3c024de0f21cd9c8c2c972972f842357016bfbbd86955723b223","dfb53b9d748df3e140b0fddb75f74d21d7623e800bb1f233817a1a2118d4bb24","8cfc293b33082003cacbf7856b8b5e2d6dd3bde46abbd575b0c935dc83af4844","7730c538d6d35efe95d2c0d246b1371565b13037e893178033360b4c9d2ac863","b256694544b0d45495942720852d9597116979d52f2b53c559fda31f635c60df","794e8831c68cc471671430ee0998397ea7a62c3b706b30304efdc3eaff77545a","9cfc1b227477e31988e3fb18d26b6988618f4a5da9b7da6bc3df7fc12fb2602e","264a292b6024567dd901fdabbf3239a8742bea426432cdbda4cf390b224188e1","f1556a28bb8e33862dcfa9da7e6f1dca0b149faf433fe6a50153ae76f3362db1","1d321aea1c6a77b2a44e02e5c2aeff290e3f1675ead1a86652b6d77f5fea2b32","4910efc2ce1f96d6e71a9e7c9437812ffae5764b33ab3831c614663f62294124","e3ceab51a36e8b34ab787af1a7cf02b9312b6651bac67c750579b3f05af646c1","baf9f145bcee1b765bed6e79fd45e1ff0ca297a81315944de81eb5d6fff2d13d","2afd62362b83db93cd20de22489fe4d46c6f51822069802620589a51ccad4b99","9f0cd9bd4ab608123b88328c78814738cbdee620f29258b89ef8cd923f07ff9c","801186c9e765583c825f28dab63a7ad12db5609e36dc6d9acbdc97d23888a463","96c515141c6135ccd6fb655fb9e3500074a9216ba956fb685dc8edc33f689594","416af6d65fc76c9ced6795f255cb1096c9d7947bede75b82289732b74d902784","a280c68b128ebba35fb044965d67895201c2f83b6b28281bb8b023ade68bf665","6fa118f15723b099a41d3beea98ed059bcd1b3eda708acf98c5eff0c7e88832f","dcbf582243e20ea50d283f28f4f64e9990b4ed4a608757e996160c63cff6aa99","efa432d8fd562529c4e9f859fd936676dd8fef5d3b4bedb06f754e4740056ea9","a59b66720b2ccf2e0150fafb49e8da8dabdf4e1be36244a4ccd92f5bd18e1e9e","c657fb1ec3b727d6a14a24c71ea20c41cb7d26a503e8e41b726bb919eb964534","50d6d3174868f6e974355bf8e8db8c8b3fcf059315282a0c359ecf799d95514a","86bf79091014a1424fc55122caa47f08622b721a4d614b97dd620e3037711541","7a63313dff3a57f824a926e49a7262f7bd14e0e833cf45fa5af6da25286769c2","36dcaeffe1a1aed1cb84d4feba32895bf442795170edccc874fa32232b2354e5","686c6962d04d90edafc174aa5940acb9c9db8949c8d425131c01d796cf9a3aef","2b1dbc3d5762d6865744b6e7be94b8b9004097698c37e93e06983e42dd8fe93b","eb5e8f74826bdf3a6a0644d37a0f48133f8ad0b5298cc2c574102868542ba4eb","c6a82a9673ba517cf04dd0803513257d0adf101aed2e3b162a54d840c9a1a3b2","fc9f0f415abaa323efcecc4a4e0b6763bfe576e32043546d44f1de6541b6399b","2c4d772ac7ac56a44deef82903364eb7c78dd7bc997701123df0ce4639fe39bb","9369ef11eed17c1c223fdea9c0fa39e83f3722914ef390b1448db3d71620c93a","aa84130dbc9049bba6095f87932138698f53259b642635f6c9e92dd0ddc7512c","084ceadd21efabd4b58667dca00d4f644306099151d2ee18cd28a395855b8009","b9503e29f06c99b352b7cae052da19e3599fa42899509d32b23a27c9bb5bebf6","75188920fe6ccc14070fe9a65c036049f1141d968c627b623d4a897ec3587e15","e2e1df7f45013d2b34f8d08e6ae5a9339724b0ea251b5445fcca3e170e640105","af06feb5d18a6ea11c088b683bdb571800d1f76b98d848eecdf41e5ec8f317fd","0596af52b95e0c8adc2c07f49f109d746b164739c5866fa8bb394dd6329a3725","c3365d08fe7a1ccc3b8e8638edc30123007f3241b4604e2585b9f14422ab97d8","a7a3d96b04bb0ec8cb7d2669767c4756f97dd70d08548f9e6522dde4de8e8a03","745e960e885a4ba04c872225cbb44bd67a7490d169ceaefab7c0dfc444768676","0b1ce1768cde3535493a9daf99e3bbb8c7dcc3a7f9d8cd358cb846af71ce5cdf","48b9603f6e8a7c94b727277592a089f94261baa64e6c9d18165da0481663a69e","f153e6ec1575a86b01b862a071ac99c131989129ec911acc8f135d059f983ede","cb4fd56539a61d163ea9befe6b0292c32aa68a104c1f68f61416f1bc769bcfba","2a0417c7acc367dd23012633a183baef0ab78a2d4d52b339de68189251a8ca8b","b6c9a2deefb6a57ff68d2a38d33c34407b9939487fc9ee9f32ba3ecf2987a88a","f6b371377bab3018dac2bca63e27502ecbd5d06f708ad7e312658d3b5315d948","faa72893e85cb8ebb1dafde6b427e5204e60bb5f3ee6576bb64c01db1f255bc8","95b7ed47b31a6eaddcdd853ee0871f2bb61e39ce36a01d03dfafb83766f6c10c","19287d6b76288c2814f1633bdd68d2b76748757ffd355e73e41151644e4773d6","fc4e6ec7dade5f9d422b153c5d8f6ad074bd9cc4e280415b7dc58fb5c52b5df1","3aea973106e1184db82d8880f0ca134388b6cbc420f7309d1c8947b842886349","765e278c464923da94dda7c2b281ece92f58981642421ae097862effe2bd30fa","de260bed7f7d25593f59e859bd7c7f8c6e6bb87e8686a0fcafa3774cb5ca02d8","d95c4eaad4df9e564859f0c74a177fa0b2e5f8a155939b52580566ab6b311c3f","7192a6d17bfa06e83ba14287907b7c671bef9b7111c146f59c6ea753cfc736b9","5156d3d392db5d77e1e2f3ea723c0a8bd3ca8acffe3b754b10c84b12f55a6e10","a6494e7833ee04386a9f0c686726f7cb05f52f6e069d9293475ccb1e791ee0da","d9af0c89a310256851238f509a22aa1071a464d35dc22ea8c2a0bae42dd81bc5","291642a66e55e6ca38b029bc6921c7301f5c7b7acf21ae588a5f352e6c1f6d58","43cd7c37298b051d1ce0307d94105bcd792c6c7e017282c9d13f1097c27408e8","e00d8cce6e2e627654e49c543b582568ad0bf27c1d4ad1018d26aff78d7599df","4b4793e37925a4e60687e579f727a8e005810315b0cd806efd3a545ada0124e9","247af61cdc3f4ec7876b9e993a2ecdd069e10934ff790c9cee5811842bff49eb","4be8c2c63d5cd1381081d90021ddfaef106881df4129eddeeaba906f2d0f75d0","012f621d6eb28172afb1b2dc23898d8bc74cf35a6d76b63e5581aa8e50fa71b3","3a561fa91097e4580c5349ce72e69d247c31c11d29f39e1d0bd3716042ff2c0b","bc9981a79dda3badea61d716d368a280c370267e900f43321f828495f4fef23c","2ed3b93d55aea416d7be8d49fe25016430caab0fe64c87d641e4c2c551130d17","3d66dfc31dd26092c3663d9623b6fc5cec90878606941a19e2b884c4eacd1a24","6916c678060af14a8ce8d78a1929d84184e9507fba7ab75142c1bcb646e1c789","3eea74afae095028597b3954bde69390f568afc66d457f64fff56e416ea47811","549fb2d19deb7d7cae64922918ddddf190109508cc6c7c47033478f7359556d2","e7023afc677a74f03f8ccb567532fe9eedd1f5241ee74be7b75ac2336514f6f6","ff55505622eac7d104b9ab9570f4cc67166ba47dd8f3badfb85605d55dd6bdc9","b7a328a6be66386c9501594a28a6938caa45d7b02e5a416003043c6ee05478ce","f57e6707d035ab89a03797d34faef37deefd3dd90aa17d90de2f33dce46a2c56","cc8b559b2cf9380ca72922c64576a43f000275c72042b2af2415ce0fb88d7077","1a337ca294c428ba8f2eb01e887b28d080ee4a4307ae87e02e468b1d26af4a74","310fe80ff40a158c2de408efbe9de11e249c53d2de5e33ca32798e6f3fbc8822","d6ce96c7bb34945c1d444101f44e0f8ba0bba8ab7587a6cc009a9934b538c335","1b10a2715917601939a9288d49beccd45b591723256495b229569cd67bbe48a8","7498dfdeed2e003ec49cdf726ff6c293002d1d7fdadbc398ce8aafe6d0688de7","8492306a4864a1dc6fc7e0cc0de0ae9279cbd37f3aae3e9dc1065afcdc83dddc","9c86abbc4fd0248f56abc12aaecd76854517389af405d5ec2eb187fdb00a606f","9ffd906f14f8b059d6b95d6640920f530507e596e548f7a595da58ab66e3ce76","1884bccc10ce40adca470c2c371c1c938b36824f169c56f7f43d860416ca0a4c","986b55b4f920c99d77c1845f2542df6f746cb5adc9ab93eb1545a7e6ef37590d","cd00906068b81fbd8a22d021580ac505e272844408174520fafed0ae00627a5d","69fab68a769c17a52a24b868aeb644f3ee14abaa5064115f575ddd59231105ce","414fbe3458b12691d238a402c3038ed764b406360259619c05eca52c46499f93","93f7871380478bc6acf02ad9f3dc7da0c21997caebbe782eb93a11b7bd06a46d","d00279ab020713264f570d5181c89ca362b7de8abddf96733de86bce0eca082c","215e8dccc7e93f90bc474d30d6ebb30d71f89fb2beae1bf663ceb2f893fa74b7","14c5a31fbad1c1b0a0023a3e33d2a89c8e2e9b27b80562dcf5df52e447b5023f","154f23902d7a3fcdace4c20b654da7355fee4b7f807d1f77d6c9a24a8756013a","562f4f3c75a497d3ad7709381f850bb8c7646a9c6e94fdf8e91928e23d155411","4583380b676ee59b70a9696b42acfa986cd5f32430f37672e04f31f40b05df74","ad0a13f35a0d88803979f8ea9050ad7441e09d21a509abf2f303e18c1267af17","ba9781c718ab3d09cbde1216029072698d2da6135f0d2f856ba387d6caceb13e","d7c597c14698ba5fc8010076afa426f029b2d8edabb5073270c070cc645ba638","bd2afc69cf1d85cd950a99813bc7eff007d8afa496e7c2142a845cd1181d0474","558b462b23ea186d094dbff158d652acd58c0988c9fd53af81a8903412aa5901","0e984ae642a15973d652fd7b0d2712a284787d0d7a1db99aa49af0121e47f1df","0ad53ee208a23eef2a5cb3d85f2a9dc1019fd5e69179c4b0c02dc56c40d611c4","7a6898b26947bd356f33f4efef3eb23e61174d85dca19f41a8780d6bb4bfb405","9fe30349d26f34e85209fb06340bac34177f7eae3d6bb69dc12cd179d2c13ddf","d568c51d2c4360fd407445e39f4d86891dba04083402602bf5f24fd3969cacbb","4a9ed3c291349a6f3838728fb7d3daa988ef3e3042b032dfa644702fb240c0fd","aae66889332cff4b2f7586c5c8758abc394d8d1c48f9b04b0c257e58f629d285","0f86c85130c64d6dbe6a9090bb3df71c4b0987bce4a08afe1ac4ece597655b9c","0ce28ad2671baed24517e1c1f4f2a986029137635bce788ee8fb542f002ac5b8","592fcb72074d9b1ec8cad661c6bc03186cdd9cd6dfed4ff0b09037123048f58c","21cef58ab8ee43a578a093a6ae1bd1c016e0fc8d8e837710e90a2a6a53750709","3dc28dc1d279551c1a0c206f491fa03773661b28919c36b6fc32b0f48bdad468","b101f682f2eb57e94e86c41d834117cabe8023fc091f76bbd62e3f35f9296b17","fd68555a0a4bcf95c205b4ca61f88b9db258f1d97e02ebf75a1ab6b98a096041","9f908edb5d020fdfbc39b4e17aa2564a361f526ac3c3b30566de1747dc6f9194","33c2dd243bccb86471c6527b31ef94c475eee5dac16f62308780104bdbe47f12","bb8eb4946addf9c1735cdff95846dd761a48de555b0e4753247c9818ec45a745","1f0372ca2016a77115a08a3d71999737c471626602612c4b4ddba79ce542c4c6","9641aa5d135ab413fa457045463e4aaea7376dab5ddae0d0b5a3d0c89c820329","e1be8f06ce84c6fd79a9950b5790ec58aaf9f8a6241c8adc4b9777e8e7a69507","566fc1a6616a522f8b45082032a33e6d37ff7df3f7d4d63c3cce9017d0345178","3b699b08db04559803b85aa0809748e61427b3d831f77834b8206e9f2ed20c93","b27242dd3af2a5548d0c7231db7da63d6373636d6c4e72d9b616adaa2acef7e1","072bfd97fc61c894ef260723f43a416d49ebd8b703696f647c8322671c598873","e70875232f5d5528f1650dd6f5c94a5bed344ecf04bdbb998f7f78a3c1317d02","f8d5aac274124ed6bdcb953f41efd7c02f272c908d58958daaf2f16bbe88191d","5eebf3ad2b6f64d4bbed3afb5f44bca995555d6b4b1d246455fe4aa726cbbc6e","9310b5b30d72eefe59fe73241369782fbda0e750d843b97a4a3edeb27aaf775b","ac6e6a030a6b6d98ad689eb19c260ac539cbf2ebb681f48fd7ace10938690b4e","6511065e44478fcce4570fbdb3fe3f387362f7e66fd4dfc9d515d70d301c0888","3cfd6126439284bae049b123e5dd3c17fa5ddac43554ddcf200c1b27a6d679ff","ebd680da0f70f4bb9b79090d1cef6749efc36d87233a2a1ba68279ac4f4d355e","07d6cfbb7ca3a3f7580e8c7de65c5026f86e1bbfa5038edc8b1ef488078b9e73","5ad65720b092b9bf1149052b389c213a58f110967cc6f150c33ec832cd48f0fe","a62dedd331964129d0b3667ce02041ac639b8aa2a2557ae0b8dd50e29dd251e1","84adf799a34005c03c05a329bdd235426e4d86a36baa7966df2f93300a951715","03a17d6e75b3ed974b2460611e5555ee113e49d70a4366adae464e309549471b","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","df84eca381b7c2ec232cda8f9e0f4e05802d3eb64b23d9972cbc5e08327f7f27","bffb14d90100e5a637640a8ce3c96b00865fed3116b21ed84a477566eae5f14a","8da8804d443bec87ccf76b396fba16e4c7df4404efbd49939e29250a322ccdc5","8d6bdb1f4c31b74acbba45322bc471091322dfa6b2f4e1a11dfac8f7ef13b797","37f5359ff21ace415331cd3d1c2c86486e72bafd5bb1c90cfebf23185ed23ce7","655de1ac1cd8649fe43995e89325873c6bdcfd6e6e52dedbac3545c16b88a22e","881bed1d1fc195bd06c7f656edff29d2bcb265c7495622d5f145b62dbb8435f8","c3012c4aa3791f5f94b0dfbf83b1ee4695f9880846438d59362a811c6ea04b25","2e584e8457c54471f4225632ee9d8c9900b27d1d0476d1d2188cf07e526a6869","8b16fe83d13588950becdda25e50a5dc732c01232b51c9826da2a2bded0a89c7","a312f0353afe278010879087c258bd802bb38de7afce15076cf8b21f86f1e9cc","14d72f1b5364d1b6c837f456c8ad8a9cd0477d235dc9a824faeda21d3b915f7f","56cac9eb568ee79552240499b08f9b4c627bea2e1f5f92ff960e245b9805df23","70bfe8888706d6805874cd5888a6838f561146947c8f2c0ae5aabdff9beaaa34"],"root":[64,76,[212,215],[463,473],[477,488]],"options":{"allowImportingTsExtensions":true,"allowJs":true,"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"downlevelIteration":true,"emitDeclarationOnly":true,"jsx":4,"module":99,"outFile":"./index","skipLibCheck":true,"strict":true,"target":99},"outSignature":"d99848e9b93d5513b29df7f91b8c238e57c36f7bf022672a89dd79cc246bafcc","latestChangedDtsFile":"./index.d.ts"},"version":"5.3.3"}
|
package/src/app.spec.ts
DELETED
package/src/app.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import express, { Express, Request, Response } from 'express'
|
|
2
|
-
|
|
3
|
-
export async function createApp() {
|
|
4
|
-
const app: Express = express()
|
|
5
|
-
|
|
6
|
-
app.get('/', (req: Request, res: Response) => {
|
|
7
|
-
res.status(200).json({
|
|
8
|
-
message: 'Papi',
|
|
9
|
-
})
|
|
10
|
-
})
|
|
11
|
-
|
|
12
|
-
return app
|
|
13
|
-
}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import { BaseCommand, Color } from '@point-hub/express-cli'
|
|
2
|
-
import { camelCase, kebabCase, pascalCase } from '@point-hub/express-utils'
|
|
3
|
-
import fs from 'fs'
|
|
4
|
-
import path from 'path'
|
|
5
|
-
|
|
6
|
-
import { stubDir } from '../../../index'
|
|
7
|
-
|
|
8
|
-
export default class MakeCommand extends BaseCommand {
|
|
9
|
-
constructor() {
|
|
10
|
-
super({
|
|
11
|
-
name: 'make:command',
|
|
12
|
-
description: 'Make a new console command',
|
|
13
|
-
summary: 'Make a new console command',
|
|
14
|
-
arguments: [
|
|
15
|
-
{
|
|
16
|
-
name: 'name',
|
|
17
|
-
description: 'Name of console command',
|
|
18
|
-
},
|
|
19
|
-
],
|
|
20
|
-
options: [],
|
|
21
|
-
})
|
|
22
|
-
}
|
|
23
|
-
async handle(): Promise<void> {
|
|
24
|
-
// Check if command directory is already exists
|
|
25
|
-
if (fs.existsSync(`${process.cwd()}/src/console/commands/${kebabCase(this.args.name)}`)) {
|
|
26
|
-
console.error(Color.red('Command directory is exists'))
|
|
27
|
-
return
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
// Create directory
|
|
31
|
-
fs.mkdirSync(`${process.cwd()}/src/console/commands/${kebabCase(this.args.name)}`, { recursive: true })
|
|
32
|
-
|
|
33
|
-
// Copy command file
|
|
34
|
-
const stubCommand = fs
|
|
35
|
-
.readFileSync(path.resolve(stubDir, './command/index.command.ts'))
|
|
36
|
-
.toString()
|
|
37
|
-
.replace('[name]', kebabCase(this.args.name))
|
|
38
|
-
.replace('NewCommand', `${pascalCase(this.args.name)}Command`)
|
|
39
|
-
fs.writeFileSync(`${process.cwd()}/src/console/commands/${kebabCase(this.args.name)}/index.command.ts`, stubCommand)
|
|
40
|
-
|
|
41
|
-
// Copy test file
|
|
42
|
-
const stubTest = fs
|
|
43
|
-
.readFileSync(path.resolve(stubDir, './command/index.spec.ts'))
|
|
44
|
-
.toString()
|
|
45
|
-
.replace(/NewCommand/g, `${pascalCase(this.args.name)}Command`)
|
|
46
|
-
.replace(/newCommand/g, `${camelCase(this.args.name)}Command`)
|
|
47
|
-
fs.writeFileSync(`${process.cwd()}/src/console/commands/${kebabCase(this.args.name)}/index.spec.ts`, stubTest)
|
|
48
|
-
|
|
49
|
-
console.info(`src/console/commands/${kebabCase(this.args.name)}/index.command.ts`, 'has been created')
|
|
50
|
-
console.info(`src/console/commands/${kebabCase(this.args.name)}/index.spec.ts`, 'has been created')
|
|
51
|
-
}
|
|
52
|
-
}
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import { Color } from '@point-hub/express-cli'
|
|
2
|
-
import { beforeAll, describe, expect, it, spyOn } from 'bun:test'
|
|
3
|
-
import crypto from 'crypto'
|
|
4
|
-
import fs from 'fs'
|
|
5
|
-
import shell from 'shelljs'
|
|
6
|
-
|
|
7
|
-
import MakeCommand from './index.command'
|
|
8
|
-
|
|
9
|
-
const dir = 'src/console/commands'
|
|
10
|
-
|
|
11
|
-
function generateRandomName() {
|
|
12
|
-
let exists = true
|
|
13
|
-
let name = 'test'
|
|
14
|
-
while (exists) {
|
|
15
|
-
name = `test-${crypto.randomBytes(4).toString('hex')}`
|
|
16
|
-
exists = fs.existsSync(`${dir}/${name}`)
|
|
17
|
-
}
|
|
18
|
-
return name
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
describe('make:command', () => {
|
|
22
|
-
beforeAll(() => {
|
|
23
|
-
spyOn(console, 'error').mockImplementation(() => '')
|
|
24
|
-
spyOn(console, 'info').mockImplementation(() => '')
|
|
25
|
-
})
|
|
26
|
-
|
|
27
|
-
it('should create new command', async () => {
|
|
28
|
-
const makeCommand = new MakeCommand()
|
|
29
|
-
makeCommand.args = {
|
|
30
|
-
name: generateRandomName(),
|
|
31
|
-
}
|
|
32
|
-
const spy = spyOn(makeCommand, 'handle')
|
|
33
|
-
await makeCommand.handle()
|
|
34
|
-
|
|
35
|
-
shell.rm('-rf', `${dir}/${makeCommand.args.name}`)
|
|
36
|
-
|
|
37
|
-
expect(spy).toHaveBeenCalled()
|
|
38
|
-
})
|
|
39
|
-
|
|
40
|
-
it("should return error 'command directory exists'", async () => {
|
|
41
|
-
const makeCommand = new MakeCommand()
|
|
42
|
-
makeCommand.args = {
|
|
43
|
-
name: generateRandomName(),
|
|
44
|
-
}
|
|
45
|
-
const spy = spyOn(makeCommand, 'handle')
|
|
46
|
-
|
|
47
|
-
// first attempt it will create new command
|
|
48
|
-
await makeCommand.handle()
|
|
49
|
-
// second attempt it should return error because command directory exists
|
|
50
|
-
await makeCommand.handle()
|
|
51
|
-
|
|
52
|
-
shell.rm('-rf', `${dir}/${makeCommand.args.name}`)
|
|
53
|
-
|
|
54
|
-
expect(console.error).toHaveBeenCalled()
|
|
55
|
-
expect(console.error).toHaveBeenCalledWith(Color.red('Command directory is exists'))
|
|
56
|
-
expect(spy).toHaveBeenCalled()
|
|
57
|
-
})
|
|
58
|
-
})
|