@juhuu/sdk-ts 1.2.316 → 1.2.318

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 CHANGED
@@ -3111,7 +3111,7 @@ declare namespace JUHUU {
3111
3111
  namespace Pdf {
3112
3112
  type Params = {
3113
3113
  articleId: string;
3114
- languageCode: LanguageCode;
3114
+ languageCodeArray: 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
+ languageCodeArray: 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
  },
@@ -2588,7 +2589,7 @@ var ArticlesService = class extends Service {
2588
2589
  method: "POST",
2589
2590
  url: "articles/" + ArticlePdfParams.articleId + "/pdf",
2590
2591
  body: {
2591
- languageCode: ArticlePdfParams.languageCode
2592
+ languageCodeArray: ArticlePdfParams.languageCodeArray
2592
2593
  },
2593
2594
  authenticationNotOptional: false
2594
2595
  },
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
  },
@@ -2544,7 +2545,7 @@ var ArticlesService = class extends Service {
2544
2545
  method: "POST",
2545
2546
  url: "articles/" + ArticlePdfParams.articleId + "/pdf",
2546
2547
  body: {
2547
- languageCode: ArticlePdfParams.languageCode
2548
+ languageCodeArray: ArticlePdfParams.languageCodeArray
2548
2549
  },
2549
2550
  authenticationNotOptional: false
2550
2551
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.316",
3
+ "version": "1.2.318",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",