@heroku/js-blanket 0.0.0 → 1.0.0

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.
Files changed (82) hide show
  1. package/README.md +4 -1
  2. package/dist/cjs/.tsbuildinfo +1 -0
  3. package/dist/cjs/adapters/logging/generic.js +23 -0
  4. package/dist/cjs/adapters/logging/generic.js.map +1 -0
  5. package/dist/cjs/adapters/logging/generic.test.js +432 -0
  6. package/dist/cjs/adapters/logging/generic.test.js.map +1 -0
  7. package/dist/cjs/core/patterns.js +17 -0
  8. package/dist/cjs/core/patterns.js.map +1 -0
  9. package/dist/cjs/core/presets.js +116 -0
  10. package/dist/cjs/core/presets.js.map +1 -0
  11. package/dist/cjs/core/scrubber.js +260 -0
  12. package/dist/cjs/core/scrubber.js.map +1 -0
  13. package/dist/cjs/core/scrubber.test.js +392 -0
  14. package/dist/cjs/core/scrubber.test.js.map +1 -0
  15. package/dist/cjs/core/types.js +3 -0
  16. package/dist/cjs/core/types.js.map +1 -0
  17. package/dist/cjs/core/types.test.js +326 -0
  18. package/dist/cjs/core/types.test.js.map +1 -0
  19. package/dist/cjs/index.js +16 -0
  20. package/dist/cjs/index.js.map +1 -0
  21. package/dist/cjs/index.test.js +31 -0
  22. package/dist/cjs/index.test.js.map +1 -0
  23. package/dist/cjs/package.json +1 -0
  24. package/dist/esm/.tsbuildinfo +1 -0
  25. package/{src/adapters/logging/generic.ts → dist/esm/adapters/logging/generic.d.ts} +1 -4
  26. package/dist/esm/adapters/logging/generic.js +20 -0
  27. package/dist/esm/adapters/logging/generic.js.map +1 -0
  28. package/dist/esm/adapters/logging/generic.test.d.ts +7 -0
  29. package/dist/esm/adapters/logging/generic.test.js +430 -0
  30. package/dist/esm/adapters/logging/generic.test.js.map +1 -0
  31. package/dist/esm/core/patterns.d.ts +4 -0
  32. package/dist/esm/core/patterns.js +14 -0
  33. package/dist/esm/core/patterns.js.map +1 -0
  34. package/dist/esm/core/presets.d.ts +64 -0
  35. package/{src/core/presets.ts → dist/esm/core/presets.js} +46 -55
  36. package/dist/esm/core/presets.js.map +1 -0
  37. package/dist/esm/core/scrubber.d.ts +131 -0
  38. package/dist/esm/core/scrubber.js +256 -0
  39. package/dist/esm/core/scrubber.js.map +1 -0
  40. package/dist/esm/core/scrubber.test.d.ts +1 -0
  41. package/dist/esm/core/scrubber.test.js +390 -0
  42. package/dist/esm/core/scrubber.test.js.map +1 -0
  43. package/dist/esm/core/types.d.ts +169 -0
  44. package/dist/esm/core/types.js +2 -0
  45. package/dist/esm/core/types.js.map +1 -0
  46. package/dist/esm/core/types.test.d.ts +9 -0
  47. package/dist/esm/core/types.test.js +324 -0
  48. package/dist/esm/core/types.test.js.map +1 -0
  49. package/{src/index.ts → dist/esm/index.d.ts} +0 -3
  50. package/dist/esm/index.js +7 -0
  51. package/dist/esm/index.js.map +1 -0
  52. package/dist/esm/index.test.d.ts +1 -0
  53. package/dist/esm/index.test.js +29 -0
  54. package/dist/esm/index.test.js.map +1 -0
  55. package/package.json +45 -47
  56. package/.c8rc.json +0 -11
  57. package/.editorconfig +0 -11
  58. package/.github/PULL_REQUEST_TEMPLATE.md +0 -41
  59. package/.github/copilot-instructions.md +0 -117
  60. package/.github/workflows/ci.yml +0 -25
  61. package/.husky/pre-commit +0 -1
  62. package/.lintstagedrc.json +0 -4
  63. package/.tool-versions +0 -1
  64. package/CODEOWNERS +0 -8
  65. package/CODE_OF_CONDUCT.md +0 -111
  66. package/CONTRIBUTING.md +0 -123
  67. package/SECURITY.md +0 -8
  68. package/docs/examples/logging-integration.md +0 -736
  69. package/eslint.config.mjs +0 -108
  70. package/prettier.config.mjs +0 -10
  71. package/scripts/test-setup.mjs +0 -24
  72. package/src/adapters/logging/generic.test.ts +0 -531
  73. package/src/core/patterns.ts +0 -22
  74. package/src/core/scrubber.test.ts +0 -465
  75. package/src/core/scrubber.ts +0 -284
  76. package/src/core/types.test.ts +0 -516
  77. package/src/core/types.ts +0 -176
  78. package/src/index.test.ts +0 -41
  79. package/tsconfig.cjs.json +0 -12
  80. package/tsconfig.esm.json +0 -12
  81. package/tsconfig.json +0 -32
  82. package/tsconfig.test.json +0 -9
