@pristine-ts/data-mapping-common 2.0.8 → 2.0.10

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 (78) hide show
  1. package/dist/lib/cjs/builders/auto-data-mapping.builder.js +36 -1
  2. package/dist/lib/cjs/builders/auto-data-mapping.builder.js.map +1 -1
  3. package/dist/lib/cjs/builders/data-mapping.builder.js +7 -6
  4. package/dist/lib/cjs/builders/data-mapping.builder.js.map +1 -1
  5. package/dist/lib/cjs/data-mapping-common.js +1 -0
  6. package/dist/lib/cjs/data-mapping-common.js.map +1 -1
  7. package/dist/lib/cjs/errors/data-normalizer-not-found.error.js +15 -0
  8. package/dist/lib/cjs/errors/data-normalizer-not-found.error.js.map +1 -0
  9. package/dist/lib/cjs/errors/errors.js +3 -0
  10. package/dist/lib/cjs/errors/errors.js.map +1 -1
  11. package/dist/lib/cjs/errors/undefined-destination-property.error.js +14 -0
  12. package/dist/lib/cjs/errors/undefined-destination-property.error.js.map +1 -0
  13. package/dist/lib/cjs/mappers/data.mapper.js +15 -7
  14. package/dist/lib/cjs/mappers/data.mapper.js.map +1 -1
  15. package/dist/lib/cjs/nodes/base-data-mapping.node.js +4 -0
  16. package/dist/lib/cjs/nodes/base-data-mapping.node.js.map +1 -1
  17. package/dist/lib/cjs/nodes/data-mapping.leaf.js +36 -11
  18. package/dist/lib/cjs/nodes/data-mapping.leaf.js.map +1 -1
  19. package/dist/lib/cjs/nodes/data-mapping.node.js +119 -49
  20. package/dist/lib/cjs/nodes/data-mapping.node.js.map +1 -1
  21. package/dist/lib/cjs/options/auto-data-mapping-builder.options.js +2 -1
  22. package/dist/lib/cjs/options/auto-data-mapping-builder.options.js.map +1 -1
  23. package/dist/lib/cjs/reporters/console-error.reporter.js +23 -0
  24. package/dist/lib/cjs/reporters/console-error.reporter.js.map +1 -0
  25. package/dist/lib/cjs/reporters/reporters.js +18 -0
  26. package/dist/lib/cjs/reporters/reporters.js.map +1 -0
  27. package/dist/lib/cjs/tsconfig.cjs.tsbuildinfo +1 -1
  28. package/dist/lib/cjs/types/data-mapper-error-reporter.type.js +3 -0
  29. package/dist/lib/cjs/types/data-mapper-error-reporter.type.js.map +1 -0
  30. package/dist/lib/cjs/types/types.js +1 -0
  31. package/dist/lib/cjs/types/types.js.map +1 -1
  32. package/dist/lib/esm/builders/auto-data-mapping.builder.js +36 -1
  33. package/dist/lib/esm/builders/auto-data-mapping.builder.js.map +1 -1
  34. package/dist/lib/esm/builders/data-mapping.builder.js +7 -6
  35. package/dist/lib/esm/builders/data-mapping.builder.js.map +1 -1
  36. package/dist/lib/esm/data-mapping-common.js +1 -0
  37. package/dist/lib/esm/data-mapping-common.js.map +1 -1
  38. package/dist/lib/esm/errors/data-normalizer-not-found.error.js +11 -0
  39. package/dist/lib/esm/errors/data-normalizer-not-found.error.js.map +1 -0
  40. package/dist/lib/esm/errors/errors.js +3 -0
  41. package/dist/lib/esm/errors/errors.js.map +1 -1
  42. package/dist/lib/esm/errors/undefined-destination-property.error.js +10 -0
  43. package/dist/lib/esm/errors/undefined-destination-property.error.js.map +1 -0
  44. package/dist/lib/esm/mappers/data.mapper.js +15 -7
  45. package/dist/lib/esm/mappers/data.mapper.js.map +1 -1
  46. package/dist/lib/esm/nodes/base-data-mapping.node.js +4 -0
  47. package/dist/lib/esm/nodes/base-data-mapping.node.js.map +1 -1
  48. package/dist/lib/esm/nodes/data-mapping.leaf.js +36 -11
  49. package/dist/lib/esm/nodes/data-mapping.leaf.js.map +1 -1
  50. package/dist/lib/esm/nodes/data-mapping.node.js +119 -49
  51. package/dist/lib/esm/nodes/data-mapping.node.js.map +1 -1
  52. package/dist/lib/esm/options/auto-data-mapping-builder.options.js +2 -1
  53. package/dist/lib/esm/options/auto-data-mapping-builder.options.js.map +1 -1
  54. package/dist/lib/esm/reporters/console-error.reporter.js +19 -0
  55. package/dist/lib/esm/reporters/console-error.reporter.js.map +1 -0
  56. package/dist/lib/esm/reporters/reporters.js +2 -0
  57. package/dist/lib/esm/reporters/reporters.js.map +1 -0
  58. package/dist/lib/esm/tsconfig.tsbuildinfo +1 -1
  59. package/dist/lib/esm/types/data-mapper-error-reporter.type.js +2 -0
  60. package/dist/lib/esm/types/data-mapper-error-reporter.type.js.map +1 -0
  61. package/dist/lib/esm/types/types.js +1 -0
  62. package/dist/lib/esm/types/types.js.map +1 -1
  63. package/dist/types/builders/auto-data-mapping.builder.d.ts +16 -0
  64. package/dist/types/builders/data-mapping.builder.d.ts +3 -2
  65. package/dist/types/data-mapping-common.d.ts +1 -0
  66. package/dist/types/errors/data-normalizer-not-found.error.d.ts +8 -0
  67. package/dist/types/errors/errors.d.ts +3 -0
  68. package/dist/types/errors/undefined-destination-property.error.d.ts +8 -0
  69. package/dist/types/interfaces/data-mapping-interceptor.interface.d.ts +6 -2
  70. package/dist/types/mappers/data.mapper.d.ts +15 -1
  71. package/dist/types/nodes/data-mapping.leaf.d.ts +11 -0
  72. package/dist/types/nodes/data-mapping.node.d.ts +54 -2
  73. package/dist/types/options/auto-data-mapping-builder.options.d.ts +12 -0
  74. package/dist/types/reporters/console-error.reporter.d.ts +16 -0
  75. package/dist/types/reporters/reporters.d.ts +1 -0
  76. package/dist/types/types/data-mapper-error-reporter.type.d.ts +21 -0
  77. package/dist/types/types/types.d.ts +1 -0
  78. package/package.json +3 -3
