@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@managespace/sdk",
3
- "version": "0.0.207",
3
+ "version": "0.0.208",
4
4
  "scripts": {
5
5
  "dev": "tsc -w --preserveWatchOutput",
6
6
  "build": "tsc",
@@ -212,6 +212,7 @@ export namespace Billing {
212
212
  status?: string;
213
213
  assetId?: string;
214
214
  customerId?: string;
215
+ siteId?: string;
215
216
  };
216
217
  }
217
218
 
@@ -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) {