@juhuu/sdk-ts 1.2.125 → 1.2.127

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
@@ -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;
@@ -2036,6 +2036,7 @@ declare namespace JUHUU {
2036
2036
  primaryColor: string;
2037
2037
  backgroundColor: string;
2038
2038
  name: string;
2039
+ eligibleToCreateOnBehalfOfBusiness: boolean;
2039
2040
  };
2040
2041
  type Options = JUHUU.RequestOptions;
2041
2042
  type Response = {
@@ -2360,6 +2361,7 @@ declare namespace JUHUU {
2360
2361
  devicePermissionArray: DevicePermission[];
2361
2362
  disabled: boolean;
2362
2363
  disabledBy: "propertyAdmin" | "deviceNodeArray" | null;
2364
+ visible: boolean;
2363
2365
  };
2364
2366
  export interface RentableDeviceGroup extends Base {
2365
2367
  type: "rentableDeviceGroup";
@@ -2413,6 +2415,7 @@ declare namespace JUHUU {
2413
2415
  type Params = {
2414
2416
  rentableDeviceGroupLocationId?: string | null;
2415
2417
  propertyId?: string;
2418
+ visible?: boolean;
2416
2419
  };
2417
2420
  type Options = JUHUU.RequestOptions;
2418
2421
  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;
@@ -2036,6 +2036,7 @@ declare namespace JUHUU {
2036
2036
  primaryColor: string;
2037
2037
  backgroundColor: string;
2038
2038
  name: string;
2039
+ eligibleToCreateOnBehalfOfBusiness: boolean;
2039
2040
  };
2040
2041
  type Options = JUHUU.RequestOptions;
2041
2042
  type Response = {
@@ -2360,6 +2361,7 @@ declare namespace JUHUU {
2360
2361
  devicePermissionArray: DevicePermission[];
2361
2362
  disabled: boolean;
2362
2363
  disabledBy: "propertyAdmin" | "deviceNodeArray" | null;
2364
+ visible: boolean;
2363
2365
  };
2364
2366
  export interface RentableDeviceGroup extends Base {
2365
2367
  type: "rentableDeviceGroup";
@@ -2413,6 +2415,7 @@ declare namespace JUHUU {
2413
2415
  type Params = {
2414
2416
  rentableDeviceGroupLocationId?: string | null;
2415
2417
  propertyId?: string;
2418
+ visible?: boolean;
2416
2419
  };
2417
2420
  type Options = JUHUU.RequestOptions;
2418
2421
  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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.125",
3
+ "version": "1.2.127",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",