bridgelist 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/analyzers/ast-analyzer.js +203 -255
- package/dist/analyzers/ast-analyzer.js.map +1 -1
- package/docs/example-mapping.html +254 -116
- package/package.json +1 -1
|
@@ -169,27 +169,27 @@
|
|
|
169
169
|
<td>contact.firstName, contact.lastName</td>
|
|
170
170
|
<td class="arrow">→</td>
|
|
171
171
|
<td>fullName</td>
|
|
172
|
-
<td>
|
|
172
|
+
<td>Expression</td>
|
|
173
173
|
</tr>
|
|
174
174
|
|
|
175
175
|
<tr>
|
|
176
176
|
<td>contact.address.streetName</td>
|
|
177
177
|
<td class="arrow">→</td>
|
|
178
|
-
<td>
|
|
178
|
+
<td>street</td>
|
|
179
179
|
<td>Direct mapping</td>
|
|
180
180
|
</tr>
|
|
181
181
|
|
|
182
182
|
<tr>
|
|
183
183
|
<td>contact.address.city</td>
|
|
184
184
|
<td class="arrow">→</td>
|
|
185
|
-
<td>
|
|
185
|
+
<td>city</td>
|
|
186
186
|
<td>Direct mapping</td>
|
|
187
187
|
</tr>
|
|
188
188
|
|
|
189
189
|
<tr>
|
|
190
190
|
<td>Constant value</td>
|
|
191
191
|
<td class="arrow">→</td>
|
|
192
|
-
<td>
|
|
192
|
+
<td>country</td>
|
|
193
193
|
<td>defaultCountry</td>
|
|
194
194
|
</tr>
|
|
195
195
|
</table>
|
|
@@ -229,105 +229,105 @@
|
|
|
229
229
|
<tr>
|
|
230
230
|
<td>customer.kundennummer.toString</td>
|
|
231
231
|
<td class="arrow">→</td>
|
|
232
|
-
<td>
|
|
232
|
+
<td>kundennummer</td>
|
|
233
233
|
<td>customer.kundennummer.toString</td>
|
|
234
234
|
</tr>
|
|
235
235
|
|
|
236
236
|
<tr>
|
|
237
237
|
<td>customer.name1</td>
|
|
238
238
|
<td class="arrow">→</td>
|
|
239
|
-
<td>
|
|
239
|
+
<td>firstname</td>
|
|
240
240
|
<td>Direct mapping</td>
|
|
241
241
|
</tr>
|
|
242
242
|
|
|
243
243
|
<tr>
|
|
244
244
|
<td>customer.name2</td>
|
|
245
245
|
<td class="arrow">→</td>
|
|
246
|
-
<td>
|
|
246
|
+
<td>lastname</td>
|
|
247
247
|
<td>Direct mapping</td>
|
|
248
248
|
</tr>
|
|
249
249
|
|
|
250
250
|
<tr>
|
|
251
251
|
<td>customer.name3</td>
|
|
252
252
|
<td class="arrow">→</td>
|
|
253
|
-
<td>
|
|
253
|
+
<td>name3</td>
|
|
254
254
|
<td>Direct mapping</td>
|
|
255
255
|
</tr>
|
|
256
256
|
|
|
257
257
|
<tr>
|
|
258
258
|
<td>customer.strasse</td>
|
|
259
259
|
<td class="arrow">→</td>
|
|
260
|
-
<td>
|
|
260
|
+
<td>stra_e</td>
|
|
261
261
|
<td>Direct mapping</td>
|
|
262
262
|
</tr>
|
|
263
263
|
|
|
264
264
|
<tr>
|
|
265
265
|
<td>customer.ort</td>
|
|
266
266
|
<td class="arrow">→</td>
|
|
267
|
-
<td>
|
|
267
|
+
<td>ort</td>
|
|
268
268
|
<td>Direct mapping</td>
|
|
269
269
|
</tr>
|
|
270
270
|
|
|
271
271
|
<tr>
|
|
272
272
|
<td>customer.postleitzahl</td>
|
|
273
273
|
<td class="arrow">→</td>
|
|
274
|
-
<td>
|
|
274
|
+
<td>zip</td>
|
|
275
275
|
<td>Direct mapping</td>
|
|
276
276
|
</tr>
|
|
277
277
|
|
|
278
278
|
<tr>
|
|
279
279
|
<td>customer.telefon1</td>
|
|
280
280
|
<td class="arrow">→</td>
|
|
281
|
-
<td>
|
|
281
|
+
<td>phone</td>
|
|
282
282
|
<td>this.parsePhoneNumber</td>
|
|
283
283
|
</tr>
|
|
284
284
|
|
|
285
285
|
<tr>
|
|
286
286
|
<td>customer.email</td>
|
|
287
287
|
<td class="arrow">→</td>
|
|
288
|
-
<td>
|
|
288
|
+
<td>email</td>
|
|
289
289
|
<td>this.validateEmail</td>
|
|
290
290
|
</tr>
|
|
291
291
|
|
|
292
292
|
<tr>
|
|
293
293
|
<td>Constant value</td>
|
|
294
294
|
<td class="arrow">→</td>
|
|
295
|
-
<td>
|
|
295
|
+
<td>kundentyp</td>
|
|
296
296
|
<td>'B2C'</td>
|
|
297
297
|
</tr>
|
|
298
298
|
|
|
299
299
|
<tr>
|
|
300
|
-
<td>
|
|
300
|
+
<td>customer.kostentraegergruppeNr</td>
|
|
301
301
|
<td class="arrow">→</td>
|
|
302
|
-
<td>
|
|
302
|
+
<td>kostentrager</td>
|
|
303
303
|
<td>(customer.kostentraegergruppeNr ?? '').toString</td>
|
|
304
304
|
</tr>
|
|
305
305
|
|
|
306
306
|
<tr>
|
|
307
307
|
<td>Constant value</td>
|
|
308
308
|
<td class="arrow">→</td>
|
|
309
|
-
<td>
|
|
309
|
+
<td>kundenart</td>
|
|
310
310
|
<td>'SIC'</td>
|
|
311
311
|
</tr>
|
|
312
312
|
|
|
313
313
|
<tr>
|
|
314
314
|
<td>customer.geburtsdatum.split</td>
|
|
315
315
|
<td class="arrow">→</td>
|
|
316
|
-
<td>
|
|
317
|
-
<td>
|
|
316
|
+
<td>geburtsdatum__kunde_</td>
|
|
317
|
+
<td>Expression</td>
|
|
318
318
|
</tr>
|
|
319
319
|
|
|
320
320
|
<tr>
|
|
321
321
|
<td>Constant value</td>
|
|
322
322
|
<td class="arrow">→</td>
|
|
323
|
-
<td>
|
|
323
|
+
<td>herkunft_der_daten__erp_</td>
|
|
324
324
|
<td>process.env.HERKUNFT_DER_DATEN ?? 'Sanivision REST'</td>
|
|
325
325
|
</tr>
|
|
326
326
|
|
|
327
327
|
<tr>
|
|
328
328
|
<td>Constant value</td>
|
|
329
329
|
<td class="arrow">→</td>
|
|
330
|
-
<td>associations</td>
|
|
330
|
+
<td>hubspotContact.associations</td>
|
|
331
331
|
<td>[]</td>
|
|
332
332
|
</tr>
|
|
333
333
|
</table>
|
|
@@ -367,176 +367,176 @@
|
|
|
367
367
|
<tr>
|
|
368
368
|
<td>hubspotContact.properties.zustaendige_filiale</td>
|
|
369
369
|
<td class="arrow">→</td>
|
|
370
|
-
<td>filialenummer</td>
|
|
370
|
+
<td>customer.filialenummer</td>
|
|
371
371
|
<td>Direct mapping</td>
|
|
372
372
|
</tr>
|
|
373
373
|
|
|
374
374
|
<tr>
|
|
375
375
|
<td>hubspotContact.properties.firstname</td>
|
|
376
376
|
<td class="arrow">→</td>
|
|
377
|
-
<td>name1</td>
|
|
377
|
+
<td>customer.name1</td>
|
|
378
378
|
<td>Direct mapping</td>
|
|
379
379
|
</tr>
|
|
380
380
|
|
|
381
381
|
<tr>
|
|
382
382
|
<td>hubspotContact.properties.lastname</td>
|
|
383
383
|
<td class="arrow">→</td>
|
|
384
|
-
<td>name2</td>
|
|
384
|
+
<td>customer.name2</td>
|
|
385
385
|
<td>Direct mapping</td>
|
|
386
386
|
</tr>
|
|
387
387
|
|
|
388
388
|
<tr>
|
|
389
389
|
<td>hubspotContact.properties.name3</td>
|
|
390
390
|
<td class="arrow">→</td>
|
|
391
|
-
<td>name3</td>
|
|
391
|
+
<td>customer.name3</td>
|
|
392
392
|
<td>Direct mapping</td>
|
|
393
393
|
</tr>
|
|
394
394
|
|
|
395
395
|
<tr>
|
|
396
396
|
<td>hubspotContact.properties.stra_e</td>
|
|
397
397
|
<td class="arrow">→</td>
|
|
398
|
-
<td>strasse</td>
|
|
398
|
+
<td>customer.strasse</td>
|
|
399
399
|
<td>Direct mapping</td>
|
|
400
400
|
</tr>
|
|
401
401
|
|
|
402
402
|
<tr>
|
|
403
403
|
<td>hubspotContact.properties.zip</td>
|
|
404
404
|
<td class="arrow">→</td>
|
|
405
|
-
<td>postleitzahl</td>
|
|
405
|
+
<td>customer.postleitzahl</td>
|
|
406
406
|
<td>Direct mapping</td>
|
|
407
407
|
</tr>
|
|
408
408
|
|
|
409
409
|
<tr>
|
|
410
410
|
<td>hubspotContact.properties.postfach</td>
|
|
411
411
|
<td class="arrow">→</td>
|
|
412
|
-
<td>postfach</td>
|
|
412
|
+
<td>customer.postfach</td>
|
|
413
413
|
<td>Direct mapping</td>
|
|
414
414
|
</tr>
|
|
415
415
|
|
|
416
416
|
<tr>
|
|
417
417
|
<td>hubspotContact.properties.plz___postfach</td>
|
|
418
418
|
<td class="arrow">→</td>
|
|
419
|
-
<td>postleitzahlPostfach</td>
|
|
419
|
+
<td>customer.postleitzahlPostfach</td>
|
|
420
420
|
<td>Direct mapping</td>
|
|
421
421
|
</tr>
|
|
422
422
|
|
|
423
423
|
<tr>
|
|
424
424
|
<td>hubspotContact.properties.ort</td>
|
|
425
425
|
<td class="arrow">→</td>
|
|
426
|
-
<td>ort</td>
|
|
426
|
+
<td>customer.ort</td>
|
|
427
427
|
<td>Direct mapping</td>
|
|
428
428
|
</tr>
|
|
429
429
|
|
|
430
430
|
<tr>
|
|
431
431
|
<td>hubspotContact.properties.phone</td>
|
|
432
432
|
<td class="arrow">→</td>
|
|
433
|
-
<td>telefon1</td>
|
|
433
|
+
<td>customer.telefon1</td>
|
|
434
434
|
<td>Direct mapping</td>
|
|
435
435
|
</tr>
|
|
436
436
|
|
|
437
437
|
<tr>
|
|
438
438
|
<td>hubspotContact.properties.telefonnummer_2</td>
|
|
439
439
|
<td class="arrow">→</td>
|
|
440
|
-
<td>telefon2</td>
|
|
440
|
+
<td>customer.telefon2</td>
|
|
441
441
|
<td>Direct mapping</td>
|
|
442
442
|
</tr>
|
|
443
443
|
|
|
444
444
|
<tr>
|
|
445
445
|
<td>hubspotContact.properties.email</td>
|
|
446
446
|
<td class="arrow">→</td>
|
|
447
|
-
<td>email</td>
|
|
447
|
+
<td>customer.email</td>
|
|
448
448
|
<td>Direct mapping</td>
|
|
449
449
|
</tr>
|
|
450
450
|
|
|
451
451
|
<tr>
|
|
452
452
|
<td>hubspotContact.properties.geburtsdatum__kunde_</td>
|
|
453
453
|
<td class="arrow">→</td>
|
|
454
|
-
<td>geburtsdatum</td>
|
|
454
|
+
<td>customer.geburtsdatum</td>
|
|
455
455
|
<td>this.parseDateString</td>
|
|
456
456
|
</tr>
|
|
457
457
|
|
|
458
458
|
<tr>
|
|
459
459
|
<td>hubspotContact.properties.krankenkassekostentrager</td>
|
|
460
460
|
<td class="arrow">→</td>
|
|
461
|
-
<td>
|
|
461
|
+
<td>kostentraegerNr</td>
|
|
462
462
|
<td>Direct mapping</td>
|
|
463
463
|
</tr>
|
|
464
464
|
|
|
465
465
|
<tr>
|
|
466
466
|
<td>hubspotContact.properties.versichertennummer</td>
|
|
467
467
|
<td class="arrow">→</td>
|
|
468
|
-
<td>
|
|
468
|
+
<td>versichertenNr</td>
|
|
469
469
|
<td>Direct mapping</td>
|
|
470
470
|
</tr>
|
|
471
471
|
|
|
472
472
|
<tr>
|
|
473
473
|
<td>hubspotContact.properties.pflegegrad</td>
|
|
474
474
|
<td class="arrow">→</td>
|
|
475
|
-
<td>pflegegrad</td>
|
|
475
|
+
<td>customer.pflegegrad</td>
|
|
476
476
|
<td>Direct mapping</td>
|
|
477
477
|
</tr>
|
|
478
478
|
|
|
479
479
|
<tr>
|
|
480
480
|
<td>hubspotContact.properties.fibu_kto</td>
|
|
481
481
|
<td class="arrow">→</td>
|
|
482
|
-
<td>fiBuKonto</td>
|
|
482
|
+
<td>customer.fiBuKonto</td>
|
|
483
483
|
<td>Direct mapping</td>
|
|
484
484
|
</tr>
|
|
485
485
|
|
|
486
486
|
<tr>
|
|
487
487
|
<td>hubspotContact.properties.zuzahlungsbefreit__ja_nein_</td>
|
|
488
488
|
<td class="arrow">→</td>
|
|
489
|
-
<td>
|
|
489
|
+
<td>befreit</td>
|
|
490
490
|
<td>Direct mapping</td>
|
|
491
491
|
</tr>
|
|
492
492
|
|
|
493
493
|
<tr>
|
|
494
494
|
<td>Constant value</td>
|
|
495
495
|
<td class="arrow">→</td>
|
|
496
|
-
<td>
|
|
496
|
+
<td>von</td>
|
|
497
497
|
<td>''</td>
|
|
498
498
|
</tr>
|
|
499
499
|
|
|
500
500
|
<tr>
|
|
501
501
|
<td>hubspotContact.properties.zuzahlungsbefreit_bis</td>
|
|
502
502
|
<td class="arrow">→</td>
|
|
503
|
-
<td>
|
|
503
|
+
<td>bis</td>
|
|
504
504
|
<td>this.parseDateString</td>
|
|
505
505
|
</tr>
|
|
506
506
|
|
|
507
507
|
<tr>
|
|
508
508
|
<td>hubspotContact.properties.sterbedatum</td>
|
|
509
509
|
<td class="arrow">→</td>
|
|
510
|
-
<td>sterbedatum</td>
|
|
510
|
+
<td>customer.sterbedatum</td>
|
|
511
511
|
<td>this.parseDateString</td>
|
|
512
512
|
</tr>
|
|
513
513
|
|
|
514
514
|
<tr>
|
|
515
515
|
<td>hubspotContact.properties.zustaendiger_bearbeiter</td>
|
|
516
516
|
<td class="arrow">→</td>
|
|
517
|
-
<td>zustaendigerMitarbeiterNr</td>
|
|
517
|
+
<td>customer.zustaendigerMitarbeiterNr</td>
|
|
518
518
|
<td>Direct mapping</td>
|
|
519
519
|
</tr>
|
|
520
520
|
|
|
521
521
|
<tr>
|
|
522
522
|
<td>hubspotContact.properties.iban</td>
|
|
523
523
|
<td class="arrow">→</td>
|
|
524
|
-
<td>
|
|
524
|
+
<td>iban</td>
|
|
525
525
|
<td>Direct mapping</td>
|
|
526
526
|
</tr>
|
|
527
527
|
|
|
528
528
|
<tr>
|
|
529
529
|
<td>Constant value</td>
|
|
530
530
|
<td class="arrow">→</td>
|
|
531
|
-
<td>
|
|
531
|
+
<td>bicswift</td>
|
|
532
532
|
<td>''</td>
|
|
533
533
|
</tr>
|
|
534
534
|
|
|
535
535
|
<tr>
|
|
536
536
|
<td>hubspotContact.properties.datenschutz_einwilligung__ja_nein_</td>
|
|
537
537
|
<td class="arrow">→</td>
|
|
538
|
-
<td>datenschutzerklaerung</td>
|
|
539
|
-
<td>
|
|
538
|
+
<td>customer.datenschutzerklaerung</td>
|
|
539
|
+
<td>Expression</td>
|
|
540
540
|
</tr>
|
|
541
541
|
</table>
|
|
542
542
|
</div>
|
|
@@ -575,126 +575,126 @@
|
|
|
575
575
|
<tr>
|
|
576
576
|
<td>hubspotContact.properties.firstname</td>
|
|
577
577
|
<td class="arrow">→</td>
|
|
578
|
-
<td>name1</td>
|
|
578
|
+
<td>customer.name1</td>
|
|
579
579
|
<td>Direct mapping</td>
|
|
580
580
|
</tr>
|
|
581
581
|
|
|
582
582
|
<tr>
|
|
583
583
|
<td>hubspotContact.properties.lastname</td>
|
|
584
584
|
<td class="arrow">→</td>
|
|
585
|
-
<td>name2</td>
|
|
585
|
+
<td>customer.name2</td>
|
|
586
586
|
<td>Direct mapping</td>
|
|
587
587
|
</tr>
|
|
588
588
|
|
|
589
589
|
<tr>
|
|
590
590
|
<td>hubspotContact.properties.name3</td>
|
|
591
591
|
<td class="arrow">→</td>
|
|
592
|
-
<td>name3</td>
|
|
592
|
+
<td>customer.name3</td>
|
|
593
593
|
<td>Direct mapping</td>
|
|
594
594
|
</tr>
|
|
595
595
|
|
|
596
596
|
<tr>
|
|
597
597
|
<td>hubspotContact.properties.name4</td>
|
|
598
598
|
<td class="arrow">→</td>
|
|
599
|
-
<td>name4</td>
|
|
599
|
+
<td>customer.name4</td>
|
|
600
600
|
<td>Direct mapping</td>
|
|
601
601
|
</tr>
|
|
602
602
|
|
|
603
603
|
<tr>
|
|
604
604
|
<td>hubspotContact.properties.kurzname</td>
|
|
605
605
|
<td class="arrow">→</td>
|
|
606
|
-
<td>kurzname</td>
|
|
606
|
+
<td>customer.kurzname</td>
|
|
607
607
|
<td>Direct mapping</td>
|
|
608
608
|
</tr>
|
|
609
609
|
|
|
610
610
|
<tr>
|
|
611
611
|
<td>hubspotContact.properties.stra_e</td>
|
|
612
612
|
<td class="arrow">→</td>
|
|
613
|
-
<td>strasse</td>
|
|
613
|
+
<td>customer.strasse</td>
|
|
614
614
|
<td>Direct mapping</td>
|
|
615
615
|
</tr>
|
|
616
616
|
|
|
617
617
|
<tr>
|
|
618
618
|
<td>hubspotContact.properties.zip</td>
|
|
619
619
|
<td class="arrow">→</td>
|
|
620
|
-
<td>postleitzahl</td>
|
|
620
|
+
<td>customer.postleitzahl</td>
|
|
621
621
|
<td>Direct mapping</td>
|
|
622
622
|
</tr>
|
|
623
623
|
|
|
624
624
|
<tr>
|
|
625
625
|
<td>hubspotContact.properties.postfach</td>
|
|
626
626
|
<td class="arrow">→</td>
|
|
627
|
-
<td>postfach</td>
|
|
627
|
+
<td>customer.postfach</td>
|
|
628
628
|
<td>Direct mapping</td>
|
|
629
629
|
</tr>
|
|
630
630
|
|
|
631
631
|
<tr>
|
|
632
632
|
<td>hubspotContact.properties.plz___postfach</td>
|
|
633
633
|
<td class="arrow">→</td>
|
|
634
|
-
<td>postleitzahlPostfach</td>
|
|
634
|
+
<td>customer.postleitzahlPostfach</td>
|
|
635
635
|
<td>Direct mapping</td>
|
|
636
636
|
</tr>
|
|
637
637
|
|
|
638
638
|
<tr>
|
|
639
639
|
<td>hubspotContact.properties.laenderkennzeichen</td>
|
|
640
640
|
<td class="arrow">→</td>
|
|
641
|
-
<td>laenderkennzeichen</td>
|
|
641
|
+
<td>customer.laenderkennzeichen</td>
|
|
642
642
|
<td>Direct mapping</td>
|
|
643
643
|
</tr>
|
|
644
644
|
|
|
645
645
|
<tr>
|
|
646
646
|
<td>hubspotContact.properties.ort</td>
|
|
647
647
|
<td class="arrow">→</td>
|
|
648
|
-
<td>ort</td>
|
|
648
|
+
<td>customer.ort</td>
|
|
649
649
|
<td>Direct mapping</td>
|
|
650
650
|
</tr>
|
|
651
651
|
|
|
652
652
|
<tr>
|
|
653
653
|
<td>hubspotContact.properties.ortsteil</td>
|
|
654
654
|
<td class="arrow">→</td>
|
|
655
|
-
<td>ortsteil</td>
|
|
655
|
+
<td>customer.ortsteil</td>
|
|
656
656
|
<td>Direct mapping</td>
|
|
657
657
|
</tr>
|
|
658
658
|
|
|
659
659
|
<tr>
|
|
660
660
|
<td>hubspotContact.properties.phone</td>
|
|
661
661
|
<td class="arrow">→</td>
|
|
662
|
-
<td>telefon1</td>
|
|
662
|
+
<td>customer.telefon1</td>
|
|
663
663
|
<td>Direct mapping</td>
|
|
664
664
|
</tr>
|
|
665
665
|
|
|
666
666
|
<tr>
|
|
667
667
|
<td>hubspotContact.properties.telefonnummer_2</td>
|
|
668
668
|
<td class="arrow">→</td>
|
|
669
|
-
<td>telefon2</td>
|
|
669
|
+
<td>customer.telefon2</td>
|
|
670
670
|
<td>Direct mapping</td>
|
|
671
671
|
</tr>
|
|
672
672
|
|
|
673
673
|
<tr>
|
|
674
674
|
<td>hubspotContact.properties.telefax</td>
|
|
675
675
|
<td class="arrow">→</td>
|
|
676
|
-
<td>telefax</td>
|
|
676
|
+
<td>customer.telefax</td>
|
|
677
677
|
<td>Direct mapping</td>
|
|
678
678
|
</tr>
|
|
679
679
|
|
|
680
680
|
<tr>
|
|
681
681
|
<td>hubspotContact.properties.http</td>
|
|
682
682
|
<td class="arrow">→</td>
|
|
683
|
-
<td>http</td>
|
|
683
|
+
<td>customer.http</td>
|
|
684
684
|
<td>Direct mapping</td>
|
|
685
685
|
</tr>
|
|
686
686
|
|
|
687
687
|
<tr>
|
|
688
688
|
<td>hubspotContact.properties.status</td>
|
|
689
689
|
<td class="arrow">→</td>
|
|
690
|
-
<td>status</td>
|
|
690
|
+
<td>customer.status</td>
|
|
691
691
|
<td>Direct mapping</td>
|
|
692
692
|
</tr>
|
|
693
693
|
|
|
694
694
|
<tr>
|
|
695
695
|
<td>hubspotContact.properties.email</td>
|
|
696
696
|
<td class="arrow">→</td>
|
|
697
|
-
<td>email</td>
|
|
697
|
+
<td>customer.email</td>
|
|
698
698
|
<td>Direct mapping</td>
|
|
699
699
|
</tr>
|
|
700
700
|
</table>
|
|
@@ -734,202 +734,340 @@
|
|
|
734
734
|
<tr>
|
|
735
735
|
<td>hubspotContact.properties['prescriber_la_nummer']</td>
|
|
736
736
|
<td class="arrow">→</td>
|
|
737
|
-
<td>laNummer</td>
|
|
738
|
-
<td>
|
|
737
|
+
<td>prescriber.laNummer</td>
|
|
738
|
+
<td>Expression</td>
|
|
739
739
|
</tr>
|
|
740
740
|
|
|
741
741
|
<tr>
|
|
742
742
|
<td>hubspotContact.properties['prescriber_bs_nummer']</td>
|
|
743
743
|
<td class="arrow">→</td>
|
|
744
|
-
<td>bsNummer</td>
|
|
745
|
-
<td>
|
|
744
|
+
<td>prescriber.bsNummer</td>
|
|
745
|
+
<td>Expression</td>
|
|
746
746
|
</tr>
|
|
747
747
|
|
|
748
748
|
<tr>
|
|
749
749
|
<td>hubspotContact.properties['prescriber_ik_nummer']</td>
|
|
750
750
|
<td class="arrow">→</td>
|
|
751
|
-
<td>ikNummer</td>
|
|
752
|
-
<td>
|
|
751
|
+
<td>prescriber.ikNummer</td>
|
|
752
|
+
<td>Expression</td>
|
|
753
753
|
</tr>
|
|
754
754
|
|
|
755
755
|
<tr>
|
|
756
756
|
<td>hubspotContact.properties['prescriber_matchcode']</td>
|
|
757
757
|
<td class="arrow">→</td>
|
|
758
|
-
<td>matchcode</td>
|
|
759
|
-
<td>
|
|
758
|
+
<td>prescriber.matchcode</td>
|
|
759
|
+
<td>Expression</td>
|
|
760
760
|
</tr>
|
|
761
761
|
|
|
762
762
|
<tr>
|
|
763
763
|
<td>hubspotContact.properties['titel']</td>
|
|
764
764
|
<td class="arrow">→</td>
|
|
765
|
-
<td>titel</td>
|
|
766
|
-
<td>
|
|
765
|
+
<td>prescriber.titel</td>
|
|
766
|
+
<td>Expression</td>
|
|
767
767
|
</tr>
|
|
768
768
|
|
|
769
769
|
<tr>
|
|
770
770
|
<td>hubspotContact.properties['salutation']</td>
|
|
771
771
|
<td class="arrow">→</td>
|
|
772
|
-
<td>anrede</td>
|
|
773
|
-
<td>
|
|
772
|
+
<td>prescriber.anrede</td>
|
|
773
|
+
<td>Expression</td>
|
|
774
774
|
</tr>
|
|
775
775
|
|
|
776
776
|
<tr>
|
|
777
777
|
<td>hubspotContact.properties['firstname']</td>
|
|
778
778
|
<td class="arrow">→</td>
|
|
779
|
-
<td>name1</td>
|
|
780
|
-
<td>
|
|
779
|
+
<td>prescriber.name1</td>
|
|
780
|
+
<td>Expression</td>
|
|
781
781
|
</tr>
|
|
782
782
|
|
|
783
783
|
<tr>
|
|
784
784
|
<td>hubspotContact.properties['lastname']</td>
|
|
785
785
|
<td class="arrow">→</td>
|
|
786
|
-
<td>name2</td>
|
|
787
|
-
<td>
|
|
786
|
+
<td>prescriber.name2</td>
|
|
787
|
+
<td>Expression</td>
|
|
788
788
|
</tr>
|
|
789
789
|
|
|
790
790
|
<tr>
|
|
791
791
|
<td>hubspotContact.properties['name3']</td>
|
|
792
792
|
<td class="arrow">→</td>
|
|
793
|
-
<td>name3</td>
|
|
794
|
-
<td>
|
|
793
|
+
<td>prescriber.name3</td>
|
|
794
|
+
<td>Expression</td>
|
|
795
795
|
</tr>
|
|
796
796
|
|
|
797
797
|
<tr>
|
|
798
798
|
<td>hubspotContact.properties['stra_e']</td>
|
|
799
799
|
<td class="arrow">→</td>
|
|
800
|
-
<td>strasse</td>
|
|
801
|
-
<td>
|
|
800
|
+
<td>prescriber.strasse</td>
|
|
801
|
+
<td>Expression</td>
|
|
802
802
|
</tr>
|
|
803
803
|
|
|
804
804
|
<tr>
|
|
805
805
|
<td>hubspotContact.properties['zusatz']</td>
|
|
806
806
|
<td class="arrow">→</td>
|
|
807
|
-
<td>zusatz</td>
|
|
808
|
-
<td>
|
|
807
|
+
<td>prescriber.zusatz</td>
|
|
808
|
+
<td>Expression</td>
|
|
809
809
|
</tr>
|
|
810
810
|
|
|
811
811
|
<tr>
|
|
812
812
|
<td>hubspotContact.properties['laenderkennzeichen']</td>
|
|
813
813
|
<td class="arrow">→</td>
|
|
814
|
-
<td>laenderkennzeichen</td>
|
|
815
|
-
<td>
|
|
814
|
+
<td>prescriber.laenderkennzeichen</td>
|
|
815
|
+
<td>Expression</td>
|
|
816
816
|
</tr>
|
|
817
817
|
|
|
818
818
|
<tr>
|
|
819
819
|
<td>hubspotContact.properties['zip']</td>
|
|
820
820
|
<td class="arrow">→</td>
|
|
821
|
-
<td>plz</td>
|
|
822
|
-
<td>
|
|
821
|
+
<td>prescriber.plz</td>
|
|
822
|
+
<td>Expression</td>
|
|
823
823
|
</tr>
|
|
824
824
|
|
|
825
825
|
<tr>
|
|
826
826
|
<td>hubspotContact.properties['ort']</td>
|
|
827
827
|
<td class="arrow">→</td>
|
|
828
|
-
<td>ort</td>
|
|
829
|
-
<td>
|
|
828
|
+
<td>prescriber.ort</td>
|
|
829
|
+
<td>Expression</td>
|
|
830
830
|
</tr>
|
|
831
831
|
|
|
832
832
|
<tr>
|
|
833
833
|
<td>hubspotContact.properties['phone']</td>
|
|
834
834
|
<td class="arrow">→</td>
|
|
835
|
-
<td>telefon1</td>
|
|
836
|
-
<td>
|
|
835
|
+
<td>prescriber.telefon1</td>
|
|
836
|
+
<td>Expression</td>
|
|
837
837
|
</tr>
|
|
838
838
|
|
|
839
839
|
<tr>
|
|
840
840
|
<td>hubspotContact.properties['telefonnummer_2']</td>
|
|
841
841
|
<td class="arrow">→</td>
|
|
842
|
-
<td>telefon2</td>
|
|
843
|
-
<td>
|
|
842
|
+
<td>prescriber.telefon2</td>
|
|
843
|
+
<td>Expression</td>
|
|
844
844
|
</tr>
|
|
845
845
|
|
|
846
846
|
<tr>
|
|
847
847
|
<td>hubspotContact.properties['mobilephone']</td>
|
|
848
848
|
<td class="arrow">→</td>
|
|
849
|
-
<td>telefon3</td>
|
|
850
|
-
<td>
|
|
849
|
+
<td>prescriber.telefon3</td>
|
|
850
|
+
<td>Expression</td>
|
|
851
851
|
</tr>
|
|
852
852
|
|
|
853
853
|
<tr>
|
|
854
854
|
<td>hubspotContact.properties['telefonnummer_4']</td>
|
|
855
855
|
<td class="arrow">→</td>
|
|
856
|
-
<td>telefon4</td>
|
|
857
|
-
<td>
|
|
856
|
+
<td>prescriber.telefon4</td>
|
|
857
|
+
<td>Expression</td>
|
|
858
858
|
</tr>
|
|
859
859
|
|
|
860
860
|
<tr>
|
|
861
861
|
<td>hubspotContact.properties['fax']</td>
|
|
862
862
|
<td class="arrow">→</td>
|
|
863
|
-
<td>telefax</td>
|
|
864
|
-
<td>
|
|
863
|
+
<td>prescriber.telefax</td>
|
|
864
|
+
<td>Expression</td>
|
|
865
865
|
</tr>
|
|
866
866
|
|
|
867
867
|
<tr>
|
|
868
868
|
<td>hubspotContact.properties['homepage']</td>
|
|
869
869
|
<td class="arrow">→</td>
|
|
870
|
-
<td>homepage</td>
|
|
871
|
-
<td>
|
|
870
|
+
<td>prescriber.homepage</td>
|
|
871
|
+
<td>Expression</td>
|
|
872
872
|
</tr>
|
|
873
873
|
|
|
874
874
|
<tr>
|
|
875
875
|
<td>hubspotContact.properties['warnhinweis']</td>
|
|
876
876
|
<td class="arrow">→</td>
|
|
877
|
-
<td>warnhinweis</td>
|
|
878
|
-
<td>
|
|
877
|
+
<td>prescriber.warnhinweis</td>
|
|
878
|
+
<td>Expression</td>
|
|
879
879
|
</tr>
|
|
880
880
|
|
|
881
881
|
<tr>
|
|
882
882
|
<td>hubspotContact.properties['fibu_kto']</td>
|
|
883
883
|
<td class="arrow">→</td>
|
|
884
|
-
<td>fibukonto</td>
|
|
885
|
-
<td>
|
|
884
|
+
<td>prescriber.fibukonto</td>
|
|
885
|
+
<td>Expression</td>
|
|
886
886
|
</tr>
|
|
887
887
|
|
|
888
888
|
<tr>
|
|
889
889
|
<td>hubspotContact.properties['datenschutz_einwilligung__ja_nein_']</td>
|
|
890
890
|
<td class="arrow">→</td>
|
|
891
|
-
<td>dsErklaerungVorhanden</td>
|
|
892
|
-
<td>
|
|
891
|
+
<td>prescriber.dsErklaerungVorhanden</td>
|
|
892
|
+
<td>Expression</td>
|
|
893
893
|
</tr>
|
|
894
894
|
|
|
895
895
|
<tr>
|
|
896
896
|
<td>hubspotContact.properties.zustaendige_filiale</td>
|
|
897
897
|
<td class="arrow">→</td>
|
|
898
|
-
<td>zustaendigeFiliale</td>
|
|
898
|
+
<td>prescriber.zustaendigeFiliale</td>
|
|
899
899
|
<td>this.parseIntWithZeroDefault</td>
|
|
900
900
|
</tr>
|
|
901
901
|
|
|
902
902
|
<tr>
|
|
903
903
|
<td>hubspotContact.properties.zustaendige_abteilung</td>
|
|
904
904
|
<td class="arrow">→</td>
|
|
905
|
-
<td>zustaendigeAbteilung</td>
|
|
905
|
+
<td>prescriber.zustaendigeAbteilung</td>
|
|
906
906
|
<td>this.parseIntWithZeroDefault</td>
|
|
907
907
|
</tr>
|
|
908
908
|
|
|
909
909
|
<tr>
|
|
910
910
|
<td>hubspotContact.properties.zustaendiger_bearbeiter</td>
|
|
911
911
|
<td class="arrow">→</td>
|
|
912
|
-
<td>zustaendigerBearbeiter</td>
|
|
912
|
+
<td>prescriber.zustaendigerBearbeiter</td>
|
|
913
913
|
<td>this.parseIntWithZeroDefault</td>
|
|
914
914
|
</tr>
|
|
915
915
|
|
|
916
916
|
<tr>
|
|
917
917
|
<td>hubspotContact.properties.zustaendiger_aussendienst</td>
|
|
918
918
|
<td class="arrow">→</td>
|
|
919
|
-
<td>zustaendigerAussendienst</td>
|
|
919
|
+
<td>prescriber.zustaendigerAussendienst</td>
|
|
920
920
|
<td>this.parseIntWithZeroDefault</td>
|
|
921
921
|
</tr>
|
|
922
922
|
|
|
923
923
|
<tr>
|
|
924
924
|
<td>hubspotContact.properties.zahlungsbedingung_id</td>
|
|
925
925
|
<td class="arrow">→</td>
|
|
926
|
-
<td>zahlungsbedingungId</td>
|
|
926
|
+
<td>prescriber.zahlungsbedingungId</td>
|
|
927
927
|
<td>this.parseIntWithZeroDefault</td>
|
|
928
928
|
</tr>
|
|
929
929
|
</table>
|
|
930
930
|
</div>
|
|
931
931
|
</div>
|
|
932
932
|
|
|
933
|
+
<div class="mapping-container">
|
|
934
|
+
<div class="class-method">
|
|
935
|
+
<div class="class-method-col">
|
|
936
|
+
<span class="styled-text">Class:</span><h3>SanivisionRestCustomerParser</h3>
|
|
937
|
+
</div>
|
|
938
|
+
<div class="class-method-col">
|
|
939
|
+
<span class="styled-text"> Method:</span><h3>parseHubspotContactToContactPerson</h3>
|
|
940
|
+
</div>
|
|
941
|
+
<div class="class-method-col last">
|
|
942
|
+
</div>
|
|
943
|
+
</div>
|
|
944
|
+
<p>Konvertiert Hubspot Kontakt zu Acriba Ansprechpartner</p>
|
|
945
|
+
<div class="show-hide-mapping">
|
|
946
|
+
<div class="collapse">
|
|
947
|
+
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
948
|
+
<g id="Arrow / Caret_Down_MD">
|
|
949
|
+
<path id="Vector" d="M16 10L12 14L8 10" stroke="#000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
950
|
+
</g>
|
|
951
|
+
</svg>
|
|
952
|
+
</div>
|
|
953
|
+
<span>Mapping from <strong>Hubspot</strong> to <strong>Acriba</strong></span>
|
|
954
|
+
</div>
|
|
955
|
+
<table class="mapping-table hidden">
|
|
956
|
+
<tr>
|
|
957
|
+
<th>Hubspot Field</th>
|
|
958
|
+
<th></th>
|
|
959
|
+
<th>Acriba Field</th>
|
|
960
|
+
<th>Transformation</th>
|
|
961
|
+
</tr>
|
|
962
|
+
|
|
963
|
+
<tr>
|
|
964
|
+
<td>hubspotContact.properties['ansprechpartner_erp_id']</td>
|
|
965
|
+
<td class="arrow">→</td>
|
|
966
|
+
<td>apid</td>
|
|
967
|
+
<td>this.toNumberIfNotNullish</td>
|
|
968
|
+
</tr>
|
|
969
|
+
|
|
970
|
+
<tr>
|
|
971
|
+
<td>hubspotContact.properties[ process.env.HUBSPOT_ID_FIELD ?? 'erp_id__kontakt_']</td>
|
|
972
|
+
<td class="arrow">→</td>
|
|
973
|
+
<td>stammID</td>
|
|
974
|
+
<td>this.toNumberIfNotNullish</td>
|
|
975
|
+
</tr>
|
|
976
|
+
|
|
977
|
+
<tr>
|
|
978
|
+
<td>Dynamic access: hubspotContact.properties[hubspotContact.prefix + 'vorname']</td>
|
|
979
|
+
<td class="arrow">→</td>
|
|
980
|
+
<td>vorname</td>
|
|
981
|
+
<td>Dynamic property mapping</td>
|
|
982
|
+
</tr>
|
|
983
|
+
|
|
984
|
+
<tr>
|
|
985
|
+
<td>hubspotContact.properties[hubspotContact.prefix + 'nachname'], hubspotContact.prefix</td>
|
|
986
|
+
<td class="arrow">→</td>
|
|
987
|
+
<td>nachname</td>
|
|
988
|
+
<td>Expression</td>
|
|
989
|
+
</tr>
|
|
990
|
+
|
|
991
|
+
<tr>
|
|
992
|
+
<td>Dynamic access: hubspotContact.properties[hubspotContact.prefix + 'telefonnummer']</td>
|
|
993
|
+
<td class="arrow">→</td>
|
|
994
|
+
<td>telefon</td>
|
|
995
|
+
<td>Dynamic property mapping</td>
|
|
996
|
+
</tr>
|
|
997
|
+
|
|
998
|
+
<tr>
|
|
999
|
+
<td>Dynamic access: hubspotContact.properties[hubspotContact.prefix + 'telefonnummer2']</td>
|
|
1000
|
+
<td class="arrow">→</td>
|
|
1001
|
+
<td>telefon2</td>
|
|
1002
|
+
<td>Dynamic property mapping</td>
|
|
1003
|
+
</tr>
|
|
1004
|
+
|
|
1005
|
+
<tr>
|
|
1006
|
+
<td>Dynamic access: hubspotContact.properties[hubspotContact.prefix + 'e_mail']</td>
|
|
1007
|
+
<td class="arrow">→</td>
|
|
1008
|
+
<td>eMail</td>
|
|
1009
|
+
<td>Dynamic property mapping</td>
|
|
1010
|
+
</tr>
|
|
1011
|
+
|
|
1012
|
+
<tr>
|
|
1013
|
+
<td>Dynamic access: hubspotContact.properties[hubspotContact.prefix + 'stra_e__hausnummer']</td>
|
|
1014
|
+
<td class="arrow">→</td>
|
|
1015
|
+
<td>strasse</td>
|
|
1016
|
+
<td>Dynamic property mapping</td>
|
|
1017
|
+
</tr>
|
|
1018
|
+
|
|
1019
|
+
<tr>
|
|
1020
|
+
<td>Dynamic access: hubspotContact.properties[hubspotContact.prefix + 'postleitzahl']</td>
|
|
1021
|
+
<td class="arrow">→</td>
|
|
1022
|
+
<td>plz</td>
|
|
1023
|
+
<td>Dynamic property mapping</td>
|
|
1024
|
+
</tr>
|
|
1025
|
+
|
|
1026
|
+
<tr>
|
|
1027
|
+
<td>Dynamic access: hubspotContact.properties[hubspotContact.prefix + 'stadt']</td>
|
|
1028
|
+
<td class="arrow">→</td>
|
|
1029
|
+
<td>ort</td>
|
|
1030
|
+
<td>Dynamic property mapping</td>
|
|
1031
|
+
</tr>
|
|
1032
|
+
|
|
1033
|
+
<tr>
|
|
1034
|
+
<td>hubspotContact.prefix</td>
|
|
1035
|
+
<td class="arrow">→</td>
|
|
1036
|
+
<td>gesetzlicherBetreuer</td>
|
|
1037
|
+
<td>Expression</td>
|
|
1038
|
+
</tr>
|
|
1039
|
+
|
|
1040
|
+
<tr>
|
|
1041
|
+
<td>hubspotContact.prefix</td>
|
|
1042
|
+
<td class="arrow">→</td>
|
|
1043
|
+
<td>bemerkung</td>
|
|
1044
|
+
<td>this.makePrefixReadable</td>
|
|
1045
|
+
</tr>
|
|
1046
|
+
|
|
1047
|
+
<tr>
|
|
1048
|
+
<td>Constant value</td>
|
|
1049
|
+
<td class="arrow">→</td>
|
|
1050
|
+
<td>latitude</td>
|
|
1051
|
+
<td>+latitude</td>
|
|
1052
|
+
</tr>
|
|
1053
|
+
|
|
1054
|
+
<tr>
|
|
1055
|
+
<td>Constant value</td>
|
|
1056
|
+
<td class="arrow">→</td>
|
|
1057
|
+
<td>longitude</td>
|
|
1058
|
+
<td>+longitude</td>
|
|
1059
|
+
</tr>
|
|
1060
|
+
|
|
1061
|
+
<tr>
|
|
1062
|
+
<td>Constant value</td>
|
|
1063
|
+
<td class="arrow">→</td>
|
|
1064
|
+
<td>manuellGesetzt</td>
|
|
1065
|
+
<td>true</td>
|
|
1066
|
+
</tr>
|
|
1067
|
+
</table>
|
|
1068
|
+
</div>
|
|
1069
|
+
</div>
|
|
1070
|
+
|
|
933
1071
|
<div class="mapping-container">
|
|
934
1072
|
<div class="class-method">
|
|
935
1073
|
<div class="class-method-col">
|