nest-scramble 1.4.7 ā 1.4.8
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.
|
@@ -1,14 +1,9 @@
|
|
|
1
|
-
import { NestScrambleOptions } from '../NestScrambleModule';
|
|
2
1
|
export declare const IS_PUBLIC_KEY = "isPublic";
|
|
3
2
|
export declare const Public: () => import("@nestjs/common").CustomDecorator<string>;
|
|
4
3
|
export declare class DocsController {
|
|
5
4
|
private openApiSpec;
|
|
6
|
-
|
|
7
|
-
constructor(openApiSpec: any, options: NestScrambleOptions);
|
|
5
|
+
constructor(openApiSpec: any);
|
|
8
6
|
getDocs(res: any): void;
|
|
9
|
-
private getFuturisticCSS;
|
|
10
|
-
private getClassicCSS;
|
|
11
|
-
private getEasterEggScript;
|
|
12
7
|
getOpenApiJson(res: any): void;
|
|
13
8
|
getOpenApiJsonLegacy(res: any): void;
|
|
14
9
|
getOpenApiSpec(): any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DocsController.d.ts","sourceRoot":"","sources":["../../src/controllers/DocsController.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DocsController.d.ts","sourceRoot":"","sources":["../../src/controllers/DocsController.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,aAAa,aAAa,CAAC;AACxC,eAAO,MAAM,MAAM,wDAAyC,CAAC;AAE7D,qBAEa,cAAc;IAEU,OAAO,CAAC,WAAW;gBAAX,WAAW,EAAE,GAAG;IAI3D,OAAO,CAAQ,GAAG,EAAE,GAAG;IA0BvB,cAAc,CAAQ,GAAG,EAAE,GAAG;IAa9B,oBAAoB,CAAQ,GAAG,EAAE,GAAG;IAKpC,cAAc;CAGf"}
|
|
@@ -19,377 +19,32 @@ exports.IS_PUBLIC_KEY = 'isPublic';
|
|
|
19
19
|
const Public = () => (0, common_1.SetMetadata)(exports.IS_PUBLIC_KEY, true);
|
|
20
20
|
exports.Public = Public;
|
|
21
21
|
let DocsController = class DocsController {
|
|
22
|
-
constructor(openApiSpec
|
|
22
|
+
constructor(openApiSpec) {
|
|
23
23
|
this.openApiSpec = openApiSpec;
|
|
24
|
-
this.options = options;
|
|
25
24
|
}
|
|
26
25
|
getDocs(res) {
|
|
27
|
-
const isFuturistic = this.options.theme === 'futuristic';
|
|
28
|
-
const primaryColor = this.options.primaryColor || '#00f2ff';
|
|
29
|
-
const customIcon = this.options.customDomainIcon || '';
|
|
30
26
|
const html = `<!DOCTYPE html>
|
|
31
27
|
<html lang="en">
|
|
32
28
|
<head>
|
|
33
|
-
<title
|
|
29
|
+
<title>API Documentation - Nest-Scramble</title>
|
|
34
30
|
<meta charset="utf-8" />
|
|
35
31
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
36
|
-
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
37
|
-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
38
|
-
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
|
|
39
|
-
${customIcon ? `<link rel="icon" href="${customIcon}" type="image/x-icon">` : ''}
|
|
40
32
|
<style>
|
|
41
|
-
|
|
33
|
+
body {
|
|
34
|
+
margin: 0;
|
|
35
|
+
padding: 0;
|
|
36
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
|
|
37
|
+
}
|
|
42
38
|
</style>
|
|
43
39
|
</head>
|
|
44
40
|
<body>
|
|
45
41
|
<script id="api-reference" data-url="/docs-json"></script>
|
|
46
42
|
<script src="https://cdn.jsdelivr.net/npm/@scalar/api-reference"></script>
|
|
47
|
-
<script>
|
|
48
|
-
${this.getEasterEggScript()}
|
|
49
|
-
</script>
|
|
50
43
|
</body>
|
|
51
44
|
</html>`;
|
|
52
45
|
res.setHeader('Content-Type', 'text/html; charset=utf-8');
|
|
53
46
|
res.send(html);
|
|
54
47
|
}
|
|
55
|
-
getFuturisticCSS(primaryColor) {
|
|
56
|
-
return `
|
|
57
|
-
/* š Futuristic Theme by Mohamed Mustafa - Deep Space Edition */
|
|
58
|
-
:root {
|
|
59
|
-
--primary-cyber: ${primaryColor};
|
|
60
|
-
--primary-glow: ${primaryColor}80;
|
|
61
|
-
--purple-electric: #a855f7;
|
|
62
|
-
--deep-space: #050505;
|
|
63
|
-
--space-dark: #0a0a0a;
|
|
64
|
-
--space-card: #111111;
|
|
65
|
-
--space-border: #1a1a1a;
|
|
66
|
-
--text-primary: #ffffff;
|
|
67
|
-
--text-secondary: #a0a0a0;
|
|
68
|
-
--glow-shadow: 0 0 20px ${primaryColor}40, 0 0 40px ${primaryColor}20;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
* {
|
|
72
|
-
font-family: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
body {
|
|
76
|
-
margin: 0;
|
|
77
|
-
padding: 0;
|
|
78
|
-
background: var(--deep-space) !important;
|
|
79
|
-
color: var(--text-primary) !important;
|
|
80
|
-
overflow-x: hidden;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
/* Animated Background Grid */
|
|
84
|
-
body::before {
|
|
85
|
-
content: '';
|
|
86
|
-
position: fixed;
|
|
87
|
-
top: 0;
|
|
88
|
-
left: 0;
|
|
89
|
-
width: 100%;
|
|
90
|
-
height: 100%;
|
|
91
|
-
background-image:
|
|
92
|
-
linear-gradient(var(--space-border) 1px, transparent 1px),
|
|
93
|
-
linear-gradient(90deg, var(--space-border) 1px, transparent 1px);
|
|
94
|
-
background-size: 50px 50px;
|
|
95
|
-
opacity: 0.3;
|
|
96
|
-
z-index: 0;
|
|
97
|
-
pointer-events: none;
|
|
98
|
-
animation: gridPulse 10s ease-in-out infinite;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
@keyframes gridPulse {
|
|
102
|
-
0%, 100% { opacity: 0.2; }
|
|
103
|
-
50% { opacity: 0.4; }
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
/* Glassmorphism Cards */
|
|
107
|
-
.scalar-card,
|
|
108
|
-
[class*="card"],
|
|
109
|
-
[class*="panel"],
|
|
110
|
-
[class*="sidebar"] {
|
|
111
|
-
background: rgba(17, 17, 17, 0.6) !important;
|
|
112
|
-
backdrop-filter: blur(20px) !important;
|
|
113
|
-
-webkit-backdrop-filter: blur(20px) !important;
|
|
114
|
-
border: 1px solid rgba(255, 255, 255, 0.1) !important;
|
|
115
|
-
border-radius: 16px !important;
|
|
116
|
-
box-shadow:
|
|
117
|
-
0 8px 32px rgba(0, 0, 0, 0.4),
|
|
118
|
-
inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
/* Cyber Buttons & Active States */
|
|
122
|
-
button,
|
|
123
|
-
[role="button"],
|
|
124
|
-
.button,
|
|
125
|
-
a[class*="button"] {
|
|
126
|
-
background: linear-gradient(135deg, var(--primary-cyber), var(--purple-electric)) !important;
|
|
127
|
-
border: none !important;
|
|
128
|
-
border-radius: 12px !important;
|
|
129
|
-
padding: 10px 20px !important;
|
|
130
|
-
color: white !important;
|
|
131
|
-
font-weight: 600 !important;
|
|
132
|
-
letter-spacing: 0.5px !important;
|
|
133
|
-
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
|
|
134
|
-
position: relative !important;
|
|
135
|
-
overflow: hidden !important;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
button:hover,
|
|
139
|
-
[role="button"]:hover,
|
|
140
|
-
.button:hover {
|
|
141
|
-
transform: translateY(-2px) !important;
|
|
142
|
-
box-shadow: var(--glow-shadow) !important;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
button::before {
|
|
146
|
-
content: '';
|
|
147
|
-
position: absolute;
|
|
148
|
-
top: 0;
|
|
149
|
-
left: -100%;
|
|
150
|
-
width: 100%;
|
|
151
|
-
height: 100%;
|
|
152
|
-
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
|
|
153
|
-
transition: left 0.5s;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
button:hover::before {
|
|
157
|
-
left: 100%;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
/* Search Bar - Spotlight Style */
|
|
161
|
-
input[type="search"],
|
|
162
|
-
input[type="text"],
|
|
163
|
-
[class*="search"] input {
|
|
164
|
-
background: rgba(17, 17, 17, 0.8) !important;
|
|
165
|
-
border: 2px solid rgba(255, 255, 255, 0.1) !important;
|
|
166
|
-
border-radius: 12px !important;
|
|
167
|
-
padding: 12px 20px !important;
|
|
168
|
-
color: var(--text-primary) !important;
|
|
169
|
-
font-size: 14px !important;
|
|
170
|
-
transition: all 0.3s ease !important;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
input[type="search"]:focus,
|
|
174
|
-
input[type="text"]:focus,
|
|
175
|
-
[class*="search"] input:focus {
|
|
176
|
-
border-color: var(--primary-cyber) !important;
|
|
177
|
-
box-shadow: 0 0 0 3px var(--primary-glow) !important;
|
|
178
|
-
outline: none !important;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
/* Code Blocks - Night Owl Theme */
|
|
182
|
-
pre,
|
|
183
|
-
code,
|
|
184
|
-
[class*="code"],
|
|
185
|
-
.hljs {
|
|
186
|
-
background: #011627 !important;
|
|
187
|
-
border: 1px solid rgba(0, 242, 255, 0.2) !important;
|
|
188
|
-
border-radius: 12px !important;
|
|
189
|
-
padding: 16px !important;
|
|
190
|
-
font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace !important;
|
|
191
|
-
font-size: 13px !important;
|
|
192
|
-
line-height: 1.6 !important;
|
|
193
|
-
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
code {
|
|
197
|
-
color: #82AAFF !important;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
/* Sidebar Glassmorphism */
|
|
201
|
-
[class*="sidebar"],
|
|
202
|
-
nav,
|
|
203
|
-
aside {
|
|
204
|
-
background: rgba(10, 10, 10, 0.7) !important;
|
|
205
|
-
backdrop-filter: blur(30px) !important;
|
|
206
|
-
border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
/* Custom Branding Badge */
|
|
210
|
-
body::after {
|
|
211
|
-
content: '⨠Powered by Nest-Scramble';
|
|
212
|
-
position: fixed;
|
|
213
|
-
bottom: 20px;
|
|
214
|
-
right: 20px;
|
|
215
|
-
background: linear-gradient(135deg, var(--primary-cyber), var(--purple-electric));
|
|
216
|
-
padding: 8px 16px;
|
|
217
|
-
border-radius: 20px;
|
|
218
|
-
font-size: 11px;
|
|
219
|
-
font-weight: 600;
|
|
220
|
-
letter-spacing: 0.5px;
|
|
221
|
-
box-shadow: var(--glow-shadow);
|
|
222
|
-
z-index: 9999;
|
|
223
|
-
animation: badgePulse 3s ease-in-out infinite;
|
|
224
|
-
cursor: pointer;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
@keyframes badgePulse {
|
|
228
|
-
0%, 100% {
|
|
229
|
-
box-shadow: 0 0 20px ${primaryColor}40, 0 0 40px ${primaryColor}20;
|
|
230
|
-
}
|
|
231
|
-
50% {
|
|
232
|
-
box-shadow: 0 0 30px ${primaryColor}60, 0 0 60px ${primaryColor}30;
|
|
233
|
-
}
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
/* Scrollbar Styling */
|
|
237
|
-
::-webkit-scrollbar {
|
|
238
|
-
width: 10px;
|
|
239
|
-
height: 10px;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
::-webkit-scrollbar-track {
|
|
243
|
-
background: var(--space-dark);
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
::-webkit-scrollbar-thumb {
|
|
247
|
-
background: linear-gradient(180deg, var(--primary-cyber), var(--purple-electric));
|
|
248
|
-
border-radius: 10px;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
::-webkit-scrollbar-thumb:hover {
|
|
252
|
-
background: var(--primary-cyber);
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
/* Headers with Gradient */
|
|
256
|
-
h1, h2, h3, h4, h5, h6 {
|
|
257
|
-
background: linear-gradient(135deg, var(--primary-cyber), var(--purple-electric));
|
|
258
|
-
-webkit-background-clip: text;
|
|
259
|
-
-webkit-text-fill-color: transparent;
|
|
260
|
-
background-clip: text;
|
|
261
|
-
font-weight: 700 !important;
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
/* Links */
|
|
265
|
-
a {
|
|
266
|
-
color: var(--primary-cyber) !important;
|
|
267
|
-
text-decoration: none !important;
|
|
268
|
-
transition: all 0.3s ease !important;
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
a:hover {
|
|
272
|
-
color: var(--purple-electric) !important;
|
|
273
|
-
text-shadow: 0 0 10px var(--primary-glow) !important;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
/* Method Badges */
|
|
277
|
-
[class*="method"],
|
|
278
|
-
[class*="badge"] {
|
|
279
|
-
border-radius: 8px !important;
|
|
280
|
-
padding: 4px 12px !important;
|
|
281
|
-
font-weight: 600 !important;
|
|
282
|
-
font-size: 11px !important;
|
|
283
|
-
letter-spacing: 0.5px !important;
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
/* Response Status Colors */
|
|
287
|
-
[class*="status-200"],
|
|
288
|
-
[class*="success"] {
|
|
289
|
-
background: linear-gradient(135deg, #10b981, #059669) !important;
|
|
290
|
-
color: white !important;
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
[class*="status-400"],
|
|
294
|
-
[class*="error"] {
|
|
295
|
-
background: linear-gradient(135deg, #ef4444, #dc2626) !important;
|
|
296
|
-
color: white !important;
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
/* Smooth Transitions */
|
|
300
|
-
* {
|
|
301
|
-
transition: background 0.3s ease, border 0.3s ease, box-shadow 0.3s ease !important;
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
/* Theme Toggle Button */
|
|
305
|
-
.theme-toggle {
|
|
306
|
-
position: fixed;
|
|
307
|
-
top: 20px;
|
|
308
|
-
right: 20px;
|
|
309
|
-
background: rgba(17, 17, 17, 0.8) !important;
|
|
310
|
-
backdrop-filter: blur(10px);
|
|
311
|
-
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
312
|
-
border-radius: 12px;
|
|
313
|
-
padding: 8px 16px;
|
|
314
|
-
color: var(--text-primary);
|
|
315
|
-
font-size: 12px;
|
|
316
|
-
font-weight: 600;
|
|
317
|
-
cursor: pointer;
|
|
318
|
-
z-index: 9998;
|
|
319
|
-
transition: all 0.3s ease;
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
.theme-toggle:hover {
|
|
323
|
-
border-color: var(--primary-cyber);
|
|
324
|
-
box-shadow: 0 0 15px var(--primary-glow);
|
|
325
|
-
}
|
|
326
|
-
`;
|
|
327
|
-
}
|
|
328
|
-
getClassicCSS(primaryColor) {
|
|
329
|
-
return `
|
|
330
|
-
/* Classic Theme */
|
|
331
|
-
body {
|
|
332
|
-
margin: 0;
|
|
333
|
-
padding: 0;
|
|
334
|
-
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
335
|
-
background: #ffffff;
|
|
336
|
-
color: #1a1a1a;
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
button,
|
|
340
|
-
[role="button"] {
|
|
341
|
-
background: ${primaryColor} !important;
|
|
342
|
-
color: white !important;
|
|
343
|
-
border: none !important;
|
|
344
|
-
border-radius: 8px !important;
|
|
345
|
-
padding: 10px 20px !important;
|
|
346
|
-
font-weight: 600 !important;
|
|
347
|
-
transition: all 0.3s ease !important;
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
button:hover {
|
|
351
|
-
opacity: 0.9 !important;
|
|
352
|
-
transform: translateY(-1px) !important;
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
input[type="search"],
|
|
356
|
-
input[type="text"] {
|
|
357
|
-
border: 2px solid #e5e5e5 !important;
|
|
358
|
-
border-radius: 8px !important;
|
|
359
|
-
padding: 10px 16px !important;
|
|
360
|
-
transition: all 0.3s ease !important;
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
input:focus {
|
|
364
|
-
border-color: ${primaryColor} !important;
|
|
365
|
-
outline: none !important;
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
a {
|
|
369
|
-
color: ${primaryColor} !important;
|
|
370
|
-
}
|
|
371
|
-
`;
|
|
372
|
-
}
|
|
373
|
-
getEasterEggScript() {
|
|
374
|
-
return `
|
|
375
|
-
// Easter Egg Console Message
|
|
376
|
-
console.log('%c⨠Engineered with passion by Mohamed Mustafa', 'color: #00f2ff; font-size: 16px; font-weight: bold; text-shadow: 0 0 10px #00f2ff;');
|
|
377
|
-
console.log('%cNest-Scramble is active.', 'color: #a855f7; font-size: 14px; font-weight: 600;');
|
|
378
|
-
console.log('%cš GitHub: https://github.com/Eng-MMustafa/nest-scramble', 'color: #ffffff; font-size: 12px;');
|
|
379
|
-
|
|
380
|
-
// Theme Toggle Functionality
|
|
381
|
-
const themeToggle = document.createElement('div');
|
|
382
|
-
themeToggle.className = 'theme-toggle';
|
|
383
|
-
themeToggle.textContent = 'šØ Theme';
|
|
384
|
-
themeToggle.onclick = () => {
|
|
385
|
-
const currentTheme = localStorage.getItem('nest-scramble-theme') || 'futuristic';
|
|
386
|
-
const newTheme = currentTheme === 'futuristic' ? 'classic' : 'futuristic';
|
|
387
|
-
localStorage.setItem('nest-scramble-theme', newTheme);
|
|
388
|
-
window.location.reload();
|
|
389
|
-
};
|
|
390
|
-
document.body.appendChild(themeToggle);
|
|
391
|
-
`;
|
|
392
|
-
}
|
|
393
48
|
getOpenApiJson(res) {
|
|
394
49
|
try {
|
|
395
50
|
const jsonString = JSON.stringify(this.openApiSpec, null, 2);
|
|
@@ -441,7 +96,6 @@ exports.DocsController = DocsController = __decorate([
|
|
|
441
96
|
(0, common_1.Controller)(),
|
|
442
97
|
(0, exports.Public)(),
|
|
443
98
|
__param(0, (0, common_1.Inject)('NEST_SCRAMBLE_OPENAPI')),
|
|
444
|
-
|
|
445
|
-
__metadata("design:paramtypes", [Object, Object])
|
|
99
|
+
__metadata("design:paramtypes", [Object])
|
|
446
100
|
], DocsController);
|
|
447
101
|
//# sourceMappingURL=DocsController.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DocsController.js","sourceRoot":"","sources":["../../src/controllers/DocsController.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,kEAAkE;AAClE,2CAA2E;
|
|
1
|
+
{"version":3,"file":"DocsController.js","sourceRoot":"","sources":["../../src/controllers/DocsController.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,kEAAkE;AAClE,2CAA2E;AAE9D,QAAA,aAAa,GAAG,UAAU,CAAC;AACjC,MAAM,MAAM,GAAG,GAAG,EAAE,CAAC,IAAA,oBAAW,EAAC,qBAAa,EAAE,IAAI,CAAC,CAAC;AAAhD,QAAA,MAAM,UAA0C;AAItD,IAAM,cAAc,GAApB,MAAM,cAAc;IACzB,YAC2C,WAAgB;QAAhB,gBAAW,GAAX,WAAW,CAAK;IACxD,CAAC;IAGJ,OAAO,CAAQ,GAAQ;QACrB,MAAM,IAAI,GAAG;;;;;;;;;;;;;;;;;;QAkBT,CAAC;QAEL,GAAG,CAAC,SAAS,CAAC,cAAc,EAAE,0BAA0B,CAAC,CAAC;QAC1D,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACjB,CAAC;IAGD,cAAc,CAAQ,GAAQ;QAC5B,IAAI,CAAC;YACH,MAAM,UAAU,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;YAC7D,GAAG,CAAC,SAAS,CAAC,cAAc,EAAE,iCAAiC,CAAC,CAAC;YACjE,GAAG,CAAC,SAAS,CAAC,6BAA6B,EAAE,GAAG,CAAC,CAAC;YAClD,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QACvB,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,OAAO,CAAC,KAAK,CAAC,iDAAiD,EAAE,KAAK,CAAC,CAAC;YACxE,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,0CAA0C,EAAE,CAAC,CAAC;QAC9E,CAAC;IACH,CAAC;IAGD,oBAAoB,CAAQ,GAAQ;QAClC,OAAO,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC;IAClC,CAAC;IAGD,cAAc;QACZ,OAAO,IAAI,CAAC,WAAW,CAAC;IAC1B,CAAC;CACF,CAAA;AArDY,wCAAc;AAMzB;IADC,IAAA,YAAG,EAAC,MAAM,CAAC;IACH,WAAA,IAAA,YAAG,GAAE,CAAA;;;;6CAuBb;AAGD;IADC,IAAA,YAAG,EAAC,WAAW,CAAC;IACD,WAAA,IAAA,YAAG,GAAE,CAAA;;;;oDAUpB;AAGD;IADC,IAAA,YAAG,EAAC,WAAW,CAAC;IACK,WAAA,IAAA,YAAG,GAAE,CAAA;;;;0DAE1B;AAGD;IADC,IAAA,YAAG,EAAC,WAAW,CAAC;;;;oDAGhB;yBApDU,cAAc;IAF1B,IAAA,mBAAU,GAAE;IACZ,IAAA,cAAM,GAAE;IAGJ,WAAA,IAAA,eAAM,EAAC,uBAAuB,CAAC,CAAA;;GAFvB,cAAc,CAqD1B"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nest-scramble",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.8",
|
|
4
4
|
"description": "A next-generation, decorator-free API documentation engine and intelligent mock server for NestJS, engineered by Mohamed Mustafa",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|