nest-scramble 1.4.6 → 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,12 +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
- private options;
7
- constructor(openApiSpec: any, options: NestScrambleOptions);
5
+ constructor(openApiSpec: any);
8
6
  getDocs(res: any): void;
9
- private getProfessionalCSS;
10
7
  getOpenApiJson(res: any): void;
11
8
  getOpenApiJsonLegacy(res: any): void;
12
9
  getOpenApiSpec(): any;
@@ -1 +1 @@
1
- {"version":3,"file":"DocsController.d.ts","sourceRoot":"","sources":["../../src/controllers/DocsController.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAE5D,eAAO,MAAM,aAAa,aAAa,CAAC;AACxC,eAAO,MAAM,MAAM,wDAAyC,CAAC;AAE7D,qBAEa,cAAc;IAEU,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,OAAO;gBADP,WAAW,EAAE,GAAG,EAChB,OAAO,EAAE,mBAAmB;IAIvE,OAAO,CAAQ,GAAG,EAAE,GAAG;IA+DvB,OAAO,CAAC,kBAAkB;IAsQ1B,cAAc,CAAQ,GAAG,EAAE,GAAG;IAa9B,oBAAoB,CAAQ,GAAG,EAAE,GAAG;IAKpC,cAAc;CAGf"}
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,329 +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, options) {
22
+ constructor(openApiSpec) {
23
23
  this.openApiSpec = openApiSpec;
24
- this.options = options;
25
24
  }
26
25
  getDocs(res) {
27
- const primaryColor = this.options.primaryColor || '#00f2ff';
28
- const customIcon = this.options.customDomainIcon || '';
29
26
  const html = `<!DOCTYPE html>
30
27
  <html lang="en">
31
28
  <head>
32
- <title>${this.options.apiTitle || 'API Documentation'} - Nest-Scramble</title>
29
+ <title>API Documentation - Nest-Scramble</title>
33
30
  <meta charset="utf-8" />
34
31
  <meta name="viewport" content="width=device-width, initial-scale=1" />
35
- <link rel="preconnect" href="https://fonts.googleapis.com">
36
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
37
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap" rel="stylesheet">
38
- ${customIcon ? `<link rel="icon" href="${customIcon}" type="image/x-icon">` : ''}
39
- <style>${this.getProfessionalCSS(primaryColor)}</style>
32
+ <style>
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
+ }
38
+ </style>
40
39
  </head>
41
40
  <body>
42
- <div id="api-reference"></div>
41
+ <script id="api-reference" data-url="/docs-json"></script>
43
42
  <script src="https://cdn.jsdelivr.net/npm/@scalar/api-reference"></script>
44
- <script>
45
- console.log('%cšŸš€ Nest-Scramble by Mohamed Mustafa', 'color: #00f2ff; font-weight: bold; font-size: 16px;');
46
-
47
- fetch('/docs-json')
48
- .then(res => {
49
- if (!res.ok) throw new Error('HTTP ' + res.status);
50
- return res.json();
51
- })
52
- .then(spec => {
53
- console.log('%cāœ… Spec Loaded:', 'color: #10B981; font-weight: bold;', Object.keys(spec.paths || {}).length, 'endpoints');
54
-
55
- if (!spec.paths || Object.keys(spec.paths).length === 0) {
56
- throw new Error('No endpoints found in OpenAPI spec');
57
- }
58
-
59
- const config = {
60
- spec: { content: spec },
61
- darkMode: true,
62
- layout: 'modern',
63
- showSidebar: true,
64
- hideModels: false,
65
- defaultOpenAllTags: true,
66
- searchHotKey: 'k'
67
- };
68
-
69
- const container = document.getElementById('api-reference');
70
- if (container && window.ScalarApiReference) {
71
- window.ScalarApiReference.mount(container, config);
72
- console.log('%cāœ… Dashboard Ready', 'color: #00f2ff; font-weight: bold;');
73
- }
74
- })
75
- .catch(err => {
76
- console.error('%cāŒ Error:', 'color: #EF4444; font-weight: bold;', err);
77
- document.getElementById('api-reference').innerHTML =
78
- '<div style="display:flex;align-items:center;justify-content:center;height:100vh;background:#0a0a0a;color:#fff;font-family:Inter,sans-serif"><div style="text-align:center;padding:40px"><h1 style="font-size:64px;margin:0">āš ļø</h1><h2 style="margin:20px 0;color:#00f2ff">Failed to Load</h2><p style="color:#999;margin:20px 0">' + err.message + '</p><button onclick="location.reload()" style="padding:12px 32px;background:#00f2ff;border:none;border-radius:8px;color:#000;font-weight:600;cursor:pointer;font-size:14px">Retry</button></div></div>';
79
- });
80
- </script>
81
43
  </body>
82
44
  </html>`;
83
45
  res.setHeader('Content-Type', 'text/html; charset=utf-8');
84
46
  res.send(html);
85
47
  }
86
- getProfessionalCSS(primaryColor) {
87
- return `
88
- /* šŸŽØ Professional Three-Column Dashboard by Mohamed Mustafa */
89
- * { margin: 0; padding: 0; box-sizing: border-box; }
90
-
91
- :root {
92
- --primary: ${primaryColor};
93
- --bg-dark: #0a0a0a;
94
- --bg-card: #141414;
95
- --border: #2a2a2a;
96
- --text: #ffffff;
97
- --text-dim: #999999;
98
- --green: #10B981;
99
- --blue: #3B82F6;
100
- --orange: #F59E0B;
101
- --purple: #8B5CF6;
102
- --red: #EF4444;
103
- }
104
-
105
- body {
106
- font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
107
- background: var(--bg-dark);
108
- color: var(--text);
109
- line-height: 1.6;
110
- }
111
-
112
- /* Sidebar - Fixed Navigation */
113
- aside, nav, [class*="sidebar"] {
114
- position: fixed !important;
115
- left: 0;
116
- top: 0;
117
- width: 280px !important;
118
- height: 100vh;
119
- background: var(--bg-card) !important;
120
- border-right: 1px solid var(--border) !important;
121
- overflow-y: auto;
122
- z-index: 1000;
123
- padding: 0 !important;
124
- }
125
-
126
- /* Sidebar Header */
127
- aside::before, [class*="sidebar"]::before {
128
- content: 'šŸ‘Øā€šŸ’» API Dashboard';
129
- display: block;
130
- padding: 24px 20px;
131
- font-size: 16px;
132
- font-weight: 700;
133
- color: var(--primary);
134
- border-bottom: 1px solid var(--border);
135
- }
136
-
137
- /* Sidebar Links */
138
- aside a, [class*="sidebar"] a,
139
- aside button, [class*="sidebar"] button {
140
- display: block !important;
141
- padding: 12px 20px !important;
142
- color: var(--text-dim) !important;
143
- text-decoration: none !important;
144
- font-size: 14px !important;
145
- font-weight: 500 !important;
146
- border-left: 3px solid transparent !important;
147
- transition: all 0.2s !important;
148
- }
149
-
150
- aside a:hover, [class*="sidebar"] a:hover {
151
- background: rgba(255,255,255,0.05) !important;
152
- color: var(--text) !important;
153
- border-left-color: var(--primary) !important;
154
- }
155
-
156
- aside a.active, [class*="sidebar"] a.active,
157
- [aria-selected="true"], [aria-current="page"] {
158
- background: rgba(0,242,255,0.1) !important;
159
- color: var(--primary) !important;
160
- border-left-color: var(--primary) !important;
161
- font-weight: 600 !important;
162
- }
163
-
164
- /* Main Content Area */
165
- main, [class*="content"] {
166
- margin-left: 280px !important;
167
- padding: 40px !important;
168
- min-height: 100vh;
169
- }
170
-
171
- /* Three-Column Grid Layout */
172
- [class*="endpoint"], article {
173
- display: grid !important;
174
- grid-template-columns: 1fr 1fr 1fr !important;
175
- gap: 24px !important;
176
- max-width: 1600px;
177
- margin: 0 auto;
178
- }
179
-
180
- /* Column 1: Info & Parameters */
181
- [class*="description"], [class*="parameters"] {
182
- background: var(--bg-card);
183
- border: 1px solid var(--border);
184
- border-radius: 12px;
185
- padding: 24px;
186
- }
187
-
188
- /* Column 2: Request Body Editor */
189
- [class*="request"], [class*="body"], [class*="editor"] {
190
- background: var(--bg-card);
191
- border: 1px solid var(--border);
192
- border-radius: 12px;
193
- padding: 24px;
194
- }
195
-
196
- /* Column 3: Test Panel & Response */
197
- [class*="test"], [class*="try"], [class*="playground"] {
198
- background: var(--bg-card);
199
- border: 1px solid var(--primary);
200
- border-radius: 12px;
201
- padding: 24px;
202
- box-shadow: 0 0 20px rgba(0,242,255,0.1);
203
- }
204
-
205
- /* HTTP Method Badges */
206
- [data-method="get"], [class*="method-get"] {
207
- background: var(--blue) !important;
208
- color: #fff !important;
209
- padding: 6px 16px !important;
210
- border-radius: 6px !important;
211
- font-weight: 700 !important;
212
- font-size: 12px !important;
213
- text-transform: uppercase !important;
214
- }
215
-
216
- [data-method="post"], [class*="method-post"] {
217
- background: var(--green) !important;
218
- color: #fff !important;
219
- padding: 6px 16px !important;
220
- border-radius: 6px !important;
221
- font-weight: 700 !important;
222
- font-size: 12px !important;
223
- text-transform: uppercase !important;
224
- }
225
-
226
- [data-method="put"], [class*="method-put"] {
227
- background: var(--orange) !important;
228
- color: #fff !important;
229
- padding: 6px 16px !important;
230
- border-radius: 6px !important;
231
- font-weight: 700 !important;
232
- font-size: 12px !important;
233
- text-transform: uppercase !important;
234
- }
235
-
236
- [data-method="patch"], [class*="method-patch"] {
237
- background: var(--purple) !important;
238
- color: #fff !important;
239
- padding: 6px 16px !important;
240
- border-radius: 6px !important;
241
- font-weight: 700 !important;
242
- font-size: 12px !important;
243
- text-transform: uppercase !important;
244
- }
245
-
246
- [data-method="delete"], [class*="method-delete"] {
247
- background: var(--red) !important;
248
- color: #fff !important;
249
- padding: 6px 16px !important;
250
- border-radius: 6px !important;
251
- font-weight: 700 !important;
252
- font-size: 12px !important;
253
- text-transform: uppercase !important;
254
- }
255
-
256
- /* Send Button */
257
- button[class*="send"], button[class*="execute"] {
258
- width: 100% !important;
259
- padding: 14px 24px !important;
260
- background: var(--primary) !important;
261
- color: #000 !important;
262
- border: none !important;
263
- border-radius: 8px !important;
264
- font-weight: 700 !important;
265
- font-size: 14px !important;
266
- cursor: pointer !important;
267
- transition: all 0.2s !important;
268
- }
269
-
270
- button[class*="send"]:hover {
271
- transform: translateY(-2px) !important;
272
- box-shadow: 0 8px 20px rgba(0,242,255,0.3) !important;
273
- }
274
-
275
- /* Response Terminal */
276
- [class*="response"], [class*="output"] {
277
- background: #000 !important;
278
- border: 1px solid var(--primary) !important;
279
- border-radius: 8px !important;
280
- padding: 20px !important;
281
- font-family: 'JetBrains Mono', monospace !important;
282
- color: #00ff00 !important;
283
- font-size: 13px !important;
284
- max-height: 400px;
285
- overflow-y: auto;
286
- }
287
-
288
- /* Typography */
289
- h1 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
290
- h2 { font-size: 20px; font-weight: 700; margin: 24px 0 12px; }
291
- h3 { font-size: 16px; font-weight: 600; margin: 16px 0 8px; }
292
- p { color: var(--text-dim); line-height: 1.7; }
293
-
294
- /* Tables */
295
- table { width: 100%; border-collapse: collapse; margin: 16px 0; }
296
- th { text-align: left; padding: 12px; background: var(--bg-dark); font-weight: 600; font-size: 12px; text-transform: uppercase; color: var(--text-dim); }
297
- td { padding: 12px; border-top: 1px solid var(--border); }
298
-
299
- /* Inputs */
300
- input, textarea, select {
301
- width: 100%;
302
- background: var(--bg-dark);
303
- border: 1px solid var(--border);
304
- border-radius: 6px;
305
- padding: 10px 14px;
306
- color: var(--text);
307
- font-size: 14px;
308
- }
309
-
310
- input:focus, textarea:focus {
311
- outline: none;
312
- border-color: var(--primary);
313
- box-shadow: 0 0 0 3px rgba(0,242,255,0.1);
314
- }
315
-
316
- /* Scrollbar */
317
- ::-webkit-scrollbar { width: 8px; height: 8px; }
318
- ::-webkit-scrollbar-track { background: var(--bg-dark); }
319
- ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
320
- ::-webkit-scrollbar-thumb:hover { background: var(--primary); }
321
-
322
- /* Branding */
323
- body::after {
324
- content: '✨ Powered by Nest-Scramble';
325
- position: fixed;
326
- bottom: 20px;
327
- right: 20px;
328
- padding: 8px 16px;
329
- background: linear-gradient(135deg, var(--primary), var(--purple));
330
- border-radius: 8px;
331
- font-size: 11px;
332
- font-weight: 600;
333
- z-index: 9999;
334
- box-shadow: 0 4px 12px rgba(0,0,0,0.5);
335
- }
336
-
337
- /* Responsive */
338
- @media (max-width: 1200px) {
339
- [class*="endpoint"], article {
340
- grid-template-columns: 1fr !important;
341
- }
342
- }
343
- `;
344
- }
345
48
  getOpenApiJson(res) {
346
49
  try {
347
50
  const jsonString = JSON.stringify(this.openApiSpec, null, 2);
@@ -393,7 +96,6 @@ exports.DocsController = DocsController = __decorate([
393
96
  (0, common_1.Controller)(),
394
97
  (0, exports.Public)(),
395
98
  __param(0, (0, common_1.Inject)('NEST_SCRAMBLE_OPENAPI')),
396
- __param(1, (0, common_1.Inject)('NEST_SCRAMBLE_OPTIONS')),
397
- __metadata("design:paramtypes", [Object, Object])
99
+ __metadata("design:paramtypes", [Object])
398
100
  ], DocsController);
399
101
  //# sourceMappingURL=DocsController.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"DocsController.js","sourceRoot":"","sources":["../../src/controllers/DocsController.ts"],"names":[],"mappings":"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"}
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.6",
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",