@flashbacktech/flashbackclient 0.1.5 → 0.1.7

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.
@@ -268,9 +268,6 @@ class ApiClient {
268
268
  };
269
269
  this.getNodeStatsDaily = async (params) => {
270
270
  const queryParams = new URLSearchParams();
271
- if (params.unitId.length > 0) {
272
- queryParams.append('unitId', params.unitId.join(','));
273
- }
274
271
  if (params.startDate) {
275
272
  queryParams.append('startDate', params.startDate.toString());
276
273
  }
@@ -33,6 +33,7 @@ export interface RegisterRequest extends NodeSignedMessage {
33
33
  status: string;
34
34
  region: string;
35
35
  version: string;
36
+ id_org?: string;
36
37
  }
37
38
  export interface RegisterResponse {
38
39
  success: boolean;
@@ -100,6 +100,7 @@ export interface StorageRepo {
100
100
  units: RepoUnitInfo[];
101
101
  apiKeys?: ApiKey[];
102
102
  createdAt: string;
103
+ disabled?: boolean;
103
104
  }
104
105
  export interface ApiKey {
105
106
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flashbacktech/flashbackclient",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "type": "commonjs",
5
5
  "publishConfig": {
6
6
  "access": "public"