@idsoftsource/initial-process 3.3.2 → 3.3.3

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.
@@ -3389,6 +3389,8 @@ class PreviewComponent {
3389
3389
  try {
3390
3390
  const payload = {
3391
3391
  forUser: ForUser.ForProducer,
3392
+ targetUserId: this.effectiveTargetUserId,
3393
+ targetProviderId: this.effectiveTargetProviderId,
3392
3394
  professionName: name,
3393
3395
  notes: '',
3394
3396
  year: null,
@@ -3643,6 +3645,8 @@ class PreviewComponent {
3643
3645
  const sel = this.professionSelections[id];
3644
3646
  const payload = {
3645
3647
  forUser: ForUser.ForProducer,
3648
+ targetUserId: this.effectiveTargetUserId,
3649
+ targetProviderId: this.effectiveTargetProviderId,
3646
3650
  professionName: profType.professionName,
3647
3651
  notes: sel.notes ?? '',
3648
3652
  year: sel.year ?? null,
@@ -4279,6 +4283,7 @@ class PreviewComponent {
4279
4283
  pageSize: 100,
4280
4284
  filter: includeForUser ? `forUser=${ForUser.ForProducer}` : ``,
4281
4285
  targetUserId: this.effectiveTargetUserId,
4286
+ targetProviderId: this.effectiveTargetProviderId ?? undefined,
4282
4287
  orderBy,
4283
4288
  };
4284
4289
  }
@@ -4287,6 +4292,7 @@ class PreviewComponent {
4287
4292
  page: 1,
4288
4293
  pageSize: 100,
4289
4294
  targetUserId: this.effectiveTargetUserId,
4295
+ targetProviderId: this.effectiveTargetProviderId ?? undefined,
4290
4296
  orderBy,
4291
4297
  };
4292
4298
  }