wapi-client 0.6.1 → 0.6.2
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.
|
@@ -23,4 +23,12 @@ export interface GetDatabaseExportProgressTxOutput {
|
|
|
23
23
|
* Size of a exported backup in MB
|
|
24
24
|
*/
|
|
25
25
|
size?: number;
|
|
26
|
+
/**
|
|
27
|
+
* Boolean indicating if export has started
|
|
28
|
+
*/
|
|
29
|
+
started?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* Boolean indicating if export has finished
|
|
32
|
+
*/
|
|
33
|
+
finished?: boolean;
|
|
26
34
|
}
|
|
@@ -22832,6 +22832,14 @@ var properties88 = {
|
|
|
22832
22832
|
size: {
|
|
22833
22833
|
type: "number",
|
|
22834
22834
|
description: "Size of a exported backup in MB"
|
|
22835
|
+
},
|
|
22836
|
+
started: {
|
|
22837
|
+
type: "boolean",
|
|
22838
|
+
description: "Boolean indicating if export has started"
|
|
22839
|
+
},
|
|
22840
|
+
finished: {
|
|
22841
|
+
type: "boolean",
|
|
22842
|
+
description: "Boolean indicating if export has finished"
|
|
22835
22843
|
}
|
|
22836
22844
|
};
|
|
22837
22845
|
var additionalProperties88 = false;
|
|
@@ -27814,7 +27822,7 @@ var SocketStatuses;
|
|
|
27814
27822
|
})(SocketStatuses || (SocketStatuses = {}));
|
|
27815
27823
|
|
|
27816
27824
|
// package.json
|
|
27817
|
-
var version = "0.6.
|
|
27825
|
+
var version = "0.6.2";
|
|
27818
27826
|
|
|
27819
27827
|
// src/api/ws-client.ts
|
|
27820
27828
|
function createClient(opts) {
|