@juhuu/sdk-ts 1.3.47 → 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
@@ -2090,17 +2090,10 @@ type BlockExecutor = (inputs: FlowBlockInput, block: FlowBlock, context: Record<
2090
2090
  type DataEdgeConnection = string | null;
2091
2091
  type ControlEdgeConnection = string | null;
2092
2092
  type QuickAction = {
2093
- type: "flow";
2094
2093
  name: LocaleString;
2095
2094
  icon: string | null;
2096
2095
  visibleCondition: Condition | null;
2097
2096
  flowId: string;
2098
- } | {
2099
- type: "panel";
2100
- name: LocaleString;
2101
- icon: string | null;
2102
- visibleCondition: Condition | null;
2103
- panelId: string;
2104
2097
  };
2105
2098
  type QuickView = {
2106
2099
  name: LocaleString;
@@ -3676,6 +3669,7 @@ declare namespace JUHUU {
3676
3669
  BKTXT: string | null;
3677
3670
  SGTXT: string | null;
3678
3671
  ZUONR: string | null;
3672
+ additionalDetails: LocaleString | null;
3679
3673
  };
3680
3674
  namespace Create {
3681
3675
  type Params = {
@@ -3720,6 +3714,7 @@ declare namespace JUHUU {
3720
3714
  name?: string;
3721
3715
  paymentPostingRowDescription?: string;
3722
3716
  orderNumber?: string;
3717
+ additionalDetails?: LocaleString | null;
3723
3718
  };
3724
3719
  type Options = JUHUU.RequestOptions;
3725
3720
  type Response = {
package/dist/index.d.ts CHANGED
@@ -2090,17 +2090,10 @@ type BlockExecutor = (inputs: FlowBlockInput, block: FlowBlock, context: Record<
2090
2090
  type DataEdgeConnection = string | null;
2091
2091
  type ControlEdgeConnection = string | null;
2092
2092
  type QuickAction = {
2093
- type: "flow";
2094
2093
  name: LocaleString;
2095
2094
  icon: string | null;
2096
2095
  visibleCondition: Condition | null;
2097
2096
  flowId: string;
2098
- } | {
2099
- type: "panel";
2100
- name: LocaleString;
2101
- icon: string | null;
2102
- visibleCondition: Condition | null;
2103
- panelId: string;
2104
2097
  };
2105
2098
  type QuickView = {
2106
2099
  name: LocaleString;
@@ -3676,6 +3669,7 @@ declare namespace JUHUU {
3676
3669
  BKTXT: string | null;
3677
3670
  SGTXT: string | null;
3678
3671
  ZUONR: string | null;
3672
+ additionalDetails: LocaleString | null;
3679
3673
  };
3680
3674
  namespace Create {
3681
3675
  type Params = {
@@ -3720,6 +3714,7 @@ declare namespace JUHUU {
3720
3714
  name?: string;
3721
3715
  paymentPostingRowDescription?: string;
3722
3716
  orderNumber?: string;
3717
+ additionalDetails?: LocaleString | null;
3723
3718
  };
3724
3719
  type Options = JUHUU.RequestOptions;
3725
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.47",
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",