@juhuu/sdk-ts 1.3.48 → 1.3.49

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/index.d.mts CHANGED
@@ -3669,6 +3669,7 @@ declare namespace JUHUU {
3669
3669
  BKTXT: string | null;
3670
3670
  SGTXT: string | null;
3671
3671
  ZUONR: string | null;
3672
+ additionalDetails: LocaleString | null;
3672
3673
  };
3673
3674
  namespace Create {
3674
3675
  type Params = {
@@ -3713,6 +3714,7 @@ declare namespace JUHUU {
3713
3714
  name?: string;
3714
3715
  paymentPostingRowDescription?: string;
3715
3716
  orderNumber?: string;
3717
+ additionalDetails?: LocaleString | null;
3716
3718
  };
3717
3719
  type Options = JUHUU.RequestOptions;
3718
3720
  type Response = {
package/dist/index.d.ts CHANGED
@@ -3669,6 +3669,7 @@ declare namespace JUHUU {
3669
3669
  BKTXT: string | null;
3670
3670
  SGTXT: string | null;
3671
3671
  ZUONR: string | null;
3672
+ additionalDetails: LocaleString | null;
3672
3673
  };
3673
3674
  namespace Create {
3674
3675
  type Params = {
@@ -3713,6 +3714,7 @@ declare namespace JUHUU {
3713
3714
  name?: string;
3714
3715
  paymentPostingRowDescription?: string;
3715
3716
  orderNumber?: string;
3717
+ additionalDetails?: LocaleString | null;
3716
3718
  };
3717
3719
  type Options = JUHUU.RequestOptions;
3718
3720
  type Response = {
package/dist/index.js CHANGED
@@ -2811,7 +2811,8 @@ var AccountingAreasService = class extends Service {
2811
2811
  body: {
2812
2812
  name: AccountingAreaUpdateParams.name,
2813
2813
  paymentPostingRowDescription: AccountingAreaUpdateParams.paymentPostingRowDescription,
2814
- orderNumber: AccountingAreaUpdateParams.orderNumber
2814
+ orderNumber: AccountingAreaUpdateParams.orderNumber,
2815
+ additionalDetails: AccountingAreaUpdateParams.additionalDetails
2815
2816
  },
2816
2817
  authenticationNotOptional: true
2817
2818
  },
package/dist/index.mjs CHANGED
@@ -2767,7 +2767,8 @@ var AccountingAreasService = class extends Service {
2767
2767
  body: {
2768
2768
  name: AccountingAreaUpdateParams.name,
2769
2769
  paymentPostingRowDescription: AccountingAreaUpdateParams.paymentPostingRowDescription,
2770
- orderNumber: AccountingAreaUpdateParams.orderNumber
2770
+ orderNumber: AccountingAreaUpdateParams.orderNumber,
2771
+ additionalDetails: AccountingAreaUpdateParams.additionalDetails
2771
2772
  },
2772
2773
  authenticationNotOptional: true
2773
2774
  },
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "provenance": true
4
4
  },
5
5
  "name": "@juhuu/sdk-ts",
6
- "version": "1.3.48",
6
+ "version": "1.3.49",
7
7
  "description": "Typescript wrapper for JUHUU services",
8
8
  "main": "./dist/index.js",
9
9
  "module": "./dist/index.mjs",