@juhuu/sdk-ts 1.2.170 → 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 +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +5 -3
- package/dist/index.mjs +5 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -1387,6 +1387,7 @@ declare namespace JUHUU {
|
|
1387
1387
|
type Params = {
|
1388
1388
|
userId: string;
|
1389
1389
|
deviceId: string;
|
1390
|
+
implementationVersion: number;
|
1390
1391
|
};
|
1391
1392
|
type Options = JUHUU.RequestOptions;
|
1392
1393
|
type Response = {
|
@@ -1397,6 +1398,7 @@ declare namespace JUHUU {
|
|
1397
1398
|
type Params = {
|
1398
1399
|
userId: string;
|
1399
1400
|
deviceId: string;
|
1401
|
+
implementationVersion: number;
|
1400
1402
|
};
|
1401
1403
|
type Options = JUHUU.RequestOptions;
|
1402
1404
|
type Response = {
|
@@ -1476,7 +1478,8 @@ declare namespace JUHUU {
|
|
1476
1478
|
id: string;
|
1477
1479
|
name: string;
|
1478
1480
|
propertyId: string;
|
1479
|
-
|
1481
|
+
paymentPostingRowDescription: string;
|
1482
|
+
paymentRefundPostingRowDescription: string;
|
1480
1483
|
orderNumber: string;
|
1481
1484
|
BKTXT: string | null;
|
1482
1485
|
SGTXT: string | null;
|
@@ -1515,7 +1518,7 @@ declare namespace JUHUU {
|
|
1515
1518
|
type Params = {
|
1516
1519
|
accountingAreaId: string;
|
1517
1520
|
name?: string;
|
1518
|
-
|
1521
|
+
paymentPostingRowDescription?: string;
|
1519
1522
|
orderNumber?: string;
|
1520
1523
|
};
|
1521
1524
|
type Options = JUHUU.RequestOptions;
|
package/dist/index.d.ts
CHANGED
@@ -1387,6 +1387,7 @@ declare namespace JUHUU {
|
|
1387
1387
|
type Params = {
|
1388
1388
|
userId: string;
|
1389
1389
|
deviceId: string;
|
1390
|
+
implementationVersion: number;
|
1390
1391
|
};
|
1391
1392
|
type Options = JUHUU.RequestOptions;
|
1392
1393
|
type Response = {
|
@@ -1397,6 +1398,7 @@ declare namespace JUHUU {
|
|
1397
1398
|
type Params = {
|
1398
1399
|
userId: string;
|
1399
1400
|
deviceId: string;
|
1401
|
+
implementationVersion: number;
|
1400
1402
|
};
|
1401
1403
|
type Options = JUHUU.RequestOptions;
|
1402
1404
|
type Response = {
|
@@ -1476,7 +1478,8 @@ declare namespace JUHUU {
|
|
1476
1478
|
id: string;
|
1477
1479
|
name: string;
|
1478
1480
|
propertyId: string;
|
1479
|
-
|
1481
|
+
paymentPostingRowDescription: string;
|
1482
|
+
paymentRefundPostingRowDescription: string;
|
1480
1483
|
orderNumber: string;
|
1481
1484
|
BKTXT: string | null;
|
1482
1485
|
SGTXT: string | null;
|
@@ -1515,7 +1518,7 @@ declare namespace JUHUU {
|
|
1515
1518
|
type Params = {
|
1516
1519
|
accountingAreaId: string;
|
1517
1520
|
name?: string;
|
1518
|
-
|
1521
|
+
paymentPostingRowDescription?: string;
|
1519
1522
|
orderNumber?: string;
|
1520
1523
|
};
|
1521
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
|
@@ -2611,7 +2611,8 @@ var TapkeyService = class extends Service {
|
|
2611
2611
|
url: "tapkey/credentials",
|
2612
2612
|
body: {
|
2613
2613
|
userId: TapkeyCredentialsParams.userId,
|
2614
|
-
deviceId: TapkeyCredentialsParams.deviceId
|
2614
|
+
deviceId: TapkeyCredentialsParams.deviceId,
|
2615
|
+
implementationVersion: TapkeyCredentialsParams.implementationVersion
|
2615
2616
|
},
|
2616
2617
|
authenticationNotOptional: true
|
2617
2618
|
},
|
@@ -2626,7 +2627,8 @@ var TapkeyService = class extends Service {
|
|
2626
2627
|
url: "tapkey/grantAccess",
|
2627
2628
|
body: {
|
2628
2629
|
userId: TapkeyGrantAccessParams.userId,
|
2629
|
-
deviceId: TapkeyGrantAccessParams.deviceId
|
2630
|
+
deviceId: TapkeyGrantAccessParams.deviceId,
|
2631
|
+
implementationVersion: TapkeyGrantAccessParams.implementationVersion
|
2630
2632
|
},
|
2631
2633
|
authenticationNotOptional: true
|
2632
2634
|
},
|
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
|
@@ -2567,7 +2567,8 @@ var TapkeyService = class extends Service {
|
|
2567
2567
|
url: "tapkey/credentials",
|
2568
2568
|
body: {
|
2569
2569
|
userId: TapkeyCredentialsParams.userId,
|
2570
|
-
deviceId: TapkeyCredentialsParams.deviceId
|
2570
|
+
deviceId: TapkeyCredentialsParams.deviceId,
|
2571
|
+
implementationVersion: TapkeyCredentialsParams.implementationVersion
|
2571
2572
|
},
|
2572
2573
|
authenticationNotOptional: true
|
2573
2574
|
},
|
@@ -2582,7 +2583,8 @@ var TapkeyService = class extends Service {
|
|
2582
2583
|
url: "tapkey/grantAccess",
|
2583
2584
|
body: {
|
2584
2585
|
userId: TapkeyGrantAccessParams.userId,
|
2585
|
-
deviceId: TapkeyGrantAccessParams.deviceId
|
2586
|
+
deviceId: TapkeyGrantAccessParams.deviceId,
|
2587
|
+
implementationVersion: TapkeyGrantAccessParams.implementationVersion
|
2586
2588
|
},
|
2587
2589
|
authenticationNotOptional: true
|
2588
2590
|
},
|