@juhuu/sdk-ts 1.2.146 → 1.2.147

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.js CHANGED
@@ -114,6 +114,7 @@ var Service = class {
114
114
  }
115
115
  }
116
116
  }
117
+ console.log("currentOptions", currentOptions);
117
118
  let token = null;
118
119
  let apiKey = null;
119
120
  switch (this.authenticationMode) {
@@ -160,6 +161,14 @@ var Service = class {
160
161
  const uri = this.httpBaseUrl + url;
161
162
  let response = null;
162
163
  let responseObject = null;
164
+ console.log(
165
+ "sending request to",
166
+ uri,
167
+ "with apiKey",
168
+ apiKey,
169
+ "and token",
170
+ token
171
+ );
163
172
  try {
164
173
  switch (method) {
165
174
  case "GET": {
@@ -968,7 +977,8 @@ var PropertiesService = class extends Service {
968
977
  primaryColor: PropertyOnboardingParams.primaryColor,
969
978
  backgroundColor: PropertyOnboardingParams.backgroundColor,
970
979
  logo: PropertyOnboardingParams.logo,
971
- name: PropertyOnboardingParams.name
980
+ name: PropertyOnboardingParams.name,
981
+ eligibleToCreateOnBehalfOfBusiness: PropertyOnboardingParams.eligibleToCreateOnBehalfOfBusiness
972
982
  },
973
983
  authenticationNotOptional: true
974
984
  },
package/dist/index.mjs CHANGED
@@ -70,6 +70,7 @@ var Service = class {
70
70
  }
71
71
  }
72
72
  }
73
+ console.log("currentOptions", currentOptions);
73
74
  let token = null;
74
75
  let apiKey = null;
75
76
  switch (this.authenticationMode) {
@@ -116,6 +117,14 @@ var Service = class {
116
117
  const uri = this.httpBaseUrl + url;
117
118
  let response = null;
118
119
  let responseObject = null;
120
+ console.log(
121
+ "sending request to",
122
+ uri,
123
+ "with apiKey",
124
+ apiKey,
125
+ "and token",
126
+ token
127
+ );
119
128
  try {
120
129
  switch (method) {
121
130
  case "GET": {
@@ -924,7 +933,8 @@ var PropertiesService = class extends Service {
924
933
  primaryColor: PropertyOnboardingParams.primaryColor,
925
934
  backgroundColor: PropertyOnboardingParams.backgroundColor,
926
935
  logo: PropertyOnboardingParams.logo,
927
- name: PropertyOnboardingParams.name
936
+ name: PropertyOnboardingParams.name,
937
+ eligibleToCreateOnBehalfOfBusiness: PropertyOnboardingParams.eligibleToCreateOnBehalfOfBusiness
928
938
  },
929
939
  authenticationNotOptional: true
930
940
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.146",
3
+ "version": "1.2.147",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",