@managespace/sdk 0.0.207 → 0.0.208
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
|
@@ -1031,6 +1031,7 @@ export interface GetSubscriptionsRequest {
|
|
|
1031
1031
|
customerId?: string;
|
|
1032
1032
|
status?: string;
|
|
1033
1033
|
assetId?: string;
|
|
1034
|
+
siteId?: string;
|
|
1034
1035
|
}
|
|
1035
1036
|
|
|
1036
1037
|
export interface GetTaskDefinitionRequest {
|
|
@@ -6135,6 +6136,10 @@ export class DefaultApi extends runtime.BaseAPI {
|
|
|
6135
6136
|
queryParameters['assetId'] = requestParameters['assetId'];
|
|
6136
6137
|
}
|
|
6137
6138
|
|
|
6139
|
+
if (requestParameters['siteId'] != null) {
|
|
6140
|
+
queryParameters['siteId'] = requestParameters['siteId'];
|
|
6141
|
+
}
|
|
6142
|
+
|
|
6138
6143
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
6139
6144
|
|
|
6140
6145
|
if (this.configuration && this.configuration.accessToken) {
|