@energycap/energycap-sdk-angular 8.2509.6375 → 8.2509.6377
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/api/energyManager.service.d.ts +7 -4
- package/esm2022/api/energyManager.service.mjs +9 -5
- package/esm2022/model/models.mjs +2 -1
- package/esm2022/model/virtualEnergyManagerAskResponse.mjs +22 -0
- package/fesm2022/energycap-energycap-sdk-angular.mjs +31 -5
- package/fesm2022/energycap-energycap-sdk-angular.mjs.map +1 -1
- package/model/models.d.ts +1 -0
- package/model/virtualEnergyManagerAskResponse.d.ts +21 -0
- package/package.json +1 -1
package/model/models.d.ts
CHANGED
|
@@ -1126,6 +1126,7 @@ export * from './vendorsAndRatesModuleClassPermission';
|
|
|
1126
1126
|
export * from './vendorsClassPermission';
|
|
1127
1127
|
export * from './versionChild';
|
|
1128
1128
|
export * from './versionResponse';
|
|
1129
|
+
export * from './virtualEnergyManagerAskResponse';
|
|
1129
1130
|
export * from './watticsDataPoint';
|
|
1130
1131
|
export * from './watticsDataPointChild';
|
|
1131
1132
|
export * from './watticsDataPointRequest';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EnergyCAP SDK
|
|
3
|
+
* Document used to generate the EnergyCAP SDK
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 8.2509
|
|
6
|
+
* Contact: support@energycap.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export declare class VirtualEnergyManagerAskResponse {
|
|
13
|
+
/**
|
|
14
|
+
* The response from asking the Virtual Energy Manager a question.
|
|
15
|
+
*/
|
|
16
|
+
response: string | null | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* The unique identifier for the response.
|
|
19
|
+
*/
|
|
20
|
+
responseId: string | null | undefined;
|
|
21
|
+
}
|