@@ -0,0 +1,326 @@
1
+ "use strict";
2
+ /**
3
+ * Type Safety Tests for Core Scrubber
4
+ *
5
+ * These tests validate that TypeScript types are preserved correctly through scrubbing operations.
6
+ * They use compile-time type assertions to ensure type safety without runtime overhead.
7
+ *
8
+ * Run with: pnpm test (type-checked during pretest)
9
+ */
10
+ Object.defineProperty(exports, "__esModule", { value: true });
11
+ const chai_1 = require("chai");
12
+ const scrubber_js_1 = require("./scrubber.js");
13
+ describe('Type Safety', () => {
14
+ describe('Generic Type Preservation', () => {
15
+ it('preserves simple object types', () => {
16
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['password'] });
17
+ const user = {
18
+ name: 'John',
19
+ email: 'john@example.com',
20
+ password: 'secret',
21
+ };
22
+ const result = scrubber.scrub(user);
23
+ // Compile-time assertion: result.data should be User type
24
+ const typeCheck = true;
25
+ (0, chai_1.expect)(typeCheck).to.be.true;
26
+ // Runtime validation
27
+ (0, chai_1.expect)(result.data).to.have.property('name');
28
+ (0, chai_1.expect)(result.data).to.have.property('email');
29
+ (0, chai_1.expect)(result.data).to.have.property('password');
30
+ });
31
+ it('preserves nested object types', () => {
32
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['email'] });
33
+ const profile = {
34
+ user: { name: 'John', email: 'john@example.com' },
35
+ address: { street: '123 Main St', city: 'Springfield', zip: '12345' },
36
+ metadata: { lastLogin: '2024-01-01', loginCount: 42 },
37
+ };
38
+ const _result = scrubber.scrub(profile);
39
+ // Compile-time assertion
40
+ const typeCheck = true;
41
+ (0, chai_1.expect)(typeCheck).to.be.true;
42
+ });
43
+ it('preserves array types', () => {
44
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['secret'] });
45
+ const items = [
46
+ { id: 1, name: 'Item 1', secret: 'secret1' },
47
+ { id: 2, name: 'Item 2', secret: 'secret2' },
48
+ ];
49
+ const result = scrubber.scrub(items);
50
+ // Compile-time assertion
51
+ const typeCheck = true;
52
+ (0, chai_1.expect)(typeCheck).to.be.true;
53
+ // Runtime validation
54
+ (0, chai_1.expect)(result.data).to.be.an('array');
55
+ (0, chai_1.expect)(result.data).to.have.lengthOf(2);
56
+ });
57
+ it('preserves union types', () => {
58
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['email'] });
59
+ const data = {
60
+ type: 'user',
61
+ name: 'John',
62
+ email: 'john@example.com',
63
+ };
64
+ const _result = scrubber.scrub(data);
65
+ // Compile-time assertion
66
+ const typeCheck = true;
67
+ (0, chai_1.expect)(typeCheck).to.be.true;
68
+ });
69
+ it('preserves readonly types', () => {
70
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['password'] });
71
+ const user = {
72
+ id: 1,
73
+ name: 'John',
74
+ password: 'secret',
75
+ };
76
+ const result = scrubber.scrub(user);
77
+ // Compile-time assertion
78
+ const typeCheck = true;
79
+ (0, chai_1.expect)(typeCheck).to.be.true;
80
+ // Immutability: original should not be modified
81
+ (0, chai_1.expect)(user.password).to.equal('secret');
82
+ (0, chai_1.expect)(result.data.password).to.equal('[SCRUBBED]');
83
+ });
84
+ it('preserves optional property types', () => {
85
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['password'] });
86
+ const user = {
87
+ name: 'John',
88
+ email: 'john@example.com',
89
+ // phone is omitted
90
+ password: 'secret',
91
+ };
92
+ const _result = scrubber.scrub(user);
93
+ // Compile-time assertion
94
+ const typeCheck = true;
95
+ (0, chai_1.expect)(typeCheck).to.be.true;
96
+ });
97
+ });
98
+ describe('ScrubResult Type', () => {
99
+ it('has correct result structure', () => {
100
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['password'] });
101
+ const data = { user: 'john', password: 'secret' };
102
+ const result = scrubber.scrub(data);
103
+ // Type assertion: result should be ScrubResult
104
+ const typeCheck = true;
105
+ (0, chai_1.expect)(typeCheck).to.be.true;
106
+ // Runtime validation
107
+ (0, chai_1.expect)(result).to.have.property('data');
108
+ (0, chai_1.expect)(result).to.have.property('scrubbed');
109
+ (0, chai_1.expect)(result).to.have.property('scrubbedPaths');
110
+ (0, chai_1.expect)(result.scrubbed).to.be.a('boolean');
111
+ (0, chai_1.expect)(result.scrubbedPaths).to.be.an('array');
112
+ });
113
+ it('preserves input type in result.data', () => {
114
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['a'] });
115
+ const input = { a: 'test', b: 42, c: true };
116
+ const _result = scrubber.scrub(input);
117
+ // Compile-time assertion
118
+ const typeCheck = true;
119
+ (0, chai_1.expect)(typeCheck).to.be.true;
120
+ });
121
+ });
122
+ describe('ScrubConfig Type', () => {
123
+ it('accepts valid configurations', () => {
124
+ const config1 = {
125
+ fields: ['password', 'apiToken'],
126
+ };
127
+ const config2 = {
128
+ fields: ['password', /api[-_]?key/i],
129
+ paths: ['user.email'],
130
+ patterns: [/\d{3}-\d{2}-\d{4}/g],
131
+ replacement: '[REDACTED]',
132
+ };
133
+ const config3 = {
134
+ fields: [],
135
+ paths: [],
136
+ patterns: [],
137
+ recursive: false,
138
+ };
139
+ // All should be valid ScrubConfig types
140
+ (0, chai_1.expect)(config1).to.be.an('object');
141
+ (0, chai_1.expect)(config2).to.be.an('object');
142
+ (0, chai_1.expect)(config3).to.be.an('object');
143
+ });
144
+ it('allows partial configurations', () => {
145
+ const partial1 = {};
146
+ const partial2 = { fields: ['password'] };
147
+ const partial3 = { replacement: '[X]' };
148
+ (0, chai_1.expect)(partial1).to.be.an('object');
149
+ (0, chai_1.expect)(partial2).to.be.an('object');
150
+ (0, chai_1.expect)(partial3).to.be.an('object');
151
+ });
152
+ });
153
+ describe('Complex Type Scenarios', () => {
154
+ it('handles deeply nested generic types', () => {
155
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['secret'] });
156
+ const data = {
157
+ level1: {
158
+ level2: {
159
+ level3: {
160
+ level4: {
161
+ value: 42,
162
+ secret: 'hidden',
163
+ },
164
+ },
165
+ },
166
+ },
167
+ };
168
+ const _result = scrubber.scrub(data);
169
+ // Compile-time assertion
170
+ const typeCheck = true;
171
+ (0, chai_1.expect)(typeCheck).to.be.true;
172
+ });
173
+ it('handles arrays of complex types', () => {
174
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['email'] });
175
+ const events = [
176
+ {
177
+ id: '1',
178
+ timestamp: new Date(),
179
+ user: { id: 'u1', email: 'user1@example.com' },
180
+ metadata: { key: 'value' },
181
+ },
182
+ {
183
+ id: '2',
184
+ timestamp: new Date(),
185
+ user: { id: 'u2', email: 'user2@example.com' },
186
+ metadata: { key: 'value' },
187
+ },
188
+ ];
189
+ const _result = scrubber.scrub(events);
190
+ // Compile-time assertion
191
+ const typeCheck = true;
192
+ (0, chai_1.expect)(typeCheck).to.be.true;
193
+ });
194
+ it('handles Record types', () => {
195
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['password'] });
196
+ const users = {
197
+ user1: { name: 'John', password: 'secret1' },
198
+ user2: { name: 'Jane', password: 'secret2' },
199
+ };
200
+ const _result = scrubber.scrub(users);
201
+ // Compile-time assertion
202
+ const typeCheck = true;
203
+ (0, chai_1.expect)(typeCheck).to.be.true;
204
+ });
205
+ it('handles mixed primitive and object types', () => {
206
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['key'] });
207
+ const data = {
208
+ string: 'text',
209
+ number: 42,
210
+ boolean: true,
211
+ null: null,
212
+ undefined: undefined,
213
+ date: new Date(),
214
+ regex: /test/,
215
+ object: { key: 'value' },
216
+ array: [1, 2, 3],
217
+ };
218
+ const _result = scrubber.scrub(data);
219
+ // Compile-time assertion
220
+ const typeCheck = true;
221
+ (0, chai_1.expect)(typeCheck).to.be.true;
222
+ });
223
+ it('handles tuple types', () => {
224
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['password'] });
225
+ const tuple = ['John', 30, true, { password: 'secret' }];
226
+ const result = scrubber.scrub(tuple);
227
+ // Note: TypeScript treats tuples as arrays at runtime, so the type is preserved
228
+ // but the specific tuple structure is maintained
229
+ (0, chai_1.expect)(result.data).to.be.an('array');
230
+ (0, chai_1.expect)(result.data).to.have.lengthOf(4);
231
+ });
232
+ it('preserves type safety with unknown types', () => {
233
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['password'] });
234
+ const data = { user: 'john', password: 'secret' };
235
+ const _result = scrubber.scrub(data);
236
+ // Compile-time assertion: unknown in, unknown out
237
+ const typeCheck = true;
238
+ (0, chai_1.expect)(typeCheck).to.be.true;
239
+ });
240
+ });
241
+ describe('Type Inference', () => {
242
+ it('infers types from literal objects', () => {
243
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['password'] });
244
+ // Type should be inferred from the literal
245
+ const result = scrubber.scrub({
246
+ name: 'John',
247
+ email: 'john@example.com',
248
+ password: 'secret',
249
+ });
250
+ // TypeScript infers the exact shape
251
+ (0, chai_1.expect)(result.data).to.have.property('name');
252
+ (0, chai_1.expect)(result.data).to.have.property('email');
253
+ (0, chai_1.expect)(result.data).to.have.property('password');
254
+ });
255
+ it('works with const assertions', () => {
256
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['password'] });
257
+ const data = {
258
+ name: 'John',
259
+ role: 'admin',
260
+ password: 'secret',
261
+ };
262
+ // Type should preserve readonly properties from const assertion
263
+ const result = scrubber.scrub(data);
264
+ (0, chai_1.expect)(result.data.name).to.equal('John');
265
+ (0, chai_1.expect)(result.data.role).to.equal('admin');
266
+ });
267
+ });
268
+ describe('Edge Case Types', () => {
269
+ it('handles empty objects', () => {
270
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['password'] });
271
+ const empty = {};
272
+ const result = scrubber.scrub(empty);
273
+ const typeCheck = true;
274
+ (0, chai_1.expect)(typeCheck).to.be.true;
275
+ (0, chai_1.expect)(result.data).to.deep.equal({});
276
+ });
277
+ it('handles primitives directly', () => {
278
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['password'] });
279
+ const string = 'test';
280
+ const number = 42;
281
+ const boolean = true;
282
+ const nullVal = null;
283
+ (0, chai_1.expect)(scrubber.scrub(string).data).to.equal(string);
284
+ (0, chai_1.expect)(scrubber.scrub(number).data).to.equal(number);
285
+ (0, chai_1.expect)(scrubber.scrub(boolean).data).to.equal(boolean);
286
+ (0, chai_1.expect)(scrubber.scrub(nullVal).data).to.equal(nullVal);
287
+ });
288
+ it('handles circular references with type preservation', () => {
289
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['password'] });
290
+ const obj = {
291
+ name: 'test',
292
+ password: 'secret',
293
+ };
294
+ obj.self = obj; // Circular reference
295
+ const result = scrubber.scrub(obj);
296
+ // Type is preserved even with circular reference
297
+ const typeCheck = true;
298
+ (0, chai_1.expect)(typeCheck).to.be.true;
299
+ (0, chai_1.expect)(result.data.name).to.equal('test');
300
+ });
301
+ });
302
+ describe('Strict TypeScript Compliance', () => {
303
+ it('respects noUncheckedIndexedAccess', () => {
304
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['password'] });
305
+ const data = {
306
+ user: 'john',
307
+ password: 'secret',
308
+ };
309
+ const result = scrubber.scrub(data);
310
+ // With noUncheckedIndexedAccess, indexed access returns string | undefined
311
+ const value = result.data['nonexistent'];
312
+ (0, chai_1.expect)(value).to.be.undefined;
313
+ });
314
+ it('respects strictNullChecks', () => {
315
+ const scrubber = new scrubber_js_1.Scrubber({ fields: ['value'] });
316
+ const data = {
317
+ value: null,
318
+ };
319
+ const _result = scrubber.scrub(data);
320
+ // Compile-time assertion
321
+ const typeCheck = true;
322
+ (0, chai_1.expect)(typeCheck).to.be.true;
323
+ });
324
+ });
325
+ });
326
+ //# sourceMappingURL=types.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.test.js","sourceRoot":"","sources":["../../../src/core/types.test.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.createRedactor = exports.PII_PATTERNS = exports.PCI_FIELDS = exports.GDPR_FIELDS = exports.HEROKU_FIELDS = exports.Scrubber = void 0;
4
+ // Core exports
5
+ var scrubber_js_1 = require("./core/scrubber.js");
6
+ Object.defineProperty(exports, "Scrubber", { enumerable: true, get: function () { return scrubber_js_1.Scrubber; } });
7
+ var presets_js_1 = require("./core/presets.js");
8
+ Object.defineProperty(exports, "HEROKU_FIELDS", { enumerable: true, get: function () { return presets_js_1.HEROKU_FIELDS; } });
9
+ Object.defineProperty(exports, "GDPR_FIELDS", { enumerable: true, get: function () { return presets_js_1.GDPR_FIELDS; } });
10
+ Object.defineProperty(exports, "PCI_FIELDS", { enumerable: true, get: function () { return presets_js_1.PCI_FIELDS; } });
11
+ var patterns_js_1 = require("./core/patterns.js");
12
+ Object.defineProperty(exports, "PII_PATTERNS", { enumerable: true, get: function () { return patterns_js_1.PII_PATTERNS; } });
13
+ // Logging adapter
14
+ var generic_js_1 = require("./adapters/logging/generic.js");
15
+ Object.defineProperty(exports, "createRedactor", { enumerable: true, get: function () { return generic_js_1.createRedactor; } });
16
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;AAAA,eAAe;AACf,kDAA8C;AAArC,uGAAA,QAAQ,OAAA;AAEjB,gDAA2E;AAAlE,2GAAA,aAAa,OAAA;AAAE,yGAAA,WAAW,OAAA;AAAE,wGAAA,UAAU,OAAA;AAC/C,kDAAkD;AAAzC,2GAAA,YAAY,OAAA;AAErB,kBAAkB;AAClB,4DAA+D;AAAtD,4GAAA,cAAc,OAAA"}
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ // Integration test to verify the public API works correctly
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ const chai_1 = require("chai");
5
+ const index_js_1 = require("./index.js");
6
+ describe('js-blanket', () => {
7
+ it('creates and uses Scrubber instances for field-based scrubbing', () => {
8
+ (0, chai_1.expect)(index_js_1.Scrubber).to.be.a('function');
9
+ const scrubber = new index_js_1.Scrubber({ fields: ['password'] });
10
+ (0, chai_1.expect)(scrubber).to.be.instanceOf(index_js_1.Scrubber);
11
+ });
12
+ it('creates redactor instances that scrub sensitive data', () => {
13
+ (0, chai_1.expect)(index_js_1.createRedactor).to.be.a('function');
14
+ const redactor = (0, index_js_1.createRedactor)({ fields: ['password'] });
15
+ const result = redactor.scrub({ password: 'secret' });
16
+ (0, chai_1.expect)(result.data.password).to.equal('[SCRUBBED]');
17
+ });
18
+ it('provides HEROKU_FIELDS preset with standard Heroku sensitive fields', () => {
19
+ (0, chai_1.expect)(index_js_1.HEROKU_FIELDS).to.be.an('array');
20
+ (0, chai_1.expect)(index_js_1.HEROKU_FIELDS).to.include('password');
21
+ // Check for api_key pattern (can be string or regex)
22
+ const hasApiKey = index_js_1.HEROKU_FIELDS.some((field) => field === 'api_key' ||
23
+ (field instanceof RegExp && field.test('api_key')));
24
+ (0, chai_1.expect)(hasApiKey).to.be.true;
25
+ });
26
+ it('provides PII_PATTERNS preset with common PII regex patterns', () => {
27
+ (0, chai_1.expect)(index_js_1.PII_PATTERNS).to.be.an('array');
28
+ (0, chai_1.expect)(index_js_1.PII_PATTERNS.length).to.be.greaterThan(0);
29
+ });
30
+ });
31
+ //# sourceMappingURL=index.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.test.js","sourceRoot":"","sources":["../../src/index.test.ts"],"names":[],"mappings":";AAAA,4DAA4D;;AAE5D,+BAA8B;AAC9B,yCAKoB;AAEpB,QAAQ,CAAC,YAAY,EAAE,GAAG,EAAE;IAC1B,EAAE,CAAC,+DAA+D,EAAE,GAAG,EAAE;QACvE,IAAA,aAAM,EAAC,mBAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC;QACrC,MAAM,QAAQ,GAAG,IAAI,mBAAQ,CAAC,EAAE,MAAM,EAAE,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC;QACxD,IAAA,aAAM,EAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,UAAU,CAAC,mBAAQ,CAAC,CAAC;IAC9C,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,sDAAsD,EAAE,GAAG,EAAE;QAC9D,IAAA,aAAM,EAAC,yBAAc,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC;QAC3C,MAAM,QAAQ,GAAG,IAAA,yBAAc,EAAC,EAAE,MAAM,EAAE,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC;QAC1D,MAAM,MAAM,GAAG,QAAQ,CAAC,KAAK,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAC,CAAC;QACtD,IAAA,aAAM,EAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;IACtD,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,qEAAqE,EAAE,GAAG,EAAE;QAC7E,IAAA,aAAM,EAAC,wBAAa,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC;QACxC,IAAA,aAAM,EAAC,wBAAa,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;QAC7C,qDAAqD;QACrD,MAAM,SAAS,GAAG,wBAAa,CAAC,IAAI,CAClC,CAAC,KAAK,EAAE,EAAE,CACR,KAAK,KAAK,SAAS;YACnB,CAAC,KAAK,YAAY,MAAM,IAAI,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CACrD,CAAC;QACF,IAAA,aAAM,EAAC,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,IAAI,CAAC;IAC/B,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,6DAA6D,EAAE,GAAG,EAAE;QACrE,IAAA,aAAM,EAAC,uBAAY,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC;QACvC,IAAA,aAAM,EAAC,uBAAY,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;IACnD,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
@@ -0,0 +1 @@
1
+ {"type": "commonjs"}
@@ -0,0 +1 @@
1
+ {"fileNames":["../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.d.ts","../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/modules/index.d.ts","../../node_modules/.pnpm/@types+deep-eql@4.0.2/node_modules/@types/deep-eql/index.d.ts","../../node_modules/.pnpm/assertion-error@2.0.1/node_modules/assertion-error/index.d.ts","../../node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai/index.d.ts","../../src/core/types.ts","../../src/core/scrubber.ts","../../src/core/presets.ts","../../src/core/patterns.ts","../../src/adapters/logging/generic.ts","../../src/index.ts","../../src/index.test.ts","../../src/adapters/logging/generic.test.ts","../../node_modules/.pnpm/@types+mocha@10.0.10/node_modules/@types/mocha/index.d.ts","../../src/core/scrubber.test.ts","../../src/core/types.test.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/web-globals/crypto.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/web-globals/events.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/utility.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/client-stats.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/h2c-client.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-call-history.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/snapshot-agent.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/retry-handler.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/retry-agent.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cache-interceptor.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/util.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/eventsource.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/web-globals/navigator.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/web-globals/storage.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/web-globals/streams.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/inspector.generated.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/sqlite.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@24.10.0/node_modules/@types/node/index.d.ts"],"fileIdsList":[[62,63,78,132,149,150],[78,132,149,150],[78,129,130,132,149,150],[78,131,132,149,150],[132,149,150],[78,132,137,149,150,167],[78,132,133,138,143,149,150,152,164,175],[78,132,133,134,143,149,150,152],[78,132,135,149,150,176],[78,132,136,137,144,149,150,153],[78,132,137,149,150,164,172],[78,132,138,140,143,149,150,152],[78,131,132,139,149,150],[78,132,140,141,149,150],[78,132,142,143,149,150],[78,131,132,143,149,150],[78,132,143,144,145,149,150,164,175],[78,132,143,144,145,149,150,159,164,167],[78,124,132,140,143,146,149,150,152,164,175],[78,132,143,144,146,147,149,150,152,164,172,175],[78,132,146,148,149,150,164,172,175],[76,77,78,79,80,81,82,83,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181],[78,132,143,149,150],[78,132,149,150,151,175],[78,132,140,143,149,150,152,164],[78,132,149,150,153],[78,132,149,150,154],[78,131,132,149,150,155],[78,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181],[78,132,149,150,157],[78,132,149,150,158],[78,132,143,149,150,159,160],[78,132,149,150,159,161,176,178],[78,132,144,149,150],[78,132,143,149,150,164,165,167],[78,132,149,150,166,167],[78,132,149,150,164,165],[78,132,149,150,167],[78,132,149,150,168],[78,129,132,149,150,164,169],[78,132,143,149,150,170,171],[78,132,149,150,170,171],[78,132,137,149,150,152,164,172],[78,132,149,150,173],[78,132,149,150,152,174],[78,132,146,149,150,158,175],[78,132,137,149,150,176],[78,132,149,150,164,177],[78,132,149,150,151,178],[78,132,149,150,179],[78,132,137,149,150],[78,124,132,149,150],[78,132,149,150,180],[78,124,132,143,145,149,150,155,164,167,175,177,178,180],[78,132,149,150,164,181],[60,78,132,149,150],[78,90,93,96,97,132,149,150,175],[78,93,132,149,150,164,175],[78,93,97,132,149,150,175],[78,132,149,150,164],[78,87,132,149,150],[78,91,132,149,150],[78,89,90,93,132,149,150,175],[78,132,149,150,152,172],[78,132,149,150,182],[78,87,132,149,150,182],[78,89,93,132,149,150,152,175],[78,84,85,86,88,92,132,143,149,150,164,175],[78,93,101,109,132,149,150],[78,85,91,132,149,150],[78,93,118,119,132,149,150],[78,85,88,93,132,149,150,167,175,182],[78,93,132,149,150],[78,89,93,132,149,150,175],[78,84,132,149,150],[78,87,88,89,91,92,93,94,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,119,120,121,122,123,132,149,150],[78,93,111,114,132,140,149,150],[78,93,101,102,103,132,149,150],[78,91,93,102,104,132,149,150],[78,92,132,149,150],[78,85,87,93,132,149,150],[78,93,97,102,104,132,149,150],[78,97,132,149,150],[78,91,93,96,132,149,150,175],[78,85,89,93,101,132,149,150],[78,93,111,132,149,150],[78,104,132,149,150],[78,87,93,118,132,149,150,167,180,182],[61,64,66,67,69,78,132,149,150],[61,65,66,78,132,149,150],[61,78,132,149,150],[61,64,66,73,78,132,149,150],[61,65,78,132,149,150],[61,64,65,66,78,132,149,150],[61,64,70,78,132,149,150],[61,65,66,67,68,69,78,132,149,150]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"b8f34dd1757f68e03262b1ca3ddfa668a855b872f8bdd5224d6f993a7b37dc2c","impliedFormat":99},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"88363efdc4dd4fff542fd10134b08da3c76cefd7442ba7f903c6c7cd0ef5f3ae","signature":"7a45559cac860b4186ac707f9babf6c105c39201bf3d8df0c0713c5ee0cb5da8","impliedFormat":99},{"version":"cac8de43de55ba361b5d65ecfd84fb6d1136e3f81159d5f909d334aad69d3532","signature":"b06ca97ed0b028d058c984c0bda0de92a406970b954d1cf93a9f61a57630383f","impliedFormat":99},{"version":"e320031f6a9f7e74bad3aea906b2dbba16b062c305007dfe8be5c9a62b126b2f","signature":"284149b4349fbf356a83a60ae85b7d145c50467534253508e8c0bf72155a9680","impliedFormat":99},{"version":"8e67722305151824ddc9fdf48e961a67894445b89111433d9ea589676966803b","signature":"433874fb94e8b6846b1b90af86ebe21ba003adb6f7338b8341a1820f6452f6ba","impliedFormat":99},{"version":"e66aff0d49e27c846ebbef787a9cfed9660b9d7ce530ea2adac53315ae53bb6d","signature":"b5ad2ee5b65cf29c1f143d0a31d9026c5c8bc87c0463324650cbc63a9fcb2d2d","impliedFormat":99},{"version":"193be66301ef4a29447eed93d0f0d64058f4edb3901e5c86cb4bb007c7fec12d","signature":"f12d6f16d9694931a94b0109001f29bb87d1747a5e693152125fe627526ba089","impliedFormat":99},{"version":"a812c5fd971304a09245468ac8072330eb34f221e0e69389ab1c4a150928a77f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"4b40bc21d3d5723fccff4ce2bee7762124fee03703554c8ffaa7bea34456068d","signature":"c0347eaa09981d652027e7099f4b684a591bd7828c66e41101d2ca22f6d700b4","impliedFormat":99},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true,"impliedFormat":1},{"version":"01dc440ac098ac27499eb6247f1629671f480f93629858a8b3faf98142960c52","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"ebee0ee61d696a5fc81f2f503a87c474281c654233c06864d86a5ee4dd35ceb5","signature":"172745eb17c7027f0f18f43138535b9a9b6b5fc1201bec6887f64881d5446885","impliedFormat":99},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"378281aa35786c27d5811af7e6bcaa492eebd0c7013d48137c35bbc69a2b9751","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b2dd1cbeb0cc6ae20795958ba5950395ebb2849b7c8326853dd15530c77ab0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"830171b27c5fdf9bcbe4cf7d428fcf3ae2c67780fb7fbdccdf70d1623d938bc4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ea15fd99b2e34cb25fe8346c955000bb70c8b423ae4377a972ef46bfb37f595","impliedFormat":1},{"version":"7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"f9b4137a0d285bd77dba2e6e895530112264310ae47e07bf311feae428fb8b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b21e13ed07d0df176ae31d6b7f01f7b17d66dbeb489c0d31d00de2ca14883da","impliedFormat":1},{"version":"51aecd2df90a3cffea1eb4696b33b2d78594ea2aa2138e6b9471ec4841c6c2ee","impliedFormat":1},{"version":"9d8f9e63e29a3396285620908e7f14d874d066caea747dc4b2c378f0599166b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"f929f0b6b3421a2d34344b0f421f45aeb2c84ad365ebf29d04312023b3accc58","impliedFormat":1},{"version":"db9ada976f9e52e13f7ae8b9a320f4b67b87685938c5879187d8864b2fbe97f3","impliedFormat":1},{"version":"9f39e70a354d0fba29ac3cdf6eca00b7f9e96f64b2b2780c432e8ea27f133743","impliedFormat":1},{"version":"0dace96cc0f7bc6d0ee2044921bdf19fe42d16284dbcc8ae200800d1c9579335","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"c64e1888baaa3253ca4405b455e4bf44f76357868a1bd0a52998ade9a092ad78","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8cf132379078d0974a59df26069689a2d33c7dc826b5be56231841cb2f32e58","impliedFormat":1},{"version":"fbf413fc617837453c878a9174a1f1b383616857a3f8366bc41cf30df4aea7d5","impliedFormat":1},{"version":"148c73ec11318850f571172ceae3e55ce479d850fe18ec8eae0abd99d9f6c319","impliedFormat":1},{"version":"230bdc111d7578276e4a3bb9d075d85c78c6b68f428c3a9935e2eaa10f4ae1f5","impliedFormat":1},{"version":"e8aabbee5e7b9101b03bb4222607d57f38859b8115a8050a4eb91b4ee43a3a73","impliedFormat":1},{"version":"bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d","impliedFormat":1},{"version":"c0bb1b65757c72bbf8ddf7eaa532223bacf58041ff16c883e76f45506596e925","impliedFormat":1},{"version":"c8b85f7aed29f8f52b813f800611406b0bfe5cf3224d20a4bdda7c7f73ce368e","affectsGlobalScope":true,"impliedFormat":1},{"version":"145dcf25fd4967c610c53d93d7bc4dce8fbb1b6dd7935362472d4ae49363c7ba","impliedFormat":1},{"version":"ff65b8a8bd380c6d129becc35de02f7c29ad7ce03300331ca91311fb4044d1a9","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"9043daec15206650fa119bad6b8d70136021ea7d52673a71f79a87a42ee38d44","affectsGlobalScope":true,"impliedFormat":1},{"version":"8ba0db41ed773e152647a78e9053e36a747891db41d6a51c7030a0d0f01babb2","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"5fb39858b2459864b139950a09adae4f38dad87c25bf572ce414f10e4bd7baab","impliedFormat":1},{"version":"65faec1b4bd63564aeec33eab9cacfaefd84ce2400f03903a71a1841fbce195f","impliedFormat":1},{"version":"b33b74b97952d9bf4fbd2951dcfbb5136656ddb310ce1c84518aaa77dbca9992","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"6b306cd4282bbb54d4a6bb23cfb7a271160983dfc38c67b5a132504cfcc34896","affectsGlobalScope":true,"impliedFormat":1},{"version":"c119835edf36415081dfd9ed15fc0cd37aaa28d232be029ad073f15f3d88c323","impliedFormat":1},{"version":"450172a56b944c2d83f45cc11c9a388ea967cd301a21202aa0a23c34c7506a18","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"72f8936aebf0c4a1adab767b97d34ba7d3a308afcf76de4417b9c16fb92ed548","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"69e0a41d620fb678a899c65e073413b452f4db321b858fe422ad93fd686cd49a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3585d6891e9ea18e07d0755a6d90d71331558ba5dc5561933553209f886db106","affectsGlobalScope":true,"impliedFormat":1},{"version":"86be71cbb0593468644932a6eb96d527cfa600cecfc0b698af5f52e51804451d","impliedFormat":1},{"version":"84dd6b0fd2505135692935599d6606f50a421389e8d4535194bcded307ee5cf2","impliedFormat":1},{"version":"0d5b085f36e6dc55bc6332ecb9c733be3a534958c238fb8d8d18d4a2b6f2a15a","impliedFormat":1},{"version":"db19ea066fdc5f97df3f769e582ae3000380ab7942e266654bdb1a4650d19eaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"2a034894bf28c220a331c7a0229d33564803abe2ac1b9a5feee91b6b9b6e88ea","impliedFormat":1},{"version":"d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77","impliedFormat":1}],"root":[[65,72],74,75],"options":{"allowImportingTsExtensions":false,"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"importHelpers":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"../../src","skipDefaultLibCheck":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[64,1],[62,2],[73,2],[129,3],[130,3],[131,4],[78,5],[132,6],[133,7],[134,8],[76,2],[135,9],[136,10],[137,11],[138,12],[139,13],[140,14],[141,14],[142,15],[143,16],[144,17],[145,18],[79,2],[77,2],[146,19],[147,20],[148,21],[182,22],[149,23],[150,2],[151,24],[152,25],[153,26],[154,27],[155,28],[156,29],[157,30],[158,31],[159,32],[160,32],[161,33],[162,2],[163,34],[164,35],[166,36],[165,37],[167,38],[168,39],[169,40],[170,41],[171,42],[172,43],[173,44],[174,45],[175,46],[176,47],[177,48],[178,49],[179,50],[80,2],[81,51],[82,2],[83,2],[125,52],[126,53],[127,2],[128,38],[180,54],[181,55],[63,2],[61,56],[60,2],[58,2],[59,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[20,2],[21,2],[4,2],[22,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[37,2],[34,2],[35,2],[36,2],[38,2],[7,2],[39,2],[44,2],[45,2],[40,2],[41,2],[42,2],[43,2],[8,2],[49,2],[46,2],[47,2],[48,2],[50,2],[9,2],[51,2],[52,2],[53,2],[55,2],[54,2],[1,2],[56,2],[57,2],[101,57],[113,58],[99,59],[114,60],[123,61],[90,62],[91,63],[89,64],[122,65],[117,66],[121,67],[93,68],[110,69],[92,70],[120,71],[87,72],[88,66],[94,73],[95,2],[100,74],[98,73],[85,75],[124,76],[115,77],[104,78],[103,73],[105,79],[108,80],[102,81],[106,82],[118,65],[96,83],[97,84],[109,85],[86,60],[112,86],[111,73],[107,87],[116,2],[84,2],[119,88],[72,89],[69,90],[68,91],[67,91],[74,92],[66,93],[75,94],[65,91],[71,95],[70,96]],"version":"5.9.3"}
@@ -1,6 +1,5 @@
1
1
  import { Scrubber } from '../../core/scrubber.js';
2
2
  import { ScrubConfig } from '../../core/types.js';
3
-
4
3
  /**
5
4
  * Create a generic redactor for use with any logging library
6
5
  *
@@ -16,6 +15,4 @@ import { ScrubConfig } from '../../core/types.js';
16
15
  * console.log(scrubbed.data); // { user: { password: '[SCRUBBED]' } }
17
16
  * ```
18
17
  */
19
- export function createRedactor(config: ScrubConfig) {
20
- return new Scrubber(config);
21
- }
18
+ export declare function createRedactor(config: ScrubConfig): Scrubber;
@@ -0,0 +1,20 @@
1
+ import { Scrubber } from '../../core/scrubber.js';
2
+ /**
3
+ * Create a generic redactor for use with any logging library
4
+ *
5
+ * @example
6
+ * ```typescript
7
+ * const redactor = createRedactor({
8
+ * fields: HEROKU_FIELDS,
9
+ * paths: ['request.headers.Authorization'],
10
+ * patterns: PII_PATTERNS
11
+ * });
12
+ *
13
+ * const scrubbed = redactor.scrub({ user: { password: 'secret' } });
14
+ * console.log(scrubbed.data); // { user: { password: '[SCRUBBED]' } }
15
+ * ```
16
+ */
17
+ export function createRedactor(config) {
18
+ return new Scrubber(config);
19
+ }
20
+ //# sourceMappingURL=generic.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generic.js","sourceRoot":"","sources":["../../../../src/adapters/logging/generic.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAGlD;;;;;;;;;;;;;;GAcG;AACH,MAAM,UAAU,cAAc,CAAC,MAAmB;IAChD,OAAO,IAAI,QAAQ,CAAC,MAAM,CAAC,CAAC;AAC9B,CAAC"}
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Tests for Generic Logging Adapter
3
+ *
4
+ * The generic adapter is a thin wrapper around the core Scrubber,
5
+ * designed for use with any logging library (Winston, Pino, Bunyan, etc.)
6
+ */
7
+ export {};