@juhuu/sdk-ts 1.2.101 → 1.2.103

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
@@ -179,7 +179,7 @@ interface Party extends Person {
179
179
  }
180
180
  type VeloBrushDeviceDocumentUserManualStep = "prepareBike1" | "prepareBike2" | "chooseCycleType" | "openDoors1" | "extendBikeDrawer1" | "unfoldRamp1" | "placeBike1" | "fixBike1" | "fixBike2" | "retractBikeDrawer1" | "closeDoors1" | "selectWashProgram" | "waitForWashProgram" | "openDoors2" | "extendBikeDrawer2" | "dryBike1" | "dryBike2" | "releaseBike" | "unloadBike" | "retractBikeDrawer2" | "closeDoors2" | "lockDoors" | "error" | "emergencyStop" | "waitingForSession";
181
181
  type PaymentStatus = "waitingForConfirmation" | "waitingForAmountFinalization" | "waitingForCapture" | "waitingForTransitConfirmation" | "inTransitToProvider" | "captured" | "inTransitToProperty" | "payedOut";
182
- type PaymentRefundStatus = "inTransitToUser" | "succeeded";
182
+ type PaymentRefundStatus = "waitingForArrivalAtUser" | "waitingForPayout" | "payedOut" | "failed";
183
183
  type PaymentServiceProvider = "stripe";
184
184
  type PayoutStatus = "waitingForApproval" | "inTransitToProperty" | "payedOut";
185
185
  type BusinessType = "individual" | "company" | "non_profit" | "government_entity";
package/dist/index.d.ts CHANGED
@@ -179,7 +179,7 @@ interface Party extends Person {
179
179
  }
180
180
  type VeloBrushDeviceDocumentUserManualStep = "prepareBike1" | "prepareBike2" | "chooseCycleType" | "openDoors1" | "extendBikeDrawer1" | "unfoldRamp1" | "placeBike1" | "fixBike1" | "fixBike2" | "retractBikeDrawer1" | "closeDoors1" | "selectWashProgram" | "waitForWashProgram" | "openDoors2" | "extendBikeDrawer2" | "dryBike1" | "dryBike2" | "releaseBike" | "unloadBike" | "retractBikeDrawer2" | "closeDoors2" | "lockDoors" | "error" | "emergencyStop" | "waitingForSession";
181
181
  type PaymentStatus = "waitingForConfirmation" | "waitingForAmountFinalization" | "waitingForCapture" | "waitingForTransitConfirmation" | "inTransitToProvider" | "captured" | "inTransitToProperty" | "payedOut";
182
- type PaymentRefundStatus = "inTransitToUser" | "succeeded";
182
+ type PaymentRefundStatus = "waitingForArrivalAtUser" | "waitingForPayout" | "payedOut" | "failed";
183
183
  type PaymentServiceProvider = "stripe";
184
184
  type PayoutStatus = "waitingForApproval" | "inTransitToProperty" | "payedOut";
185
185
  type BusinessType = "individual" | "company" | "non_profit" | "government_entity";
package/dist/index.js CHANGED
@@ -2478,6 +2478,9 @@ var PaymentRefundsService = class extends Service {
2478
2478
  if (PaymentRefundListParams.skip !== void 0) {
2479
2479
  queryArray.push("skip=" + PaymentRefundListParams.skip);
2480
2480
  }
2481
+ if (PaymentRefundListParams.paymentId !== void 0) {
2482
+ queryArray.push("paymentId=" + PaymentRefundListParams.paymentId);
2483
+ }
2481
2484
  return await super.sendRequest(
2482
2485
  {
2483
2486
  method: "GET",
package/dist/index.mjs CHANGED
@@ -2434,6 +2434,9 @@ var PaymentRefundsService = class extends Service {
2434
2434
  if (PaymentRefundListParams.skip !== void 0) {
2435
2435
  queryArray.push("skip=" + PaymentRefundListParams.skip);
2436
2436
  }
2437
+ if (PaymentRefundListParams.paymentId !== void 0) {
2438
+ queryArray.push("paymentId=" + PaymentRefundListParams.paymentId);
2439
+ }
2437
2440
  return await super.sendRequest(
2438
2441
  {
2439
2442
  method: "GET",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.101",
3
+ "version": "1.2.103",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",