@juhuu/sdk-ts 1.2.281 → 1.2.282

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
@@ -6542,6 +6542,28 @@ declare namespace JUHUU {
6542
6542
  changedFields: string[];
6543
6543
  initiatedAt?: Date;
6544
6544
  };
6545
+ type SubscriptionSuccess = {
6546
+ locationIdArray: string[];
6547
+ parameterIdArray: string[];
6548
+ subscriptionResultArray: Array<{
6549
+ type: "location" | "parameter";
6550
+ id: string;
6551
+ roomName: string;
6552
+ success: boolean;
6553
+ }>;
6554
+ message: string;
6555
+ };
6556
+ type UnsubscriptionSuccess = {
6557
+ locationIdArray: string[];
6558
+ parameterIdArray: string[];
6559
+ unsubscriptionResultArray: Array<{
6560
+ type: "location" | "parameter";
6561
+ id: string;
6562
+ roomName: string;
6563
+ success: boolean;
6564
+ }>;
6565
+ message: string;
6566
+ };
6545
6567
  }
6546
6568
  }
6547
6569
 
package/dist/index.d.ts CHANGED
@@ -6542,6 +6542,28 @@ declare namespace JUHUU {
6542
6542
  changedFields: string[];
6543
6543
  initiatedAt?: Date;
6544
6544
  };
6545
+ type SubscriptionSuccess = {
6546
+ locationIdArray: string[];
6547
+ parameterIdArray: string[];
6548
+ subscriptionResultArray: Array<{
6549
+ type: "location" | "parameter";
6550
+ id: string;
6551
+ roomName: string;
6552
+ success: boolean;
6553
+ }>;
6554
+ message: string;
6555
+ };
6556
+ type UnsubscriptionSuccess = {
6557
+ locationIdArray: string[];
6558
+ parameterIdArray: string[];
6559
+ unsubscriptionResultArray: Array<{
6560
+ type: "location" | "parameter";
6561
+ id: string;
6562
+ roomName: string;
6563
+ success: boolean;
6564
+ }>;
6565
+ message: string;
6566
+ };
6545
6567
  }
6546
6568
  }
6547
6569
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.281",
3
+ "version": "1.2.282",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",