@juhuu/sdk-ts 1.2.171 → 1.2.172
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 +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
1882
|
+
paymentPostingRowDescription: AccountingAreaUpdateParams.paymentPostingRowDescription,
|
1883
1883
|
orderNumber: AccountingAreaUpdateParams.orderNumber
|
1884
1884
|
},
|
1885
1885
|
authenticationNotOptional: true
|
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
|
-
|
1838
|
+
paymentPostingRowDescription: AccountingAreaUpdateParams.paymentPostingRowDescription,
|
1839
1839
|
orderNumber: AccountingAreaUpdateParams.orderNumber
|
1840
1840
|
},
|
1841
1841
|
authenticationNotOptional: true
|