@juhuu/sdk-ts 1.2.125 → 1.2.126
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 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -1918,7 +1918,7 @@ declare namespace JUHUU {
|
|
1918
1918
|
vat: string;
|
1919
1919
|
invoiceImage: string;
|
1920
1920
|
invoiceNumberPrefix: string;
|
1921
|
-
stripeConnectedAccountId: string;
|
1921
|
+
stripeConnectedAccountId: string | null;
|
1922
1922
|
payoutPostProcessIdentifier: "oebbV1" | null;
|
1923
1923
|
iban: string;
|
1924
1924
|
bic: string;
|
@@ -2360,6 +2360,7 @@ declare namespace JUHUU {
|
|
2360
2360
|
devicePermissionArray: DevicePermission[];
|
2361
2361
|
disabled: boolean;
|
2362
2362
|
disabledBy: "propertyAdmin" | "deviceNodeArray" | null;
|
2363
|
+
visible: boolean;
|
2363
2364
|
};
|
2364
2365
|
export interface RentableDeviceGroup extends Base {
|
2365
2366
|
type: "rentableDeviceGroup";
|
@@ -2413,6 +2414,7 @@ declare namespace JUHUU {
|
|
2413
2414
|
type Params = {
|
2414
2415
|
rentableDeviceGroupLocationId?: string | null;
|
2415
2416
|
propertyId?: string;
|
2417
|
+
visible?: boolean;
|
2416
2418
|
};
|
2417
2419
|
type Options = JUHUU.RequestOptions;
|
2418
2420
|
type Response = JUHUU.Location.Object[];
|
package/dist/index.d.ts
CHANGED
@@ -1918,7 +1918,7 @@ declare namespace JUHUU {
|
|
1918
1918
|
vat: string;
|
1919
1919
|
invoiceImage: string;
|
1920
1920
|
invoiceNumberPrefix: string;
|
1921
|
-
stripeConnectedAccountId: string;
|
1921
|
+
stripeConnectedAccountId: string | null;
|
1922
1922
|
payoutPostProcessIdentifier: "oebbV1" | null;
|
1923
1923
|
iban: string;
|
1924
1924
|
bic: string;
|
@@ -2360,6 +2360,7 @@ declare namespace JUHUU {
|
|
2360
2360
|
devicePermissionArray: DevicePermission[];
|
2361
2361
|
disabled: boolean;
|
2362
2362
|
disabledBy: "propertyAdmin" | "deviceNodeArray" | null;
|
2363
|
+
visible: boolean;
|
2363
2364
|
};
|
2364
2365
|
export interface RentableDeviceGroup extends Base {
|
2365
2366
|
type: "rentableDeviceGroup";
|
@@ -2413,6 +2414,7 @@ declare namespace JUHUU {
|
|
2413
2414
|
type Params = {
|
2414
2415
|
rentableDeviceGroupLocationId?: string | null;
|
2415
2416
|
propertyId?: string;
|
2417
|
+
visible?: boolean;
|
2416
2418
|
};
|
2417
2419
|
type Options = JUHUU.RequestOptions;
|
2418
2420
|
type Response = JUHUU.Location.Object[];
|
package/dist/index.js
CHANGED
@@ -1252,6 +1252,9 @@ var LocationsService = class extends Service {
|
|
1252
1252
|
if (LocationListParams?.propertyId !== void 0) {
|
1253
1253
|
queryArray.push("propertyId=" + LocationListParams.propertyId);
|
1254
1254
|
}
|
1255
|
+
if (LocationListParams?.visible !== void 0) {
|
1256
|
+
queryArray.push("visible=" + LocationListParams.visible);
|
1257
|
+
}
|
1255
1258
|
return await super.sendRequest(
|
1256
1259
|
{
|
1257
1260
|
method: "GET",
|
package/dist/index.mjs
CHANGED
@@ -1208,6 +1208,9 @@ var LocationsService = class extends Service {
|
|
1208
1208
|
if (LocationListParams?.propertyId !== void 0) {
|
1209
1209
|
queryArray.push("propertyId=" + LocationListParams.propertyId);
|
1210
1210
|
}
|
1211
|
+
if (LocationListParams?.visible !== void 0) {
|
1212
|
+
queryArray.push("visible=" + LocationListParams.visible);
|
1213
|
+
}
|
1211
1214
|
return await super.sendRequest(
|
1212
1215
|
{
|
1213
1216
|
method: "GET",
|