@flashbacktech/flashbackclient 0.0.75 → 0.0.76

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.
@@ -87,16 +87,22 @@ export interface ApiKey {
87
87
  name: string;
88
88
  accessType: AccessType;
89
89
  key: string;
90
- secret?: string;
90
+ secret?: EncryptedKey;
91
91
  createdAt: string;
92
92
  }
93
+ export interface EncryptedKey {
94
+ key: string;
95
+ iv: string;
96
+ authTag: string;
97
+ message: string;
98
+ }
93
99
  export interface StorageUnit {
94
100
  id: string;
95
101
  name: string;
96
102
  bucket: string;
97
103
  storageType: StorageType;
98
104
  key: string;
99
- secret?: string;
105
+ secret?: EncryptedKey;
100
106
  endpoint?: string;
101
107
  region?: string;
102
108
  status?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flashbacktech/flashbackclient",
3
- "version": "0.0.75",
3
+ "version": "0.0.76",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },