@meshmakers/octo-services 3.3.940 → 3.3.950

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshmakers/octo-services",
3
- "version": "3.3.940",
3
+ "version": "3.3.950",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.2.0",
6
6
  "@angular/core": "^21.2.0",
@@ -35569,6 +35569,19 @@ declare class CommunicationService {
35569
35569
  * This triggers the adapter to reload its configuration.
35570
35570
  */
35571
35571
  deployAdapterConfigurationUpdate(tenantId: string, adapterRtId: string, adapterCkTypeId: string): Promise<void>;
35572
+ /**
35573
+ * Deploys a pool. For Cloud-environment pools, this triggers the central
35574
+ * Communication Operator to provision the corresponding CommunicationPool
35575
+ * CR and broker secret. Edge-environment pools transition state without
35576
+ * any operator notification.
35577
+ */
35578
+ deployPool(tenantId: string, poolRtId: string): Promise<void>;
35579
+ /**
35580
+ * Undeploys a pool. For Cloud-environment pools, this notifies the central
35581
+ * Communication Operator to remove the CommunicationPool CR and broker
35582
+ * secret.
35583
+ */
35584
+ undeployPool(tenantId: string, poolRtId: string): Promise<void>;
35572
35585
  /**
35573
35586
  * Deploys all adapters of a pool.
35574
35587
  */