@juhuu/sdk-ts 1.2.316 → 1.2.317
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 +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3111,7 +3111,7 @@ declare namespace JUHUU {
|
|
|
3111
3111
|
namespace Pdf {
|
|
3112
3112
|
type Params = {
|
|
3113
3113
|
articleId: string;
|
|
3114
|
-
languageCode: LanguageCode;
|
|
3114
|
+
languageCode: LanguageCode[];
|
|
3115
3115
|
};
|
|
3116
3116
|
type Options = JUHUU.RequestOptions;
|
|
3117
3117
|
type Response = {
|
|
@@ -4369,6 +4369,7 @@ declare namespace JUHUU {
|
|
|
4369
4369
|
adminQuickViewArray: QuickView[];
|
|
4370
4370
|
simIdArray: string[];
|
|
4371
4371
|
panelId: string | null;
|
|
4372
|
+
adminQuickActionArray: QuickAction[];
|
|
4372
4373
|
};
|
|
4373
4374
|
namespace Create {
|
|
4374
4375
|
type Params = {
|
|
@@ -4428,6 +4429,7 @@ declare namespace JUHUU {
|
|
|
4428
4429
|
permissionArray?: DevicePermission[];
|
|
4429
4430
|
parameterIdArray?: string[];
|
|
4430
4431
|
panelId?: string | null;
|
|
4432
|
+
adminQuickActionArray?: QuickAction[];
|
|
4431
4433
|
};
|
|
4432
4434
|
type Options = JUHUU.RequestOptions;
|
|
4433
4435
|
type Response = {
|
package/dist/index.d.ts
CHANGED
|
@@ -3111,7 +3111,7 @@ declare namespace JUHUU {
|
|
|
3111
3111
|
namespace Pdf {
|
|
3112
3112
|
type Params = {
|
|
3113
3113
|
articleId: string;
|
|
3114
|
-
languageCode: LanguageCode;
|
|
3114
|
+
languageCode: LanguageCode[];
|
|
3115
3115
|
};
|
|
3116
3116
|
type Options = JUHUU.RequestOptions;
|
|
3117
3117
|
type Response = {
|
|
@@ -4369,6 +4369,7 @@ declare namespace JUHUU {
|
|
|
4369
4369
|
adminQuickViewArray: QuickView[];
|
|
4370
4370
|
simIdArray: string[];
|
|
4371
4371
|
panelId: string | null;
|
|
4372
|
+
adminQuickActionArray: QuickAction[];
|
|
4372
4373
|
};
|
|
4373
4374
|
namespace Create {
|
|
4374
4375
|
type Params = {
|
|
@@ -4428,6 +4429,7 @@ declare namespace JUHUU {
|
|
|
4428
4429
|
permissionArray?: DevicePermission[];
|
|
4429
4430
|
parameterIdArray?: string[];
|
|
4430
4431
|
panelId?: string | null;
|
|
4432
|
+
adminQuickActionArray?: QuickAction[];
|
|
4431
4433
|
};
|
|
4432
4434
|
type Options = JUHUU.RequestOptions;
|
|
4433
4435
|
type Response = {
|
package/dist/index.js
CHANGED
|
@@ -1438,7 +1438,8 @@ var DevicesService = class extends Service {
|
|
|
1438
1438
|
permissionArray: DeviceUpdateParams.permissionArray,
|
|
1439
1439
|
proximityStrategyArray: DeviceUpdateParams.proximityStrategyArray,
|
|
1440
1440
|
simIdArray: DeviceUpdateParams.simIdArray,
|
|
1441
|
-
panelId: DeviceUpdateParams.panelId
|
|
1441
|
+
panelId: DeviceUpdateParams.panelId,
|
|
1442
|
+
adminQuickActionArray: DeviceUpdateParams.adminQuickActionArray
|
|
1442
1443
|
},
|
|
1443
1444
|
authenticationNotOptional: true
|
|
1444
1445
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -1394,7 +1394,8 @@ var DevicesService = class extends Service {
|
|
|
1394
1394
|
permissionArray: DeviceUpdateParams.permissionArray,
|
|
1395
1395
|
proximityStrategyArray: DeviceUpdateParams.proximityStrategyArray,
|
|
1396
1396
|
simIdArray: DeviceUpdateParams.simIdArray,
|
|
1397
|
-
panelId: DeviceUpdateParams.panelId
|
|
1397
|
+
panelId: DeviceUpdateParams.panelId,
|
|
1398
|
+
adminQuickActionArray: DeviceUpdateParams.adminQuickActionArray
|
|
1398
1399
|
},
|
|
1399
1400
|
authenticationNotOptional: true
|
|
1400
1401
|
},
|