@@ -114,61 +114,125 @@ export class DataMappingNode extends BaseDataMappingNode {
114
114
  if (sourceElement === undefined) {
115
115
  return;
116
116
  }
117
+ // Whether source-keyed properties should be carried through to the destination.
118
+ // When `excludeExtraneousValues === true`, only renamed destination keys (written by
119
+ // sub-nodes below) end up on the destination — source keys are dropped.
120
+ const includeSourceKeys = (options === null || options === void 0 ? void 0 : options.excludeExtraneousValues) === false;
117
121
  if (this.type === DataMappingNodeTypeEnum.ObjectArray) {
122
+ // Array case: handled below in its own loop. Just pre-allocate the array here.
118
123
  destination[this.destinationProperty] = [];
119
124
  }
120
125
  else {
121
- if (this.destinationType) {
122
- destination[this.destinationProperty] = plainToInstance(this.destinationType, sourceElement);
123
- }
124
- else {
125
- destination[this.destinationProperty] = {};
126
- }
127
- if ((options === null || options === void 0 ? void 0 : options.excludeExtraneousValues) === false) {
128
- if (typeof sourceElement === "object" || Array.isArray(sourceElement)) {
129
- Object.keys(sourceElement).forEach(property => {
130
- destination[this.destinationProperty][property] = sourceElement[property];
131
- });
132
- }
133
- }
126
+ // Single-object case: build the destination value once, then let sub-nodes overlay
127
+ // renamed keys onto it.
128
+ destination[this.destinationProperty] = this.buildDestinationObject(sourceElement, includeSourceKeys);
134
129
  }
135
130
  const destinationElement = destination[this.destinationProperty];
136
131
  if (this.type === DataMappingNodeTypeEnum.ObjectArray) {
137
- // This means that the source[propertyKey] contains an array of objects and each object should be mapped
138
- const array = source[this.sourceProperty];
139
- if (Array.isArray(array) === false) {
140
- throw new ArrayDataMappingNodeInvalidSourcePropertyTypeError(`According to your schema, the property '${this.sourceProperty}' in the source object must contain an Array of objects. Instead, it contains: '${typeof array}'.`, this.sourceProperty);
132
+ const sourceArray = source[this.sourceProperty];
133
+ if (Array.isArray(sourceArray) === false) {
134
+ throw new ArrayDataMappingNodeInvalidSourcePropertyTypeError(`According to your schema, the property '${this.sourceProperty}' in the source object must contain an Array of objects. Instead, it contains: '${typeof sourceArray}'.`, this.sourceProperty);
141
135
  }
142
- let index = 0;
143
- for (const element of array) {
144
- let dest = {};
145
- if (this.destinationType) {
146
- if (typeof this.destinationType === "function" && !this.destinationType.prototype) {
147
- const destinationType = this.destinationType;
148
- dest = plainToInstance(destinationType(source, this.sourceProperty, index).constructor, (options === null || options === void 0 ? void 0 : options.excludeExtraneousValues) === false ? element : {});
149
- }
150
- else if (this.destinationType.prototype) {
151
- dest = plainToInstance(this.destinationType, {});
152
- }
153
- }
154
- if ((options === null || options === void 0 ? void 0 : options.excludeExtraneousValues) === false) {
155
- Object.keys(element).forEach(property => {
156
- dest[property] = element[property];
157
- });
158
- }
159
- for (const key in this.nodes) {
160
- if (this.nodes.hasOwnProperty(key) === false) {
161
- continue;
162
- }
163
- const node = this.nodes[key];
164
- yield node.map(element, dest, normalizersMap, options);
165
- }
136
+ // For each source element: build the destination object (whose concrete class may
137
+ // depend on the element index when `destinationType` is a factory callback), let the
138
+ // sub-nodes overlay their renamed keys, then push.
139
+ for (let index = 0; index < sourceArray.length; index++) {
140
+ const element = sourceArray[index];
141
+ const dest = this.buildArrayMemberDestination(source, element, index, includeSourceKeys);
142
+ yield this.runSubNodes(element, dest, normalizersMap, options);
166
143
  destinationElement.push(dest);
167
144
  }
168
- index++;
169
145
  return;
170
146
  }
171
- // When the current node is not an array, we simply iterate
147
+ // Single-object case: sub-nodes write into the destination we just built above.
148
+ yield this.runSubNodes(sourceElement, destinationElement, normalizersMap, options);
149
+ });
150
+ }
151
+ /**
152
+ * Build the destination object for the single-object case.
153
+ *
154
+ * If a `destinationType` (class constructor) is set, instantiate the class. Otherwise return
155
+ * a plain object. When `includeSourceKeys` is true, the source's own enumerable properties are
156
+ * seeded onto the result so they survive the mapping; sub-nodes then overlay renamed keys on top.
157
+ *
158
+ * Note: the single-object case treats `destinationType` strictly as a class constructor.
159
+ * Factory callbacks only make sense for the per-element ObjectArray case below.
160
+ */
161
+ buildDestinationObject(sourceElement, includeSourceKeys) {
162
+ const seedFromSource = includeSourceKeys
163
+ && sourceElement !== null
164
+ && (typeof sourceElement === "object" || Array.isArray(sourceElement));
165
+ if (this.destinationType !== undefined) {
166
+ return plainToInstance(this.destinationType, seedFromSource ? sourceElement : {});
167
+ }
168
+ const result = {};
169
+ if (seedFromSource) {
170
+ Object.keys(sourceElement).forEach(property => {
171
+ result[property] = sourceElement[property];
172
+ });
173
+ }
174
+ return result;
175
+ }
176
+ /**
177
+ * Build the destination object for a single element of an ObjectArray. Mirrors
178
+ * `buildDestinationObject`, with two extra wrinkles unique to arrays:
179
+ *
180
+ * 1. `destinationType` can be a *factory callback* instead of a fixed class. The callback
181
+ * receives the source array's parent + the element's index and returns an instance of
182
+ * the concrete class to use. This is how polymorphic arrays work (e.g. some elements
183
+ * become `Cat`, others `Dog`).
184
+ * 2. The seed value is the per-element object, not the whole array.
185
+ */
186
+ buildArrayMemberDestination(source, element, index, includeSourceKeys) {
187
+ const seedFromSource = includeSourceKeys && element !== null && typeof element === "object";
188
+ if (this.destinationType === undefined) {
189
+ // Untyped array — produce a plain object, optionally seeded with the element's own keys.
190
+ const result = {};
191
+ if (seedFromSource) {
192
+ Object.keys(element).forEach(property => {
193
+ result[property] = element[property];
194
+ });
195
+ }
196
+ return result;
197
+ }
198
+ const memberConstructor = this.resolveArrayMemberConstructor(source, index);
199
+ return plainToInstance(memberConstructor, seedFromSource ? element : {});
200
+ }
201
+ /**
202
+ * Resolve the concrete class constructor for a single element of an ObjectArray.
203
+ *
204
+ * `destinationType` here is one of two things:
205
+ *
206
+ * - a **class constructor** (uniform array — every element maps to the same class), or
207
+ * - a **factory callback** of shape `(source, sourceProperty, index) => instance`
208
+ * (polymorphic array — class is chosen per element).
209
+ *
210
+ * JavaScript gives us no clean way to distinguish a class constructor from a callback —
211
+ * both are `typeof === "function"`. The conventional discriminant: a class constructor has
212
+ * a `.prototype` object (where its instance methods live); an arrow function does not.
213
+ *
214
+ * Caveat: a regular `function() { ... }` expression used as a callback would also have a
215
+ * `.prototype` and would be mis-classified as a class. The public type only documents the
216
+ * arrow-function form (`ArrayMemberTypeFactoryCallbackType = (...) => any`), and in practice
217
+ * callers use arrow functions, so this is safe for documented usage.
218
+ */
219
+ resolveArrayMemberConstructor(source, index) {
220
+ const destinationType = this.destinationType;
221
+ const isFactoryCallback = typeof destinationType === "function"
222
+ && destinationType.prototype === undefined;
223
+ if (isFactoryCallback) {
224
+ const factory = destinationType;
225
+ const sampleInstance = factory(source, this.sourceProperty, index);
226
+ return sampleInstance.constructor;
227
+ }
228
+ return destinationType;
229
+ }
230
+ /**
231
+ * Run every direct child node against `(sourceElement, destinationElement)`. Each child
232
+ * writes its mapped destination property onto `destinationElement`.
233
+ */
234
+ runSubNodes(sourceElement, destinationElement, normalizersMap, options) {
235
+ return __awaiter(this, void 0, void 0, function* () {
172
236
  for (const key in this.nodes) {
173
237
  if (this.nodes.hasOwnProperty(key) === false) {
174
238
  continue;
@@ -212,22 +276,28 @@ export class DataMappingNode extends BaseDataMappingNode {
212
276
  }
213
277
  }
214
278
  /**
215
- * This method exports this node.
279
+ * This method exports this node. The exported representation is a plain object — it does not mutate
280
+ * the live tree, so the same builder can continue to be used for mapping after `export()` is called.
281
+ *
282
+ * `destinationType` is intentionally not serialized: class constructors aren't transferable, and
283
+ * factory callbacks (`ArrayMemberTypeFactoryCallbackType`) hold closures. To rehydrate a schema with
284
+ * the same destination instantiation behavior, decorate the destination class with class-transformer's
285
+ * `@Type()` and pass the destination class to `DataMapper.map()`.
216
286
  */
217
287
  export() {
218
- const nodes = this.nodes;
219
- for (const key in nodes) {
220
- if (nodes.hasOwnProperty(key) === false) {
288
+ const exportedNodes = {};
289
+ for (const key in this.nodes) {
290
+ if (this.nodes.hasOwnProperty(key) === false) {
221
291
  continue;
222
292
  }
223
- nodes[key] = nodes[key].export();
293
+ exportedNodes[key] = this.nodes[key].export();
224
294
  }
225
295
  return {
226
296
  "_type": this.type,
227
297
  "sourceProperty": this.sourceProperty,
228
298
  "destinationProperty": this.destinationProperty,
229
299
  "isOptional": this.isOptional,
230
- "nodes": nodes,
300
+ "nodes": exportedNodes,
231
301
  };
232
302
  }
233
303
  }
@@ -1 +1 @@
1
- {"version":3,"file":"data-mapping.node.js","sourceRoot":"","sources":["../../../../src/nodes/data-mapping.node.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"data-mapping.node.js","sourceRoot":"","sources":["../../../../src/nodes/data-mapping.node.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAC,uBAAuB,EAAC,MAAM,sCAAsC,CAAC;AAC7E,OAAO,EAAC,eAAe,EAAC,MAAM,qBAAqB,CAAC;AAEpD,OAAO,EAAC,mBAAmB,EAAC,MAAM,0BAA0B,CAAC;AAC7D,OAAO,EAAC,sCAAsC,EAAC,MAAM,wDAAwD,CAAC;AAG9G,OAAO,EAAC,kDAAkD,EAAC,MAAM,sEAAsE,CAAC;AACxI,OAAO,EAAmB,eAAe,EAAC,MAAM,mBAAmB,CAAC;AAIpE,MAAM,OAAO,eAAgB,SAAQ,mBAAmB;IAqBtD,YAA4B,IAAwB,EACxB,MAA4C,EAC5C,OAAgC,uBAAuB,CAAC,IAAI;QAEtF,KAAK,EAAE,CAAC;QAJkB,SAAI,GAAJ,IAAI,CAAoB;QACxB,WAAM,GAAN,MAAM,CAAsC;QAC5C,SAAI,GAAJ,IAAI,CAAwD;QAZxF;;WAEG;QACI,eAAU,GAAY,KAAK,CAAC;IAYnC,CAAC;IAED;;;OAGG;IACI,iBAAiB,CAAC,cAAsB;QAC7C,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QACrC,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;OAGG;IACI,sBAAsB,CAAC,mBAA2B;QACvD,IAAI,CAAC,mBAAmB,GAAG,mBAAmB,CAAC;QAC/C,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;OAGG;IACI,kBAAkB,CAAC,eAA2E;QACnG,IAAI,CAAC,eAAe,GAAG,eAAe,CAAC;QACvC,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;OAGG;IACI,aAAa,CAAC,UAAmB;QACtC,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAE7B,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;OAGG;IACI,GAAG;QACR,OAAO,IAAI,eAAe,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;IAC9C,CAAC;IAED;;;OAGG;IACI,eAAe;QACpB,OAAO,IAAI,eAAe,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;IAC9C,CAAC;IAED;;;;;OAKG;IACI,gBAAgB;QACrB,OAAO,IAAI,eAAe,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,uBAAuB,CAAC,WAAW,CAAC,CAAC;IACnF,CAAC;IAED;;;OAGG;IACI,iBAAiB;QACtB,OAAO,IAAI,eAAe,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,uBAAuB,CAAC,WAAW,CAAC,CAAC;IACnF,CAAC;IAED;;OAEG;IACI,GAAG;QACR,uHAAuH;QACvH,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;QAEzB,OAAO,IAAI,CAAC,MAAM,CAAC;IACrB,CAAC;IAED;;;;;;;OAOG;IACU,GAAG,CAAC,MAAW,EAAE,WAAgB,EAAE,cAAuF,EAAE,OAA2B;;YAClK,IAAI,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,cAAc,CAAC,KAAK,KAAK,EAAE,CAAC;gBACzD,IAAI,IAAI,CAAC,UAAU,EAAE,CAAC;oBACpB,OAAM;gBACR,CAAC;gBAED,MAAM,IAAI,sCAAsC,CAAC,gBAAgB,GAAG,IAAI,CAAC,cAAc,GAAG,4JAA4J,EAAE,IAAI,CAAC,cAAc,CAAC,CAAA;YAC9Q,CAAC;YAED,MAAM,aAAa,GAAG,MAAM,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;YAElD,IAAI,aAAa,KAAK,SAAS,EAAE,CAAC;gBAChC,OAAO;YACT,CAAC;YAED,gFAAgF;YAChF,qFAAqF;YACrF,wEAAwE;YACxE,MAAM,iBAAiB,GAAG,CAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,uBAAuB,MAAK,KAAK,CAAC;YAErE,IAAI,IAAI,CAAC,IAAI,KAAK,uBAAuB,CAAC,WAAW,EAAE,CAAC;gBACtD,+EAA+E;gBAC/E,WAAW,CAAC,IAAI,CAAC,mBAAmB,CAAC,GAAG,EAAE,CAAC;YAC7C,CAAC;iBAAM,CAAC;gBACN,mFAAmF;gBACnF,wBAAwB;gBACxB,WAAW,CAAC,IAAI,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,sBAAsB,CAAC,aAAa,EAAE,iBAAiB,CAAC,CAAC;YACxG,CAAC;YAED,MAAM,kBAAkB,GAAG,WAAW,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC;YAEjE,IAAI,IAAI,CAAC,IAAI,KAAK,uBAAuB,CAAC,WAAW,EAAE,CAAC;gBACtD,MAAM,WAAW,GAAG,MAAM,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;gBAEhD,IAAI,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC,KAAK,KAAK,EAAE,CAAC;oBACzC,MAAM,IAAI,kDAAkD,CAAC,2CAA2C,IAAI,CAAC,cAAc,mFAAmF,OAAO,WAAW,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;gBAC7P,CAAC;gBAED,kFAAkF;gBAClF,qFAAqF;gBACrF,mDAAmD;gBACnD,KAAK,IAAI,KAAK,GAAG,CAAC,EAAE,KAAK,GAAG,WAAW,CAAC,MAAM,EAAE,KAAK,EAAE,EAAE,CAAC;oBACxD,MAAM,OAAO,GAAG,WAAW,CAAC,KAAK,CAAC,CAAC;oBACnC,MAAM,IAAI,GAAG,IAAI,CAAC,2BAA2B,CAAC,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,iBAAiB,CAAC,CAAC;oBAEzF,MAAM,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,IAAI,EAAE,cAAc,EAAE,OAAO,CAAC,CAAC;oBAE/D,kBAAkB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;gBAChC,CAAC;gBAED,OAAO;YACT,CAAC;YAED,gFAAgF;YAChF,MAAM,IAAI,CAAC,WAAW,CAAC,aAAa,EAAE,kBAAkB,EAAE,cAAc,EAAE,OAAO,CAAC,CAAC;QACrF,CAAC;KAAA;IAED;;;;;;;;;OASG;IACK,sBAAsB,CAAC,aAAkB,EAAE,iBAA0B;QAC3E,MAAM,cAAc,GAAG,iBAAiB;eACnC,aAAa,KAAK,IAAI;eACtB,CAAC,OAAO,aAAa,KAAK,QAAQ,IAAI,KAAK,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;QAEzE,IAAI,IAAI,CAAC,eAAe,KAAK,SAAS,EAAE,CAAC;YACvC,OAAO,eAAe,CACpB,IAAI,CAAC,eAAwC,EAC7C,cAAc,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,CACpC,CAAC;QACJ,CAAC;QAED,MAAM,MAAM,GAAQ,EAAE,CAAC;QACvB,IAAI,cAAc,EAAE,CAAC;YACnB,MAAM,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE;gBAC5C,MAAM,CAAC,QAAQ,CAAC,GAAG,aAAa,CAAC,QAAQ,CAAC,CAAC;YAC7C,CAAC,CAAC,CAAC;QACL,CAAC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;IAED;;;;;;;;;OASG;IACK,2BAA2B,CAAC,MAAW,EAAE,OAAY,EAAE,KAAa,EAAE,iBAA0B;QACtG,MAAM,cAAc,GAAG,iBAAiB,IAAI,OAAO,KAAK,IAAI,IAAI,OAAO,OAAO,KAAK,QAAQ,CAAC;QAE5F,IAAI,IAAI,CAAC,eAAe,KAAK,SAAS,EAAE,CAAC;YACvC,yFAAyF;YACzF,MAAM,MAAM,GAAQ,EAAE,CAAC;YACvB,IAAI,cAAc,EAAE,CAAC;gBACnB,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE;oBACtC,MAAM,CAAC,QAAQ,CAAC,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;gBACvC,CAAC,CAAC,CAAC;YACL,CAAC;YACD,OAAO,MAAM,CAAC;QAChB,CAAC;QAED,MAAM,iBAAiB,GAAG,IAAI,CAAC,6BAA6B,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;QAC5E,OAAO,eAAe,CAAC,iBAAiB,EAAE,cAAc,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;IAC3E,CAAC;IAED;;;;;;;;;;;;;;;;;OAiBG;IACK,6BAA6B,CAAC,MAAW,EAAE,KAAa;QAC9D,MAAM,eAAe,GAAG,IAAI,CAAC,eAAgB,CAAC;QAC9C,MAAM,iBAAiB,GAAG,OAAO,eAAe,KAAK,UAAU;eACzD,eAAuB,CAAC,SAAS,KAAK,SAAS,CAAC;QAEtD,IAAI,iBAAiB,EAAE,CAAC;YACtB,MAAM,OAAO,GAAG,eAAqD,CAAC;YACtE,MAAM,cAAc,GAAG,OAAO,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,EAAE,KAAK,CAAC,CAAC;YACnE,OAAO,cAAc,CAAC,WAAoC,CAAC;QAC7D,CAAC;QAED,OAAO,eAAwC,CAAC;IAClD,CAAC;IAED;;;OAGG;IACW,WAAW,CAAC,aAAkB,EAAE,kBAAuB,EAAE,cAAuF,EAAE,OAA2B;;YACzL,KAAK,MAAM,GAAG,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;gBAC7B,IAAI,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,GAAG,CAAC,KAAK,KAAK,EAAE,CAAC;oBAC7C,SAAS;gBACX,CAAC;gBAED,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;gBAE7B,MAAM,IAAI,CAAC,GAAG,CAAC,aAAa,EAAE,kBAAkB,EAAE,cAAc,EAAE,OAAO,CAAC,CAAC;YAC7E,CAAC;QACH,CAAC;KAAA;IAED;;;;OAIG;IACI,MAAM,CAAC,MAAW;QACvB,IAAI,CAAC,cAAc,GAAG,MAAM,CAAC,cAAc,CAAC;QAC5C,IAAI,CAAC,mBAAmB,GAAG,MAAM,CAAC,mBAAmB,CAAC;QACtD,IAAI,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;QACpC,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;QAEhB,MAAM,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC;QAE3B,KAAK,MAAM,GAAG,IAAI,KAAK,EAAE,CAAC;YACxB,IAAI,KAAK,CAAC,cAAc,CAAC,GAAG,CAAC,KAAK,KAAK,EAAE,CAAC;gBACxC,SAAS;YACX,CAAC;YAED,MAAM,QAAQ,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC;YAE5B,MAAM,IAAI,GAA4B,QAAQ,CAAC,OAAO,CAAC,CAAC;YAExD,QAAQ,IAAI,EAAE,CAAC;gBACb,KAAK,uBAAuB,CAAC,WAAW,CAAC;gBACzC,KAAK,uBAAuB,CAAC,IAAI;oBAC/B,MAAM,IAAI,GAAG,IAAI,eAAe,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;oBACxD,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;oBACtB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC;oBACvC,SAAS;gBAEX,KAAK,uBAAuB,CAAC,IAAI,CAAC;gBAClC,KAAK,uBAAuB,CAAC,WAAW;oBACtC,MAAM,IAAI,GAAG,IAAI,eAAe,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;oBACxD,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;oBACtB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC;oBACvC,CAAC;YACL,CAAC;QACH,CAAC;IACH,CAAC;IAED;;;;;;;;OAQG;IACI,MAAM;QACX,MAAM,aAAa,GAA2B,EAAE,CAAC;QAEjD,KAAK,MAAM,GAAG,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;YAC7B,IAAI,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,GAAG,CAAC,KAAK,KAAK,EAAE,CAAC;gBAC7C,SAAS;YACX,CAAC;YAED,aAAa,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC;QAChD,CAAC;QAED,OAAO;YACL,OAAO,EAAE,IAAI,CAAC,IAAI;YAClB,gBAAgB,EAAE,IAAI,CAAC,cAAc;YACrC,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;YAC/C,YAAY,EAAE,IAAI,CAAC,UAAU;YAC7B,OAAO,EAAE,aAAa;SACvB,CAAA;IACH,CAAC;CACF"}
@@ -1,10 +1,11 @@
1
1
  export class AutoDataMappingBuilderOptions {
2
2
  constructor(options) {
3
- var _a, _b, _c, _d;
3
+ var _a, _b, _c, _d, _e;
4
4
  this.isOptionalDefaultValue = (_a = options === null || options === void 0 ? void 0 : options.isOptionalDefaultValue) !== null && _a !== void 0 ? _a : true;
5
5
  this.excludeExtraneousValues = (_b = options === null || options === void 0 ? void 0 : options.excludeExtraneousValues) !== null && _b !== void 0 ? _b : false;
6
6
  this.throwOnErrors = (_c = options === null || options === void 0 ? void 0 : options.throwOnErrors) !== null && _c !== void 0 ? _c : false;
7
7
  this.logErrors = (_d = options === null || options === void 0 ? void 0 : options.logErrors) !== null && _d !== void 0 ? _d : false;
8
+ this.disableCache = (_e = options === null || options === void 0 ? void 0 : options.disableCache) !== null && _e !== void 0 ? _e : false;
8
9
  }
9
10
  }
10
11
  //# sourceMappingURL=auto-data-mapping-builder.options.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"auto-data-mapping-builder.options.js","sourceRoot":"","sources":["../../../../src/options/auto-data-mapping-builder.options.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,6BAA6B;IA2BxC,YAAY,OAAgD;;QAC1D,IAAI,CAAC,sBAAsB,GAAG,MAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,sBAAsB,mCAAI,IAAI,CAAC;QACtE,IAAI,CAAC,uBAAuB,GAAG,MAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,uBAAuB,mCAAI,KAAK,CAAC;QACzE,IAAI,CAAC,aAAa,GAAG,MAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,aAAa,mCAAI,KAAK,CAAC;QACrD,IAAI,CAAC,SAAS,GAAG,MAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,SAAS,mCAAI,KAAK,CAAC;IAC/C,CAAC;CACF"}
1
+ {"version":3,"file":"auto-data-mapping-builder.options.js","sourceRoot":"","sources":["../../../../src/options/auto-data-mapping-builder.options.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,6BAA6B;IAwCxC,YAAY,OAAgD;;QAC1D,IAAI,CAAC,sBAAsB,GAAG,MAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,sBAAsB,mCAAI,IAAI,CAAC;QACtE,IAAI,CAAC,uBAAuB,GAAG,MAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,uBAAuB,mCAAI,KAAK,CAAC;QACzE,IAAI,CAAC,aAAa,GAAG,MAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,aAAa,mCAAI,KAAK,CAAC;QACrD,IAAI,CAAC,SAAS,GAAG,MAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,SAAS,mCAAI,KAAK,CAAC;QAC7C,IAAI,CAAC,YAAY,GAAG,MAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,YAAY,mCAAI,KAAK,CAAC;IACrD,CAAC;CACF"}
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Built-in default reporter. Writes a header line + the error + a structured context payload
3
+ * to `console.error`. Used when no custom reporter is supplied to DataMapper — gives the
4
+ * frontend (and any non-DI caller) useful output out of the box.
5
+ *
6
+ * Exposed as a class-with-static-method so callers can compose it from their own reporters,
7
+ * e.g. `(err, ctx) => { sendToSentry(err); ConsoleErrorReporter.report(err, ctx); }`.
8
+ */
9
+ export class ConsoleErrorReporter {
10
+ }
11
+ /**
12
+ * Matches the `DataMapperErrorReporter` shape so a method reference (`ConsoleErrorReporter.report`)
13
+ * can be passed wherever the callback type is expected.
14
+ */
15
+ ConsoleErrorReporter.report = (error, context) => {
16
+ // eslint-disable-next-line no-console
17
+ console.error("[DataMapper] autoMap caught an error.", error, context);
18
+ };
19
+ //# sourceMappingURL=console-error.reporter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"console-error.reporter.js","sourceRoot":"","sources":["../../../../src/reporters/console-error.reporter.ts"],"names":[],"mappings":"AAEA;;;;;;;GAOG;AACH,MAAM,OAAO,oBAAoB;;AAC/B;;;GAGG;AACoB,2BAAM,GAA4B,CAAC,KAAK,EAAE,OAAO,EAAE,EAAE;IAC1E,sCAAsC;IACtC,OAAO,CAAC,KAAK,CAAC,uCAAuC,EAAE,KAAK,EAAE,OAAO,CAAC,CAAC;AACzE,CAAC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from "./console-error.reporter";
2
+ //# sourceMappingURL=reporters.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"reporters.js","sourceRoot":"","sources":["../../../../src/reporters/reporters.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC"}