@juhuu/sdk-ts 1.2.171 → 1.2.173

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
@@ -1478,7 +1478,8 @@ declare namespace JUHUU {
1478
1478
  id: string;
1479
1479
  name: string;
1480
1480
  propertyId: string;
1481
- creditPostingRowDescription: string;
1481
+ paymentPostingRowDescription: string;
1482
+ paymentRefundPostingRowDescription: string;
1482
1483
  orderNumber: string;
1483
1484
  BKTXT: string | null;
1484
1485
  SGTXT: string | null;
@@ -1517,7 +1518,7 @@ declare namespace JUHUU {
1517
1518
  type Params = {
1518
1519
  accountingAreaId: string;
1519
1520
  name?: string;
1520
- creditPostingRowDescription?: string;
1521
+ paymentPostingRowDescription?: string;
1521
1522
  orderNumber?: string;
1522
1523
  };
1523
1524
  type Options = JUHUU.RequestOptions;
package/dist/index.d.ts CHANGED
@@ -1478,7 +1478,8 @@ declare namespace JUHUU {
1478
1478
  id: string;
1479
1479
  name: string;
1480
1480
  propertyId: string;
1481
- creditPostingRowDescription: string;
1481
+ paymentPostingRowDescription: string;
1482
+ paymentRefundPostingRowDescription: string;
1482
1483
  orderNumber: string;
1483
1484
  BKTXT: string | null;
1484
1485
  SGTXT: string | null;
@@ -1517,7 +1518,7 @@ declare namespace JUHUU {
1517
1518
  type Params = {
1518
1519
  accountingAreaId: string;
1519
1520
  name?: string;
1520
- creditPostingRowDescription?: string;
1521
+ paymentPostingRowDescription?: string;
1521
1522
  orderNumber?: string;
1522
1523
  };
1523
1524
  type Options = JUHUU.RequestOptions;
package/dist/index.js CHANGED
@@ -1879,7 +1879,7 @@ var AccountingAreasService = class extends Service {
1879
1879
  url: "accountingAreas/" + AccountingAreaUpdateParams.accountingAreaId,
1880
1880
  body: {
1881
1881
  name: AccountingAreaUpdateParams.name,
1882
- creditPostingRowDescription: AccountingAreaUpdateParams.creditPostingRowDescription,
1882
+ paymentPostingRowDescription: AccountingAreaUpdateParams.paymentPostingRowDescription,
1883
1883
  orderNumber: AccountingAreaUpdateParams.orderNumber
1884
1884
  },
1885
1885
  authenticationNotOptional: true
@@ -2992,7 +2992,8 @@ var ParametersService = class extends Service {
2992
2992
  url: "parameters/" + ParameterUpdateParams.parameterId,
2993
2993
  body: {
2994
2994
  name: ParameterUpdateParams.name,
2995
- currentValue: ParameterUpdateParams.currentValue
2995
+ currentValue: ParameterUpdateParams.currentValue,
2996
+ deviceId: ParameterUpdateParams.deviceId
2996
2997
  },
2997
2998
  authenticationNotOptional: true
2998
2999
  },
package/dist/index.mjs CHANGED
@@ -1835,7 +1835,7 @@ var AccountingAreasService = class extends Service {
1835
1835
  url: "accountingAreas/" + AccountingAreaUpdateParams.accountingAreaId,
1836
1836
  body: {
1837
1837
  name: AccountingAreaUpdateParams.name,
1838
- creditPostingRowDescription: AccountingAreaUpdateParams.creditPostingRowDescription,
1838
+ paymentPostingRowDescription: AccountingAreaUpdateParams.paymentPostingRowDescription,
1839
1839
  orderNumber: AccountingAreaUpdateParams.orderNumber
1840
1840
  },
1841
1841
  authenticationNotOptional: true
@@ -2948,7 +2948,8 @@ var ParametersService = class extends Service {
2948
2948
  url: "parameters/" + ParameterUpdateParams.parameterId,
2949
2949
  body: {
2950
2950
  name: ParameterUpdateParams.name,
2951
- currentValue: ParameterUpdateParams.currentValue
2951
+ currentValue: ParameterUpdateParams.currentValue,
2952
+ deviceId: ParameterUpdateParams.deviceId
2952
2953
  },
2953
2954
  authenticationNotOptional: true
2954
2955
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.171",
3
+ "version": "1.2.173",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",