@juhuu/sdk-ts 1.2.84 → 1.2.85
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
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
@@ -792,6 +792,9 @@ var PropertiesService = class extends Service {
|
|
792
792
|
}
|
793
793
|
async list(PropertyListParams, PropertyListOptions) {
|
794
794
|
const queryArray = [];
|
795
|
+
if (PropertyListParams.userId !== void 0) {
|
796
|
+
queryArray.push("userId=" + PropertyListParams.userId);
|
797
|
+
}
|
795
798
|
return await super.sendRequest(
|
796
799
|
{
|
797
800
|
method: "GET",
|
package/dist/index.mjs
CHANGED
@@ -748,6 +748,9 @@ var PropertiesService = class extends Service {
|
|
748
748
|
}
|
749
749
|
async list(PropertyListParams, PropertyListOptions) {
|
750
750
|
const queryArray = [];
|
751
|
+
if (PropertyListParams.userId !== void 0) {
|
752
|
+
queryArray.push("userId=" + PropertyListParams.userId);
|
753
|
+
}
|
751
754
|
return await super.sendRequest(
|
752
755
|
{
|
753
756
|
method: "GET",
|