@juhuu/sdk-ts 1.2.137 → 1.2.138
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 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -2280,7 +2280,6 @@ declare namespace JUHUU {
|
|
2280
2280
|
amountFinal: number | null;
|
2281
2281
|
amountCaptured: number;
|
2282
2282
|
amountToPayout: number | null;
|
2283
|
-
amountRefunded: number;
|
2284
2283
|
createdAt: Date;
|
2285
2284
|
billingAddress: DeepNullable<Address>;
|
2286
2285
|
invoicePdfId: string | null;
|
@@ -2306,6 +2305,11 @@ declare namespace JUHUU {
|
|
2306
2305
|
reasonDescription: string | null;
|
2307
2306
|
amountCapturedNet: number | null;
|
2308
2307
|
taxAmount: number | null;
|
2308
|
+
stripeBalanceTransactionId: string | null;
|
2309
|
+
capturedAt: Date | null;
|
2310
|
+
capturedBy: "system" | "propertyAdmin" | null;
|
2311
|
+
capturedByUserId: string | null;
|
2312
|
+
isPartiallyOrFullyRefunded: boolean;
|
2309
2313
|
};
|
2310
2314
|
namespace Retrieve {
|
2311
2315
|
type Params = {
|
package/dist/index.d.ts
CHANGED
@@ -2280,7 +2280,6 @@ declare namespace JUHUU {
|
|
2280
2280
|
amountFinal: number | null;
|
2281
2281
|
amountCaptured: number;
|
2282
2282
|
amountToPayout: number | null;
|
2283
|
-
amountRefunded: number;
|
2284
2283
|
createdAt: Date;
|
2285
2284
|
billingAddress: DeepNullable<Address>;
|
2286
2285
|
invoicePdfId: string | null;
|
@@ -2306,6 +2305,11 @@ declare namespace JUHUU {
|
|
2306
2305
|
reasonDescription: string | null;
|
2307
2306
|
amountCapturedNet: number | null;
|
2308
2307
|
taxAmount: number | null;
|
2308
|
+
stripeBalanceTransactionId: string | null;
|
2309
|
+
capturedAt: Date | null;
|
2310
|
+
capturedBy: "system" | "propertyAdmin" | null;
|
2311
|
+
capturedByUserId: string | null;
|
2312
|
+
isPartiallyOrFullyRefunded: boolean;
|
2309
2313
|
};
|
2310
2314
|
namespace Retrieve {
|
2311
2315
|
type Params = {
|