bruce-models 2.4.5 → 2.4.6

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.
@@ -4523,6 +4523,9 @@
4523
4523
  return this.sessionId;
4524
4524
  }
4525
4525
  GetBruceApi(params) {
4526
+ if (!params) {
4527
+ params = {};
4528
+ }
4526
4529
  let { accountId, env } = params;
4527
4530
  accountId = accountId ? accountId : this.accountId;
4528
4531
  env = env ? env : this.env;
@@ -4551,6 +4554,9 @@
4551
4554
  * @returns
4552
4555
  */
4553
4556
  GetIdmApi(params) {
4557
+ if (!params) {
4558
+ params = {};
4559
+ }
4554
4560
  let { env } = params;
4555
4561
  env = env ? env : this.env;
4556
4562
  const key = `${env}`;
@@ -4579,6 +4585,9 @@
4579
4585
  * @returns
4580
4586
  */
4581
4587
  GetCamApi(params) {
4588
+ if (!params) {
4589
+ params = {};
4590
+ }
4582
4591
  let { env } = params;
4583
4592
  env = env ? env : this.env;
4584
4593
  const key = `${env}`;
@@ -4603,6 +4612,9 @@
4603
4612
  };
4604
4613
  }
4605
4614
  GetGlobalApi(params) {
4615
+ if (!params) {
4616
+ params = {};
4617
+ }
4606
4618
  let { env } = params;
4607
4619
  env = env ? env : this.env;
4608
4620
  const key = `${env}`;
@@ -4623,6 +4635,9 @@
4623
4635
  };
4624
4636
  }
4625
4637
  GetGuardianApi(params) {
4638
+ if (!params) {
4639
+ params = {};
4640
+ }
4626
4641
  let { env } = params;
4627
4642
  env = env ? env : this.env;
4628
4643
  const key = `${env}`;