wapi-client 0.6.1 → 0.6.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wapi-client",
3
- "version": "0.6.1",
3
+ "version": "0.6.7",
4
4
  "description": "",
5
5
  "main": "dist/wapi-client.cjs.js",
6
6
  "module": "dist/wapi-client.esm.js",
@@ -1,15 +0,0 @@
1
- /**
2
- * Input for listDatabaseBackups
3
- *
4
- * @category Input
5
- */
6
- export interface ListDatabaseBackupsTxInput {
7
- }
8
- /**
9
- * Output of listDatabaseBackups
10
- *
11
- * @category Output
12
- */
13
- export interface ListDatabaseBackupsTxOutput {
14
- backups?: string[];
15
- }
@@ -1,4 +0,0 @@
1
- import { ListDatabaseBackupsTxInput } from './list-database-backups.enums';
2
- export declare function isListDatabaseBackupsTxInput(input: unknown): input is ListDatabaseBackupsTxInput;
3
- import { ListDatabaseBackupsTxOutput } from './list-database-backups.enums';
4
- export declare function isListDatabaseBackupsTxOutput(input: unknown): input is ListDatabaseBackupsTxOutput;