@juhuu/sdk-ts 1.2.136 → 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 +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -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 = {
|
@@ -2739,6 +2743,7 @@ declare namespace JUHUU {
|
|
2739
2743
|
namespace Create {
|
2740
2744
|
type Params = {
|
2741
2745
|
propertyId: string;
|
2746
|
+
acceptTerms: boolean;
|
2742
2747
|
name?: string;
|
2743
2748
|
deviceTemplateId: string;
|
2744
2749
|
};
|
@@ -2767,7 +2772,6 @@ declare namespace JUHUU {
|
|
2767
2772
|
statusArray?: DeviceStatus[];
|
2768
2773
|
propertyId?: string;
|
2769
2774
|
deviceTemplateId?: string;
|
2770
|
-
acceptTerms?: boolean;
|
2771
2775
|
};
|
2772
2776
|
type Options = {
|
2773
2777
|
limit?: number;
|
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 = {
|
@@ -2739,6 +2743,7 @@ declare namespace JUHUU {
|
|
2739
2743
|
namespace Create {
|
2740
2744
|
type Params = {
|
2741
2745
|
propertyId: string;
|
2746
|
+
acceptTerms: boolean;
|
2742
2747
|
name?: string;
|
2743
2748
|
deviceTemplateId: string;
|
2744
2749
|
};
|
@@ -2767,7 +2772,6 @@ declare namespace JUHUU {
|
|
2767
2772
|
statusArray?: DeviceStatus[];
|
2768
2773
|
propertyId?: string;
|
2769
2774
|
deviceTemplateId?: string;
|
2770
|
-
acceptTerms?: boolean;
|
2771
2775
|
};
|
2772
2776
|
type Options = {
|
2773
2777
|
limit?: number;
|
package/dist/index.js
CHANGED
@@ -1032,7 +1032,8 @@ var DevicesService = class extends Service {
|
|
1032
1032
|
body: {
|
1033
1033
|
propertyId: DeviceCreateParams.propertyId,
|
1034
1034
|
deviceTemplateId: DeviceCreateParams.deviceTemplateId,
|
1035
|
-
name: DeviceCreateParams.name
|
1035
|
+
name: DeviceCreateParams.name,
|
1036
|
+
acceptTerms: DeviceCreateParams.acceptTerms
|
1036
1037
|
},
|
1037
1038
|
authenticationNotOptional: true
|
1038
1039
|
},
|
package/dist/index.mjs
CHANGED
@@ -988,7 +988,8 @@ var DevicesService = class extends Service {
|
|
988
988
|
body: {
|
989
989
|
propertyId: DeviceCreateParams.propertyId,
|
990
990
|
deviceTemplateId: DeviceCreateParams.deviceTemplateId,
|
991
|
-
name: DeviceCreateParams.name
|
991
|
+
name: DeviceCreateParams.name,
|
992
|
+
acceptTerms: DeviceCreateParams.acceptTerms
|
992
993
|
},
|
993
994
|
authenticationNotOptional: true
|
994
995
|
},
|