@colijnit/transaction 262.1.42 → 262.1.44

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.
@@ -355,8 +355,8 @@ import { DateField } from '@colijnit/ioneconnector/build/factory/decorators/date
355
355
  class Version {
356
356
  name = "@colijnit/transaction";
357
357
  description = "Colijn IT transaction package";
358
- symVer = "262.1.42";
359
- publishDate = "4-9-2026, 17:55:00";
358
+ symVer = "262.1.44";
359
+ publishDate = "08/09/2026, 10:50:28";
360
360
  }
361
361
 
362
362
  class CheckoutModuleService extends BaseModuleService {
@@ -3087,6 +3087,16 @@ class TransactionConnectorAdapterService {
3087
3087
  return [];
3088
3088
  }
3089
3089
  }
3090
+ async upsertTransactionStandardText(request) {
3091
+ const response = await this.connector.upsertTransactionStandardText(request);
3092
+ if (response.validationResult && response.validationResult.success) {
3093
+ return;
3094
+ }
3095
+ else {
3096
+ this._handleExceptionFromResponse(response);
3097
+ return null;
3098
+ }
3099
+ }
3090
3100
  async getSalesPersons(date) {
3091
3101
  const result = await this.connector.getSalesPersons(date);
3092
3102
  if (result.validationResult && result.validationResult.success) {
@@ -8468,6 +8478,9 @@ class TransactionConnectorService {
8468
8478
  async getStandardTexts(languageCode) {
8469
8479
  return this._adapterService.functionCall(this._adapterService.getStandardTexts, [languageCode]);
8470
8480
  }
8481
+ async upsertTransactionStandardText(request) {
8482
+ return this._adapterService.functionCall(this._adapterService.upsertTransactionStandardText, [request]);
8483
+ }
8471
8484
  async getSalesPersons(date) {
8472
8485
  return this._selectMultipleParameterizedCacheService.requestCache(SalesPerson, (date) => {
8473
8486
  return this._adapterService.functionCall(this._adapterService.getSalesPersons, [date]);
@@ -12124,6 +12137,9 @@ class TransactionService extends PendingReasonService {
12124
12137
  getStandardTexts(languageCode) {
12125
12138
  return this.connector.getStandardTexts(languageCode);
12126
12139
  }
12140
+ upsertTransactionStandardText(request) {
12141
+ return this.connector.upsertTransactionStandardText(request);
12142
+ }
12127
12143
  getArticleFullObject(goodId) {
12128
12144
  return this.connector.getArticleFullObject(goodId);
12129
12145
  }
@@ -30978,7 +30994,7 @@ class RelationAddressComponent extends RelationBaseComponent {
30978
30994
  class="default-width"
30979
30995
  [model]="address?.houseNo"
30980
30996
  [placeholder]="'HOUSE_NO' | localize"
30981
- [digitsOnly]="true"
30997
+ [type]="'number'"
30982
30998
  [screenConfigurationObject]="cfgNames.RelationHouseNr"
30983
30999
  (blur)="checkForPostalCodeCheckError()"
30984
31000
  (modelChange)="changeHouseNo($event)">
@@ -31055,7 +31071,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
31055
31071
  class="default-width"
31056
31072
  [model]="address?.houseNo"
31057
31073
  [placeholder]="'HOUSE_NO' | localize"
31058
- [digitsOnly]="true"
31074
+ [type]="'number'"
31059
31075
  [screenConfigurationObject]="cfgNames.RelationHouseNr"
31060
31076
  (blur)="checkForPostalCodeCheckError()"
31061
31077
  (modelChange)="changeHouseNo($event)">
@@ -32349,8 +32365,7 @@ class CheckoutOverviewRelationEditComponent {
32349
32365
  if (suggestedRelation && suggestedRelation.addresses && suggestedRelation.addresses.length > 0) {
32350
32366
  suggestedRelation.addresses.sort((a, b) => a.sequence < b.sequence ? -1 : 1);
32351
32367
  }
32352
- this.relation = suggestedRelation;
32353
- this.relationChange.emit(this.relation);
32368
+ this.updateRelation(suggestedRelation);
32354
32369
  }
32355
32370
  }
32356
32371
  }
@@ -35191,7 +35206,7 @@ class TransactionPaymentService {
35191
35206
  else {
35192
35207
  const pinStatus = await this._paymentConnectorService.getPspTransactionStatus(pspTransactionUuid);
35193
35208
  if (pinStatus && pinStatus.status) {
35194
- if (pinStatus.status.code === IonePaymentStatusCode.PENDING || pinStatus.status.code === IonePaymentStatusCode.INIT && pinStatus.paymentUrl.length > 0) {
35209
+ if (pinStatus.status.code === IonePaymentStatusCode.PENDING || pinStatus.status.code === IonePaymentStatusCode.INIT && pinStatus.paymentUrl) {
35195
35210
  this.paymentUrl = pinStatus.paymentUrl;
35196
35211
  this.showPspActions = true;
35197
35212
  }