@juhuu/sdk-ts 1.2.158 → 1.2.159
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 +1 -0
- package/dist/index.d.ts +1 -0
- 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
@@ -2967,6 +2967,9 @@ var ParametersService = class extends Service {
|
|
2967
2967
|
}
|
2968
2968
|
async retrieve(ParameterRetrieveParams, ParameterRetrieveOptions) {
|
2969
2969
|
const queryArray = [];
|
2970
|
+
if (ParameterRetrieveParams?.deviceId !== void 0) {
|
2971
|
+
queryArray.push("deviceId=" + ParameterRetrieveParams.deviceId);
|
2972
|
+
}
|
2970
2973
|
if (ParameterRetrieveOptions?.expand !== void 0) {
|
2971
2974
|
queryArray.push("expand=" + ParameterRetrieveOptions.expand.join(","));
|
2972
2975
|
}
|
package/dist/index.mjs
CHANGED
@@ -2923,6 +2923,9 @@ var ParametersService = class extends Service {
|
|
2923
2923
|
}
|
2924
2924
|
async retrieve(ParameterRetrieveParams, ParameterRetrieveOptions) {
|
2925
2925
|
const queryArray = [];
|
2926
|
+
if (ParameterRetrieveParams?.deviceId !== void 0) {
|
2927
|
+
queryArray.push("deviceId=" + ParameterRetrieveParams.deviceId);
|
2928
|
+
}
|
2926
2929
|
if (ParameterRetrieveOptions?.expand !== void 0) {
|
2927
2930
|
queryArray.push("expand=" + ParameterRetrieveOptions.expand.join(","));
|
2928
2931
|
}
|