@colijnit/transaction 262.1.43 → 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.43";
359
- publishDate = "7-9-2026, 17:11:44";
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
  }