@duplicati/ngclient 0.0.1
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/.dockerignore +13 -0
- package/.github/workflows/npm-publish.yml +59 -0
- package/.prettierignore +13 -0
- package/.prettierrc +12 -0
- package/.vscode/extensions.json +4 -0
- package/.vscode/launch.json +13 -0
- package/.vscode/settings.json +8 -0
- package/.vscode/tasks.json +24 -0
- package/Dockerfile +38 -0
- package/LICENSE +21 -0
- package/README.md +27 -0
- package/angular.json +98 -0
- package/bun.lockb +0 -0
- package/openapi-ts.config.ts +13 -0
- package/package.json +46 -0
- package/scripts/generate-package-json.ts +15 -0
- package/src/app/about/about.component.html +15 -0
- package/src/app/about/about.component.scss +19 -0
- package/src/app/about/about.component.ts +13 -0
- package/src/app/about/changelog/changelog.component.html +3 -0
- package/src/app/about/changelog/changelog.component.scss +7 -0
- package/src/app/about/changelog/changelog.component.ts +18 -0
- package/src/app/about/general/general.component.html +9 -0
- package/src/app/about/general/general.component.scss +23 -0
- package/src/app/about/general/general.component.ts +30 -0
- package/src/app/about/libraries/libraries.component.html +3 -0
- package/src/app/about/libraries/libraries.component.scss +7 -0
- package/src/app/about/libraries/libraries.component.ts +18 -0
- package/src/app/about/logs/logs.component.html +5 -0
- package/src/app/about/logs/logs.component.scss +7 -0
- package/src/app/about/logs/logs.component.ts +18 -0
- package/src/app/about/system-info/system-info.component.html +3 -0
- package/src/app/about/system-info/system-info.component.scss +7 -0
- package/src/app/about/system-info/system-info.component.ts +17 -0
- package/src/app/add-backup/add-backup.component.html +29 -0
- package/src/app/add-backup/add-backup.component.scss +38 -0
- package/src/app/add-backup/add-backup.component.ts +14 -0
- package/src/app/app.component.ts +35 -0
- package/src/app/app.config.ts +23 -0
- package/src/app/app.routes.ts +121 -0
- package/src/app/core/components/file-tree/file-tree.component.html +87 -0
- package/src/app/core/components/file-tree/file-tree.component.scss +80 -0
- package/src/app/core/components/file-tree/file-tree.component.ts +485 -0
- package/src/app/core/components/logo/logo.component.html +22 -0
- package/src/app/core/components/logo/logo.component.scss +12 -0
- package/src/app/core/components/logo/logo.component.ts +11 -0
- package/src/app/core/components/status-bar/status-bar.component.html +38 -0
- package/src/app/core/components/status-bar/status-bar.component.scss +27 -0
- package/src/app/core/components/status-bar/status-bar.component.ts +33 -0
- package/src/app/core/components/status-bar/status-bar.state.ts +182 -0
- package/src/app/core/components/toggle-card/toggle-card.component.html +11 -0
- package/src/app/core/components/toggle-card/toggle-card.component.scss +49 -0
- package/src/app/core/components/toggle-card/toggle-card.component.ts +28 -0
- package/src/app/core/interceptors/http.interceptor.ts +69 -0
- package/src/app/core/interceptors/websocket.interceptor.ts +66 -0
- package/src/app/core/openapi/core/ApiError.ts +21 -0
- package/src/app/core/openapi/core/ApiRequestOptions.ts +21 -0
- package/src/app/core/openapi/core/ApiResult.ts +7 -0
- package/src/app/core/openapi/core/OpenAPI.ts +55 -0
- package/src/app/core/openapi/core/request.ts +337 -0
- package/src/app/core/openapi/index.ts +6 -0
- package/src/app/core/openapi/schemas.gen.ts +3611 -0
- package/src/app/core/openapi/services.gen.ts +1460 -0
- package/src/app/core/openapi/types.gen.ts +1510 -0
- package/src/app/core/pipes/duration.pipe.ts +27 -0
- package/src/app/core/pipes/relative-time.pipe.ts +14 -0
- package/src/app/core/providers/dayjs.ts +16 -0
- package/src/app/core/services/dict.en.ts +0 -0
- package/src/app/core/services/dictionary.service.ts +12 -0
- package/src/app/core/services/localstorage.token.ts +82 -0
- package/src/app/core/services/password-generator.service.ts +39 -0
- package/src/app/core/services/relay-websocket.service.ts +268 -0
- package/src/app/core/services/timespan-literals.service.ts +25 -0
- package/src/app/core/states/app-auth.state.ts +87 -0
- package/src/app/core/states/backups.state.ts +71 -0
- package/src/app/core/states/relayconfig.state.ts +23 -0
- package/src/app/core/states/sysinfo.state.ts +31 -0
- package/src/app/core/states/tasks.state.ts +34 -0
- package/src/app/core/types/subscribed.ts +7 -0
- package/src/app/core/validators/custom.validators.ts +120 -0
- package/src/app/create-edit-backup/create-edit-backup.component.html +28 -0
- package/src/app/create-edit-backup/create-edit-backup.component.scss +15 -0
- package/src/app/create-edit-backup/create-edit-backup.component.ts +33 -0
- package/src/app/create-edit-backup/create-edit-backup.state.ts +582 -0
- package/src/app/create-edit-backup/destination/destination.component.html +367 -0
- package/src/app/create-edit-backup/destination/destination.component.scss +85 -0
- package/src/app/create-edit-backup/destination/destination.component.ts +249 -0
- package/src/app/create-edit-backup/destination/destination.config.ts +103 -0
- package/src/app/create-edit-backup/destination/destination.mapper.ts +177 -0
- package/src/app/create-edit-backup/general/general.component.html +108 -0
- package/src/app/create-edit-backup/general/general.component.scss +34 -0
- package/src/app/create-edit-backup/general/general.component.ts +136 -0
- package/src/app/create-edit-backup/options/options.component.html +95 -0
- package/src/app/create-edit-backup/options/options.component.scss +42 -0
- package/src/app/create-edit-backup/options/options.component.ts +113 -0
- package/src/app/create-edit-backup/schedule/schedule.component.html +102 -0
- package/src/app/create-edit-backup/schedule/schedule.component.scss +38 -0
- package/src/app/create-edit-backup/schedule/schedule.component.ts +137 -0
- package/src/app/create-edit-backup/source-data/source-data.component.html +93 -0
- package/src/app/create-edit-backup/source-data/source-data.component.scss +41 -0
- package/src/app/create-edit-backup/source-data/source-data.component.ts +114 -0
- package/src/app/home/backup.const.ts +167 -0
- package/src/app/home/home.component.html +98 -0
- package/src/app/home/home.component.scss +88 -0
- package/src/app/home/home.component.ts +54 -0
- package/src/app/layout/layout.component.html +64 -0
- package/src/app/layout/layout.component.scss +24 -0
- package/src/app/layout/layout.component.ts +51 -0
- package/src/app/layout/layout.state.ts +70 -0
- package/src/app/login/login.component.html +12 -0
- package/src/app/login/login.component.scss +25 -0
- package/src/app/login/login.component.ts +34 -0
- package/src/app/logout/logout.component.html +1 -0
- package/src/app/logout/logout.component.scss +3 -0
- package/src/app/logout/logout.component.ts +18 -0
- package/src/app/restore/restore.component.html +56 -0
- package/src/app/restore/restore.component.scss +37 -0
- package/src/app/restore/restore.component.ts +55 -0
- package/src/app/restore-flow/options/options.component.html +57 -0
- package/src/app/restore-flow/options/options.component.scss +16 -0
- package/src/app/restore-flow/options/options.component.ts +58 -0
- package/src/app/restore-flow/restore-flow.component.html +14 -0
- package/src/app/restore-flow/restore-flow.component.scss +15 -0
- package/src/app/restore-flow/restore-flow.component.ts +23 -0
- package/src/app/restore-flow/restore-flow.state.ts +120 -0
- package/src/app/restore-flow/select-files/select-files.component.html +42 -0
- package/src/app/restore-flow/select-files/select-files.component.scss +16 -0
- package/src/app/restore-flow/select-files/select-files.component.ts +129 -0
- package/src/app/settings/settings.component.html +256 -0
- package/src/app/settings/settings.component.scss +106 -0
- package/src/app/settings/settings.component.ts +475 -0
- package/src/assets/duplicati-logo.png +0 -0
- package/src/assets/duplicati-logo.svg +10 -0
- package/src/assets/favicon.ico +0 -0
- package/src/assets/images/backup.png +0 -0
- package/src/assets/images/dark-theme.png +0 -0
- package/src/assets/images/folder.png +0 -0
- package/src/assets/images/light-theme.png +0 -0
- package/src/assets/images/new-backup.png +0 -0
- package/src/assets/images/restore.png +0 -0
- package/src/assets/images/system-theme.png +0 -0
- package/src/assets/spk.css +33 -0
- package/src/assets/spk.woff2 +0 -0
- package/src/environments/environment-token.ts +4 -0
- package/src/environments/environment.prod.ts +6 -0
- package/src/environments/environment.ts +6 -0
- package/src/index.html +15 -0
- package/src/main.ts +6 -0
- package/src/proxy.conf.mjs +6 -0
- package/src/styles.scss +41 -0
- package/tsconfig.app.json +15 -0
- package/tsconfig.json +30 -0
|
@@ -0,0 +1,1510 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
|
|
3
|
+
export type AccessTokenOutput = {
|
|
4
|
+
AccessToken?: (string) | null;
|
|
5
|
+
};
|
|
6
|
+
|
|
7
|
+
export type AcknowlegdementDto = {
|
|
8
|
+
Acknowledgements?: (string) | null;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
export type ArgumentType = 'String' | 'Integer' | 'Boolean' | 'Timespan' | 'Size' | 'Enumeration' | 'Path' | 'Password' | 'Flags' | 'Decimal' | 'Unknown';
|
|
12
|
+
|
|
13
|
+
export type Assembly = {
|
|
14
|
+
readonly DefinedTypes?: Array<TypeInfo> | null;
|
|
15
|
+
readonly ExportedTypes?: Array<Type> | null;
|
|
16
|
+
/**
|
|
17
|
+
* @deprecated
|
|
18
|
+
*/
|
|
19
|
+
readonly CodeBase?: (string) | null;
|
|
20
|
+
EntryPoint?: MethodInfo;
|
|
21
|
+
readonly FullName?: (string) | null;
|
|
22
|
+
readonly ImageRuntimeVersion?: (string) | null;
|
|
23
|
+
readonly IsDynamic?: boolean;
|
|
24
|
+
readonly Location?: (string) | null;
|
|
25
|
+
readonly ReflectionOnly?: boolean;
|
|
26
|
+
readonly IsCollectible?: boolean;
|
|
27
|
+
readonly IsFullyTrusted?: boolean;
|
|
28
|
+
readonly CustomAttributes?: Array<CustomAttributeData> | null;
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated
|
|
31
|
+
*/
|
|
32
|
+
readonly EscapedCodeBase?: (string) | null;
|
|
33
|
+
ManifestModule?: Module;
|
|
34
|
+
readonly Modules?: Array<Module> | null;
|
|
35
|
+
/**
|
|
36
|
+
* @deprecated
|
|
37
|
+
*/
|
|
38
|
+
readonly GlobalAssemblyCache?: boolean;
|
|
39
|
+
readonly HostContext?: number;
|
|
40
|
+
SecurityRuleSet?: SecurityRuleSet;
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
export type BackupAndScheduleInputDto = {
|
|
44
|
+
Backup?: BackupInputDto;
|
|
45
|
+
Schedule?: ScheduleInputDto;
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
export type BackupAndScheduleOutputDto = {
|
|
49
|
+
Backup?: BackupDto;
|
|
50
|
+
Schedule?: ScheduleDto;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
export type BackupDto = {
|
|
54
|
+
ID?: (string) | null;
|
|
55
|
+
Name?: (string) | null;
|
|
56
|
+
Description?: (string) | null;
|
|
57
|
+
Tags?: Array<(string)> | null;
|
|
58
|
+
TargetURL?: (string) | null;
|
|
59
|
+
DBPath?: (string) | null;
|
|
60
|
+
Sources?: Array<(string)> | null;
|
|
61
|
+
Settings?: Array<SettingDto> | null;
|
|
62
|
+
Filters?: Array<FilterDto> | null;
|
|
63
|
+
Metadata?: {
|
|
64
|
+
[key: string]: (string);
|
|
65
|
+
} | null;
|
|
66
|
+
IsTemporary?: boolean;
|
|
67
|
+
IsUnencryptedOrPassphraseStored?: boolean;
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
export type BackupInputDto = {
|
|
71
|
+
Name?: (string) | null;
|
|
72
|
+
Description?: (string) | null;
|
|
73
|
+
DBPath?: (string) | null;
|
|
74
|
+
Tags?: Array<(string)> | null;
|
|
75
|
+
TargetURL?: (string) | null;
|
|
76
|
+
Sources?: Array<(string)> | null;
|
|
77
|
+
Settings?: Array<SettingInputDto> | null;
|
|
78
|
+
Filters?: Array<FilterInputDto> | null;
|
|
79
|
+
Metadata?: {
|
|
80
|
+
[key: string]: (string);
|
|
81
|
+
} | null;
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
export type Boolean__f__AnonymousType1 = {
|
|
85
|
+
success?: boolean;
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
export type CLROSInfoDto = {
|
|
89
|
+
Platform?: (string) | null;
|
|
90
|
+
ServicePack?: (string) | null;
|
|
91
|
+
Version?: (string) | null;
|
|
92
|
+
VersionString?: (string) | null;
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
export type CallingConventions = 'Standard' | 'VarArgs' | 'Any' | 'HasThis' | 'ExplicitThis';
|
|
96
|
+
|
|
97
|
+
export type ChangelogDto = {
|
|
98
|
+
Version?: (string) | null;
|
|
99
|
+
Changelog?: (string) | null;
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
export type CommandLineLogOutputDto = {
|
|
103
|
+
Pagesize?: number;
|
|
104
|
+
Offset?: number;
|
|
105
|
+
Count?: number;
|
|
106
|
+
Items?: Array<(string)> | null;
|
|
107
|
+
Finished?: boolean;
|
|
108
|
+
Started?: boolean;
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
export type CommandlineTaskStartedDto = {
|
|
112
|
+
Status?: (string) | null;
|
|
113
|
+
ID?: (string) | null;
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
export type ConstructorInfo = {
|
|
117
|
+
readonly Name?: (string) | null;
|
|
118
|
+
DeclaringType?: Type;
|
|
119
|
+
ReflectedType?: Type;
|
|
120
|
+
Module?: Module;
|
|
121
|
+
readonly CustomAttributes?: Array<CustomAttributeData> | null;
|
|
122
|
+
readonly IsCollectible?: boolean;
|
|
123
|
+
readonly MetadataToken?: number;
|
|
124
|
+
Attributes?: MethodAttributes;
|
|
125
|
+
MethodImplementationFlags?: MethodImplAttributes;
|
|
126
|
+
CallingConvention?: CallingConventions;
|
|
127
|
+
readonly IsAbstract?: boolean;
|
|
128
|
+
readonly IsConstructor?: boolean;
|
|
129
|
+
readonly IsFinal?: boolean;
|
|
130
|
+
readonly IsHideBySig?: boolean;
|
|
131
|
+
readonly IsSpecialName?: boolean;
|
|
132
|
+
readonly IsStatic?: boolean;
|
|
133
|
+
readonly IsVirtual?: boolean;
|
|
134
|
+
readonly IsAssembly?: boolean;
|
|
135
|
+
readonly IsFamily?: boolean;
|
|
136
|
+
readonly IsFamilyAndAssembly?: boolean;
|
|
137
|
+
readonly IsFamilyOrAssembly?: boolean;
|
|
138
|
+
readonly IsPrivate?: boolean;
|
|
139
|
+
readonly IsPublic?: boolean;
|
|
140
|
+
readonly IsConstructedGenericMethod?: boolean;
|
|
141
|
+
readonly IsGenericMethod?: boolean;
|
|
142
|
+
readonly IsGenericMethodDefinition?: boolean;
|
|
143
|
+
readonly ContainsGenericParameters?: boolean;
|
|
144
|
+
MethodHandle?: RuntimeMethodHandle;
|
|
145
|
+
readonly IsSecurityCritical?: boolean;
|
|
146
|
+
readonly IsSecuritySafeCritical?: boolean;
|
|
147
|
+
readonly IsSecurityTransparent?: boolean;
|
|
148
|
+
MemberType?: MemberTypes;
|
|
149
|
+
};
|
|
150
|
+
|
|
151
|
+
export type CreateBackupDto = {
|
|
152
|
+
ID?: (string) | null;
|
|
153
|
+
Temporary?: boolean;
|
|
154
|
+
};
|
|
155
|
+
|
|
156
|
+
export type CustomAttributeData = {
|
|
157
|
+
AttributeType?: Type;
|
|
158
|
+
Constructor?: ConstructorInfo;
|
|
159
|
+
readonly ConstructorArguments?: Array<CustomAttributeTypedArgument> | null;
|
|
160
|
+
readonly NamedArguments?: Array<CustomAttributeNamedArgument> | null;
|
|
161
|
+
};
|
|
162
|
+
|
|
163
|
+
export type CustomAttributeNamedArgument = {
|
|
164
|
+
MemberInfo?: MemberInfo;
|
|
165
|
+
TypedValue?: CustomAttributeTypedArgument;
|
|
166
|
+
readonly MemberName?: (string) | null;
|
|
167
|
+
readonly IsField?: boolean;
|
|
168
|
+
};
|
|
169
|
+
|
|
170
|
+
export type CustomAttributeTypedArgument = {
|
|
171
|
+
ArgumentType?: Type;
|
|
172
|
+
Value?: unknown;
|
|
173
|
+
};
|
|
174
|
+
|
|
175
|
+
export type DayOfWeek = string;
|
|
176
|
+
|
|
177
|
+
export type DeleteBackupOutputDto = {
|
|
178
|
+
Status?: (string) | null;
|
|
179
|
+
Reason?: (string) | null;
|
|
180
|
+
ID?: (number) | null;
|
|
181
|
+
};
|
|
182
|
+
|
|
183
|
+
export type DuplicatiOperation = 'Backup' | 'Restore' | 'List' | 'Remove' | 'Repair' | 'RepairUpdate' | 'Verify' | 'Compact' | 'CreateReport' | 'ListRemote' | 'Delete' | 'Vacuum' | 'CustomRunner';
|
|
184
|
+
|
|
185
|
+
export type EventAttributes = 'None' | 'SpecialName' | 'RTSpecialName';
|
|
186
|
+
|
|
187
|
+
export type EventInfo = {
|
|
188
|
+
readonly Name?: (string) | null;
|
|
189
|
+
DeclaringType?: Type;
|
|
190
|
+
ReflectedType?: Type;
|
|
191
|
+
Module?: Module;
|
|
192
|
+
readonly CustomAttributes?: Array<CustomAttributeData> | null;
|
|
193
|
+
readonly IsCollectible?: boolean;
|
|
194
|
+
readonly MetadataToken?: number;
|
|
195
|
+
MemberType?: MemberTypes;
|
|
196
|
+
Attributes?: EventAttributes;
|
|
197
|
+
readonly IsSpecialName?: boolean;
|
|
198
|
+
AddMethod?: MethodInfo;
|
|
199
|
+
RemoveMethod?: MethodInfo;
|
|
200
|
+
RaiseMethod?: MethodInfo;
|
|
201
|
+
readonly IsMulticast?: boolean;
|
|
202
|
+
EventHandlerType?: Type;
|
|
203
|
+
};
|
|
204
|
+
|
|
205
|
+
export type Exception = {
|
|
206
|
+
TargetSite?: MethodBase;
|
|
207
|
+
readonly Message?: (string) | null;
|
|
208
|
+
readonly Data?: {
|
|
209
|
+
[key: string]: unknown;
|
|
210
|
+
} | null;
|
|
211
|
+
InnerException?: Exception;
|
|
212
|
+
HelpLink?: (string) | null;
|
|
213
|
+
Source?: (string) | null;
|
|
214
|
+
HResult?: number;
|
|
215
|
+
readonly StackTrace?: (string) | null;
|
|
216
|
+
};
|
|
217
|
+
|
|
218
|
+
export type ExportArgsOnlyDto = {
|
|
219
|
+
Backend?: (string) | null;
|
|
220
|
+
Arguments?: Array<(string)> | null;
|
|
221
|
+
Options?: Array<(string)> | null;
|
|
222
|
+
};
|
|
223
|
+
|
|
224
|
+
export type ExportCommandlineDto = {
|
|
225
|
+
Command?: (string) | null;
|
|
226
|
+
};
|
|
227
|
+
|
|
228
|
+
export type FieldAttributes = 'PrivateScope' | 'Private' | 'FamANDAssem' | 'Assembly' | 'Family' | 'FamORAssem' | 'Public' | 'FieldAccessMask' | 'Static' | 'InitOnly' | 'Literal' | 'NotSerialized' | 'HasFieldRVA' | 'SpecialName' | 'RTSpecialName' | 'HasFieldMarshal' | 'PinvokeImpl' | 'HasDefault' | 'ReservedMask';
|
|
229
|
+
|
|
230
|
+
export type FieldInfo = {
|
|
231
|
+
readonly Name?: (string) | null;
|
|
232
|
+
DeclaringType?: Type;
|
|
233
|
+
ReflectedType?: Type;
|
|
234
|
+
Module?: Module;
|
|
235
|
+
readonly CustomAttributes?: Array<CustomAttributeData> | null;
|
|
236
|
+
readonly IsCollectible?: boolean;
|
|
237
|
+
readonly MetadataToken?: number;
|
|
238
|
+
MemberType?: MemberTypes;
|
|
239
|
+
Attributes?: FieldAttributes;
|
|
240
|
+
FieldType?: Type;
|
|
241
|
+
readonly IsInitOnly?: boolean;
|
|
242
|
+
readonly IsLiteral?: boolean;
|
|
243
|
+
/**
|
|
244
|
+
* @deprecated
|
|
245
|
+
*/
|
|
246
|
+
readonly IsNotSerialized?: boolean;
|
|
247
|
+
readonly IsPinvokeImpl?: boolean;
|
|
248
|
+
readonly IsSpecialName?: boolean;
|
|
249
|
+
readonly IsStatic?: boolean;
|
|
250
|
+
readonly IsAssembly?: boolean;
|
|
251
|
+
readonly IsFamily?: boolean;
|
|
252
|
+
readonly IsFamilyAndAssembly?: boolean;
|
|
253
|
+
readonly IsFamilyOrAssembly?: boolean;
|
|
254
|
+
readonly IsPrivate?: boolean;
|
|
255
|
+
readonly IsPublic?: boolean;
|
|
256
|
+
readonly IsSecurityCritical?: boolean;
|
|
257
|
+
readonly IsSecuritySafeCritical?: boolean;
|
|
258
|
+
readonly IsSecurityTransparent?: boolean;
|
|
259
|
+
FieldHandle?: RuntimeFieldHandle;
|
|
260
|
+
};
|
|
261
|
+
|
|
262
|
+
export type FilesystemInput = {
|
|
263
|
+
path?: (string) | null;
|
|
264
|
+
};
|
|
265
|
+
|
|
266
|
+
export type FilterDto = {
|
|
267
|
+
Order?: number;
|
|
268
|
+
Include?: boolean;
|
|
269
|
+
Expression?: (string) | null;
|
|
270
|
+
};
|
|
271
|
+
|
|
272
|
+
export type FilterInputDto = {
|
|
273
|
+
Order?: number;
|
|
274
|
+
Include?: boolean;
|
|
275
|
+
Expression?: (string) | null;
|
|
276
|
+
};
|
|
277
|
+
|
|
278
|
+
export type GenerateCaptchaOutput = {
|
|
279
|
+
Token?: (string) | null;
|
|
280
|
+
Answer?: (string) | null;
|
|
281
|
+
NoVisualChallenge?: boolean;
|
|
282
|
+
};
|
|
283
|
+
|
|
284
|
+
export type GenericParameterAttributes = 'None' | 'Covariant' | 'Contravariant' | 'VarianceMask' | 'ReferenceTypeConstraint' | 'NotNullableValueTypeConstraint' | 'DefaultConstructorConstraint' | 'SpecialConstraintMask';
|
|
285
|
+
|
|
286
|
+
export type GetBackupResultDto = {
|
|
287
|
+
Schedule?: ScheduleDto;
|
|
288
|
+
Backup?: BackupDto;
|
|
289
|
+
DisplayNames?: {
|
|
290
|
+
[key: string]: (string);
|
|
291
|
+
} | null;
|
|
292
|
+
};
|
|
293
|
+
|
|
294
|
+
export type GetDbPathDto = {
|
|
295
|
+
Exists?: boolean;
|
|
296
|
+
Path?: (string) | null;
|
|
297
|
+
};
|
|
298
|
+
|
|
299
|
+
export type GetTaskStateDto = {
|
|
300
|
+
Status?: (string) | null;
|
|
301
|
+
ID?: number;
|
|
302
|
+
ErrorMessage?: (string) | null;
|
|
303
|
+
Exception?: (string) | null;
|
|
304
|
+
};
|
|
305
|
+
|
|
306
|
+
export type IBackup = {
|
|
307
|
+
ID?: (string) | null;
|
|
308
|
+
Name?: (string) | null;
|
|
309
|
+
Description?: (string) | null;
|
|
310
|
+
Tags?: Array<(string)> | null;
|
|
311
|
+
TargetURL?: (string) | null;
|
|
312
|
+
readonly DBPath?: (string) | null;
|
|
313
|
+
Sources?: Array<(string)> | null;
|
|
314
|
+
Settings?: Array<ISetting> | null;
|
|
315
|
+
Filters?: Array<IFilter> | null;
|
|
316
|
+
Metadata?: {
|
|
317
|
+
[key: string]: (string);
|
|
318
|
+
} | null;
|
|
319
|
+
readonly IsTemporary?: boolean;
|
|
320
|
+
};
|
|
321
|
+
|
|
322
|
+
export type ICommandLineArgument = {
|
|
323
|
+
Aliases?: Array<(string)> | null;
|
|
324
|
+
LongDescription?: (string) | null;
|
|
325
|
+
Name?: (string) | null;
|
|
326
|
+
ShortDescription?: (string) | null;
|
|
327
|
+
Type?: ArgumentType;
|
|
328
|
+
ValidValues?: Array<(string)> | null;
|
|
329
|
+
DefaultValue?: (string) | null;
|
|
330
|
+
readonly Typename?: (string) | null;
|
|
331
|
+
Deprecated?: boolean;
|
|
332
|
+
DeprecationMessage?: (string) | null;
|
|
333
|
+
};
|
|
334
|
+
|
|
335
|
+
export type ICustomAttributeProvider = {
|
|
336
|
+
[key: string]: unknown;
|
|
337
|
+
};
|
|
338
|
+
|
|
339
|
+
export type IDynamicModule = {
|
|
340
|
+
readonly Key?: (string) | null;
|
|
341
|
+
readonly Description?: (string) | null;
|
|
342
|
+
readonly DisplayName?: (string) | null;
|
|
343
|
+
readonly Options?: Array<ICommandLineArgument> | null;
|
|
344
|
+
};
|
|
345
|
+
|
|
346
|
+
export type IFilter = {
|
|
347
|
+
Order?: number;
|
|
348
|
+
Include?: boolean;
|
|
349
|
+
Expression?: (string) | null;
|
|
350
|
+
};
|
|
351
|
+
|
|
352
|
+
export type IListResultFileset = {
|
|
353
|
+
readonly Version?: number;
|
|
354
|
+
readonly IsFullBackup?: number;
|
|
355
|
+
readonly Time?: string;
|
|
356
|
+
readonly FileCount?: number;
|
|
357
|
+
readonly FileSizes?: number;
|
|
358
|
+
};
|
|
359
|
+
|
|
360
|
+
export type IProgressEventData = {
|
|
361
|
+
readonly BackupID?: (string) | null;
|
|
362
|
+
readonly TaskID?: number;
|
|
363
|
+
readonly BackendAction?: (string) | null;
|
|
364
|
+
readonly BackendPath?: (string) | null;
|
|
365
|
+
readonly BackendFileSize?: number;
|
|
366
|
+
readonly BackendFileProgress?: number;
|
|
367
|
+
readonly BackendSpeed?: number;
|
|
368
|
+
readonly BackendIsBlocking?: boolean;
|
|
369
|
+
readonly CurrentFilename?: (string) | null;
|
|
370
|
+
readonly CurrentFilesize?: number;
|
|
371
|
+
readonly CurrentFileoffset?: number;
|
|
372
|
+
readonly CurrentFilecomplete?: boolean;
|
|
373
|
+
readonly Phase?: (string) | null;
|
|
374
|
+
readonly OverallProgress?: number;
|
|
375
|
+
readonly ProcessedFileCount?: number;
|
|
376
|
+
readonly ProcessedFileSize?: number;
|
|
377
|
+
readonly TotalFileCount?: number;
|
|
378
|
+
readonly TotalFileSize?: number;
|
|
379
|
+
readonly StillCounting?: boolean;
|
|
380
|
+
};
|
|
381
|
+
|
|
382
|
+
export type IRunnerData = {
|
|
383
|
+
Backup?: IBackup;
|
|
384
|
+
readonly ExtraOptions?: {
|
|
385
|
+
[key: string]: (string);
|
|
386
|
+
} | null;
|
|
387
|
+
readonly FilterStrings?: Array<(string)> | null;
|
|
388
|
+
readonly TaskID?: number;
|
|
389
|
+
readonly BackupID?: (string) | null;
|
|
390
|
+
Operation?: DuplicatiOperation;
|
|
391
|
+
};
|
|
392
|
+
|
|
393
|
+
export type ISetting = {
|
|
394
|
+
readonly Filter?: (string) | null;
|
|
395
|
+
Name?: (string) | null;
|
|
396
|
+
Value?: (string) | null;
|
|
397
|
+
Argument?: ICommandLineArgument;
|
|
398
|
+
};
|
|
399
|
+
|
|
400
|
+
export type IWebModule = {
|
|
401
|
+
readonly Key?: (string) | null;
|
|
402
|
+
readonly DisplayName?: (string) | null;
|
|
403
|
+
readonly Description?: (string) | null;
|
|
404
|
+
readonly SupportedCommands?: Array<ICommandLineArgument> | null;
|
|
405
|
+
};
|
|
406
|
+
|
|
407
|
+
export type ImportBackupInputDto = {
|
|
408
|
+
config?: (string) | null;
|
|
409
|
+
cmdline?: (boolean) | null;
|
|
410
|
+
import_metadata?: (boolean) | null;
|
|
411
|
+
direct?: (boolean) | null;
|
|
412
|
+
passphrase?: (string) | null;
|
|
413
|
+
};
|
|
414
|
+
|
|
415
|
+
export type ImportBackupOutputDto = {
|
|
416
|
+
Id?: (string) | null;
|
|
417
|
+
data?: unknown;
|
|
418
|
+
};
|
|
419
|
+
|
|
420
|
+
export type Int64StringTuple = {
|
|
421
|
+
Item1?: number;
|
|
422
|
+
Item2?: (string) | null;
|
|
423
|
+
};
|
|
424
|
+
|
|
425
|
+
export type IntPtr = {
|
|
426
|
+
[key: string]: unknown;
|
|
427
|
+
};
|
|
428
|
+
|
|
429
|
+
export type IsBackupActiveDto = {
|
|
430
|
+
Status?: (string) | null;
|
|
431
|
+
Active?: boolean;
|
|
432
|
+
};
|
|
433
|
+
|
|
434
|
+
export type IsDbUsedElsewhereDto = {
|
|
435
|
+
inuse?: boolean;
|
|
436
|
+
};
|
|
437
|
+
|
|
438
|
+
export type IssueSigninTokenInputDto = {
|
|
439
|
+
Password?: (string) | null;
|
|
440
|
+
};
|
|
441
|
+
|
|
442
|
+
export type LayoutKind = 'Sequential' | 'Explicit' | 'Auto';
|
|
443
|
+
|
|
444
|
+
export type LicenseDto = {
|
|
445
|
+
Title?: (string) | null;
|
|
446
|
+
Url?: (string) | null;
|
|
447
|
+
License?: (string) | null;
|
|
448
|
+
Jsondata?: (string) | null;
|
|
449
|
+
};
|
|
450
|
+
|
|
451
|
+
export type LiveControlState = 'Running' | 'Paused';
|
|
452
|
+
|
|
453
|
+
export type LocaleDto = {
|
|
454
|
+
Code?: (string) | null;
|
|
455
|
+
EnglishName?: (string) | null;
|
|
456
|
+
DisplayName?: (string) | null;
|
|
457
|
+
};
|
|
458
|
+
|
|
459
|
+
export type LogEntry = {
|
|
460
|
+
When?: string;
|
|
461
|
+
ID?: number;
|
|
462
|
+
Message?: (string) | null;
|
|
463
|
+
Tag?: (string) | null;
|
|
464
|
+
MessageID?: (string) | null;
|
|
465
|
+
ExceptionID?: (string) | null;
|
|
466
|
+
Type?: LogMessageType;
|
|
467
|
+
Exception?: Exception;
|
|
468
|
+
BackupID?: (string) | null;
|
|
469
|
+
TaskID?: (string) | null;
|
|
470
|
+
};
|
|
471
|
+
|
|
472
|
+
export type LogMessageType = 'ExplicitOnly' | 'Profiling' | 'Verbose' | 'Retry' | 'Information' | 'DryRun' | 'Warning' | 'Error';
|
|
473
|
+
|
|
474
|
+
export type LoginInputDto = {
|
|
475
|
+
Password?: (string) | null;
|
|
476
|
+
RememberMe?: (boolean) | null;
|
|
477
|
+
};
|
|
478
|
+
|
|
479
|
+
export type MemberInfo = {
|
|
480
|
+
MemberType?: MemberTypes;
|
|
481
|
+
readonly Name?: (string) | null;
|
|
482
|
+
DeclaringType?: Type;
|
|
483
|
+
ReflectedType?: Type;
|
|
484
|
+
Module?: Module;
|
|
485
|
+
readonly CustomAttributes?: Array<CustomAttributeData> | null;
|
|
486
|
+
readonly IsCollectible?: boolean;
|
|
487
|
+
readonly MetadataToken?: number;
|
|
488
|
+
};
|
|
489
|
+
|
|
490
|
+
export type MemberTypes = 'Constructor' | 'Event' | 'Field' | 'Method' | 'Property' | 'TypeInfo' | 'Custom' | 'NestedType' | 'All';
|
|
491
|
+
|
|
492
|
+
export type MethodAttributes = 'PrivateScope' | 'Private' | 'FamANDAssem' | 'Assembly' | 'Family' | 'FamORAssem' | 'Public' | 'MemberAccessMask' | 'UnmanagedExport' | 'Static' | 'Final' | 'Virtual' | 'HideBySig' | 'NewSlot' | 'CheckAccessOnOverride' | 'Abstract' | 'SpecialName' | 'RTSpecialName' | 'PinvokeImpl' | 'HasSecurity' | 'RequireSecObject' | 'ReservedMask';
|
|
493
|
+
|
|
494
|
+
export type MethodBase = {
|
|
495
|
+
MemberType?: MemberTypes;
|
|
496
|
+
readonly Name?: (string) | null;
|
|
497
|
+
DeclaringType?: Type;
|
|
498
|
+
ReflectedType?: Type;
|
|
499
|
+
Module?: Module;
|
|
500
|
+
readonly CustomAttributes?: Array<CustomAttributeData> | null;
|
|
501
|
+
readonly IsCollectible?: boolean;
|
|
502
|
+
readonly MetadataToken?: number;
|
|
503
|
+
Attributes?: MethodAttributes;
|
|
504
|
+
MethodImplementationFlags?: MethodImplAttributes;
|
|
505
|
+
CallingConvention?: CallingConventions;
|
|
506
|
+
readonly IsAbstract?: boolean;
|
|
507
|
+
readonly IsConstructor?: boolean;
|
|
508
|
+
readonly IsFinal?: boolean;
|
|
509
|
+
readonly IsHideBySig?: boolean;
|
|
510
|
+
readonly IsSpecialName?: boolean;
|
|
511
|
+
readonly IsStatic?: boolean;
|
|
512
|
+
readonly IsVirtual?: boolean;
|
|
513
|
+
readonly IsAssembly?: boolean;
|
|
514
|
+
readonly IsFamily?: boolean;
|
|
515
|
+
readonly IsFamilyAndAssembly?: boolean;
|
|
516
|
+
readonly IsFamilyOrAssembly?: boolean;
|
|
517
|
+
readonly IsPrivate?: boolean;
|
|
518
|
+
readonly IsPublic?: boolean;
|
|
519
|
+
readonly IsConstructedGenericMethod?: boolean;
|
|
520
|
+
readonly IsGenericMethod?: boolean;
|
|
521
|
+
readonly IsGenericMethodDefinition?: boolean;
|
|
522
|
+
readonly ContainsGenericParameters?: boolean;
|
|
523
|
+
MethodHandle?: RuntimeMethodHandle;
|
|
524
|
+
readonly IsSecurityCritical?: boolean;
|
|
525
|
+
readonly IsSecuritySafeCritical?: boolean;
|
|
526
|
+
readonly IsSecurityTransparent?: boolean;
|
|
527
|
+
};
|
|
528
|
+
|
|
529
|
+
export type MethodImplAttributes = 'IL' | 'Native' | 'OPTIL' | 'CodeTypeMask' | 'ManagedMask' | 'NoInlining' | 'ForwardRef' | 'Synchronized' | 'NoOptimization' | 'PreserveSig' | 'AggressiveInlining' | 'AggressiveOptimization' | 'InternalCall' | 'MaxMethodImplVal';
|
|
530
|
+
|
|
531
|
+
export type MethodInfo = {
|
|
532
|
+
readonly Name?: (string) | null;
|
|
533
|
+
DeclaringType?: Type;
|
|
534
|
+
ReflectedType?: Type;
|
|
535
|
+
Module?: Module;
|
|
536
|
+
readonly CustomAttributes?: Array<CustomAttributeData> | null;
|
|
537
|
+
readonly IsCollectible?: boolean;
|
|
538
|
+
readonly MetadataToken?: number;
|
|
539
|
+
Attributes?: MethodAttributes;
|
|
540
|
+
MethodImplementationFlags?: MethodImplAttributes;
|
|
541
|
+
CallingConvention?: CallingConventions;
|
|
542
|
+
readonly IsAbstract?: boolean;
|
|
543
|
+
readonly IsConstructor?: boolean;
|
|
544
|
+
readonly IsFinal?: boolean;
|
|
545
|
+
readonly IsHideBySig?: boolean;
|
|
546
|
+
readonly IsSpecialName?: boolean;
|
|
547
|
+
readonly IsStatic?: boolean;
|
|
548
|
+
readonly IsVirtual?: boolean;
|
|
549
|
+
readonly IsAssembly?: boolean;
|
|
550
|
+
readonly IsFamily?: boolean;
|
|
551
|
+
readonly IsFamilyAndAssembly?: boolean;
|
|
552
|
+
readonly IsFamilyOrAssembly?: boolean;
|
|
553
|
+
readonly IsPrivate?: boolean;
|
|
554
|
+
readonly IsPublic?: boolean;
|
|
555
|
+
readonly IsConstructedGenericMethod?: boolean;
|
|
556
|
+
readonly IsGenericMethod?: boolean;
|
|
557
|
+
readonly IsGenericMethodDefinition?: boolean;
|
|
558
|
+
readonly ContainsGenericParameters?: boolean;
|
|
559
|
+
MethodHandle?: RuntimeMethodHandle;
|
|
560
|
+
readonly IsSecurityCritical?: boolean;
|
|
561
|
+
readonly IsSecuritySafeCritical?: boolean;
|
|
562
|
+
readonly IsSecurityTransparent?: boolean;
|
|
563
|
+
MemberType?: MemberTypes;
|
|
564
|
+
ReturnParameter?: ParameterInfo;
|
|
565
|
+
ReturnType?: Type;
|
|
566
|
+
ReturnTypeCustomAttributes?: ICustomAttributeProvider;
|
|
567
|
+
};
|
|
568
|
+
|
|
569
|
+
export type Module = {
|
|
570
|
+
Assembly?: Assembly;
|
|
571
|
+
readonly FullyQualifiedName?: (string) | null;
|
|
572
|
+
readonly Name?: (string) | null;
|
|
573
|
+
readonly MDStreamVersion?: number;
|
|
574
|
+
readonly ModuleVersionId?: string;
|
|
575
|
+
readonly ScopeName?: (string) | null;
|
|
576
|
+
ModuleHandle?: ModuleHandle;
|
|
577
|
+
readonly CustomAttributes?: Array<CustomAttributeData> | null;
|
|
578
|
+
readonly MetadataToken?: number;
|
|
579
|
+
};
|
|
580
|
+
|
|
581
|
+
export type ModuleHandle = {
|
|
582
|
+
readonly MDStreamVersion?: number;
|
|
583
|
+
};
|
|
584
|
+
|
|
585
|
+
export type NotificationDto = {
|
|
586
|
+
ID?: number;
|
|
587
|
+
Type?: NotificationType;
|
|
588
|
+
Title?: (string) | null;
|
|
589
|
+
Message?: (string) | null;
|
|
590
|
+
Exception?: (string) | null;
|
|
591
|
+
BackupID?: (string) | null;
|
|
592
|
+
Action?: (string) | null;
|
|
593
|
+
Timestamp?: string;
|
|
594
|
+
LogEntryID?: (string) | null;
|
|
595
|
+
MessageID?: (string) | null;
|
|
596
|
+
MessageLogTag?: (string) | null;
|
|
597
|
+
};
|
|
598
|
+
|
|
599
|
+
export type NotificationType = 'Information' | 'Warning' | 'Error';
|
|
600
|
+
|
|
601
|
+
export type ParameterAttributes = 'None' | 'In' | 'Out' | 'Lcid' | 'Retval' | 'Optional' | 'HasDefault' | 'HasFieldMarshal' | 'Reserved3' | 'Reserved4' | 'ReservedMask';
|
|
602
|
+
|
|
603
|
+
export type ParameterInfo = {
|
|
604
|
+
Attributes?: ParameterAttributes;
|
|
605
|
+
Member?: MemberInfo;
|
|
606
|
+
readonly Name?: (string) | null;
|
|
607
|
+
ParameterType?: Type;
|
|
608
|
+
readonly Position?: number;
|
|
609
|
+
readonly IsIn?: boolean;
|
|
610
|
+
readonly IsLcid?: boolean;
|
|
611
|
+
readonly IsOptional?: boolean;
|
|
612
|
+
readonly IsOut?: boolean;
|
|
613
|
+
readonly IsRetval?: boolean;
|
|
614
|
+
readonly DefaultValue?: unknown;
|
|
615
|
+
readonly RawDefaultValue?: unknown;
|
|
616
|
+
readonly HasDefaultValue?: boolean;
|
|
617
|
+
readonly CustomAttributes?: Array<CustomAttributeData> | null;
|
|
618
|
+
readonly MetadataToken?: number;
|
|
619
|
+
};
|
|
620
|
+
|
|
621
|
+
export type PropertyAttributes = 'None' | 'SpecialName' | 'RTSpecialName' | 'HasDefault' | 'Reserved2' | 'Reserved3' | 'Reserved4' | 'ReservedMask';
|
|
622
|
+
|
|
623
|
+
export type PropertyInfo = {
|
|
624
|
+
readonly Name?: (string) | null;
|
|
625
|
+
DeclaringType?: Type;
|
|
626
|
+
ReflectedType?: Type;
|
|
627
|
+
Module?: Module;
|
|
628
|
+
readonly CustomAttributes?: Array<CustomAttributeData> | null;
|
|
629
|
+
readonly IsCollectible?: boolean;
|
|
630
|
+
readonly MetadataToken?: number;
|
|
631
|
+
MemberType?: MemberTypes;
|
|
632
|
+
PropertyType?: Type;
|
|
633
|
+
Attributes?: PropertyAttributes;
|
|
634
|
+
readonly IsSpecialName?: boolean;
|
|
635
|
+
readonly CanRead?: boolean;
|
|
636
|
+
readonly CanWrite?: boolean;
|
|
637
|
+
GetMethod?: MethodInfo;
|
|
638
|
+
SetMethod?: MethodInfo;
|
|
639
|
+
};
|
|
640
|
+
|
|
641
|
+
export type RemoteControlStatusOutput = {
|
|
642
|
+
CanEnable?: boolean;
|
|
643
|
+
IsEnabled?: boolean;
|
|
644
|
+
IsConnected?: boolean;
|
|
645
|
+
IsRegistering?: boolean;
|
|
646
|
+
IsRegisteringFaulted?: boolean;
|
|
647
|
+
IsRegisteringCompleted?: boolean;
|
|
648
|
+
RegistrationUrl?: (string) | null;
|
|
649
|
+
};
|
|
650
|
+
|
|
651
|
+
export type RemoteOperationInput = {
|
|
652
|
+
path?: (string) | null;
|
|
653
|
+
};
|
|
654
|
+
|
|
655
|
+
export type RepairInputDto = {
|
|
656
|
+
only_paths?: (boolean) | null;
|
|
657
|
+
time?: (string) | null;
|
|
658
|
+
version?: (string) | null;
|
|
659
|
+
paths?: Array<(string)> | null;
|
|
660
|
+
};
|
|
661
|
+
|
|
662
|
+
export type RestoreInputDto = {
|
|
663
|
+
paths?: Array<(string)> | null;
|
|
664
|
+
passphrase?: (string) | null;
|
|
665
|
+
time?: (string) | null;
|
|
666
|
+
restore_path?: (string) | null;
|
|
667
|
+
overwrite?: (boolean) | null;
|
|
668
|
+
permissions?: (boolean) | null;
|
|
669
|
+
skip_metadata?: (boolean) | null;
|
|
670
|
+
};
|
|
671
|
+
|
|
672
|
+
export type RuntimeFieldHandle = {
|
|
673
|
+
Value?: IntPtr;
|
|
674
|
+
};
|
|
675
|
+
|
|
676
|
+
export type RuntimeMethodHandle = {
|
|
677
|
+
Value?: IntPtr;
|
|
678
|
+
};
|
|
679
|
+
|
|
680
|
+
export type RuntimeTypeHandle = {
|
|
681
|
+
Value?: IntPtr;
|
|
682
|
+
};
|
|
683
|
+
|
|
684
|
+
export type ScheduleDto = {
|
|
685
|
+
ID?: number;
|
|
686
|
+
Tags?: Array<(string)> | null;
|
|
687
|
+
Time?: string;
|
|
688
|
+
Repeat?: (string) | null;
|
|
689
|
+
LastRun?: string;
|
|
690
|
+
Rule?: (string) | null;
|
|
691
|
+
AllowedDays?: Array<DayOfWeek> | null;
|
|
692
|
+
};
|
|
693
|
+
|
|
694
|
+
export type ScheduleInputDto = {
|
|
695
|
+
ID?: number;
|
|
696
|
+
Tags?: Array<(string)> | null;
|
|
697
|
+
Time?: (string) | null;
|
|
698
|
+
Repeat?: (string) | null;
|
|
699
|
+
LastRun?: (string) | null;
|
|
700
|
+
Rule?: (string) | null;
|
|
701
|
+
AllowedDays?: Array<DayOfWeek> | null;
|
|
702
|
+
};
|
|
703
|
+
|
|
704
|
+
export type SecurityRuleSet = 'None' | 'Level1' | 'Level2';
|
|
705
|
+
|
|
706
|
+
export type ServerStatusDto = {
|
|
707
|
+
ActiveTask?: Int64StringTuple;
|
|
708
|
+
ProgramState?: LiveControlState;
|
|
709
|
+
SchedulerQueueIds?: Array<Int64StringTuple> | null;
|
|
710
|
+
ProposedSchedule?: Array<StringDateTimeTuple> | null;
|
|
711
|
+
HasWarning?: boolean;
|
|
712
|
+
HasError?: boolean;
|
|
713
|
+
SuggestedStatusIcon?: SuggestedStatusIcon;
|
|
714
|
+
EstimatedPauseEnd?: string;
|
|
715
|
+
LastEventID?: number;
|
|
716
|
+
LastDataUpdateID?: number;
|
|
717
|
+
LastNotificationUpdateID?: number;
|
|
718
|
+
UpdatedVersion?: (string) | null;
|
|
719
|
+
UpdaterState?: UpdatePollerStates;
|
|
720
|
+
UpdateDownloadLink?: (string) | null;
|
|
721
|
+
UpdateDownloadProgress?: number;
|
|
722
|
+
};
|
|
723
|
+
|
|
724
|
+
export type SettingDto = {
|
|
725
|
+
Filter?: (string) | null;
|
|
726
|
+
Name?: (string) | null;
|
|
727
|
+
Value?: (string) | null;
|
|
728
|
+
Argument?: ICommandLineArgument;
|
|
729
|
+
};
|
|
730
|
+
|
|
731
|
+
export type SettingInputDto = {
|
|
732
|
+
Filter?: (string) | null;
|
|
733
|
+
Name?: (string) | null;
|
|
734
|
+
Value?: (string) | null;
|
|
735
|
+
};
|
|
736
|
+
|
|
737
|
+
export type SigninInputDto = {
|
|
738
|
+
SigninToken?: (string) | null;
|
|
739
|
+
RememberMe?: (boolean) | null;
|
|
740
|
+
};
|
|
741
|
+
|
|
742
|
+
export type SigninTokenOutputDto = {
|
|
743
|
+
Token?: (string) | null;
|
|
744
|
+
};
|
|
745
|
+
|
|
746
|
+
export type SingleOperationTokenOutputDto = {
|
|
747
|
+
Token?: (string) | null;
|
|
748
|
+
};
|
|
749
|
+
|
|
750
|
+
export type SolveCaptchaInputDto = {
|
|
751
|
+
target?: (string) | null;
|
|
752
|
+
answer?: (string) | null;
|
|
753
|
+
};
|
|
754
|
+
|
|
755
|
+
export type SpecialFolderDto = {
|
|
756
|
+
ID?: (string) | null;
|
|
757
|
+
Path?: (string) | null;
|
|
758
|
+
};
|
|
759
|
+
|
|
760
|
+
export type StartRegistrationInput = {
|
|
761
|
+
RegistrationUrl?: (string) | null;
|
|
762
|
+
};
|
|
763
|
+
|
|
764
|
+
export type StringDateTimeTuple = {
|
|
765
|
+
Item1?: (string) | null;
|
|
766
|
+
Item2?: string;
|
|
767
|
+
};
|
|
768
|
+
|
|
769
|
+
export type StructLayoutAttribute = {
|
|
770
|
+
readonly TypeId?: unknown;
|
|
771
|
+
Value?: LayoutKind;
|
|
772
|
+
};
|
|
773
|
+
|
|
774
|
+
export type SuggestedStatusIcon = 'Ready' | 'ReadyWarning' | 'ReadyError' | 'Paused' | 'Active' | 'ActivePaused';
|
|
775
|
+
|
|
776
|
+
export type SystemInfoDto = {
|
|
777
|
+
APIVersion?: number;
|
|
778
|
+
PasswordPlaceholder?: (string) | null;
|
|
779
|
+
ServerVersion?: (string) | null;
|
|
780
|
+
ServerVersionName?: (string) | null;
|
|
781
|
+
ServerVersionType?: (string) | null;
|
|
782
|
+
RemoteControlRegistrationUrl?: (string) | null;
|
|
783
|
+
StartedBy?: (string) | null;
|
|
784
|
+
DefaultUpdateChannel?: (string) | null;
|
|
785
|
+
DefaultUsageReportLevel?: (string) | null;
|
|
786
|
+
ServerTime?: string;
|
|
787
|
+
OSType?: (string) | null;
|
|
788
|
+
DirectorySeparator?: string;
|
|
789
|
+
PathSeparator?: string;
|
|
790
|
+
CaseSensitiveFilesystem?: boolean;
|
|
791
|
+
MachineName?: (string) | null;
|
|
792
|
+
PackageTypeId?: (string) | null;
|
|
793
|
+
UserName?: (string) | null;
|
|
794
|
+
NewLine?: (string) | null;
|
|
795
|
+
CLRVersion?: (string) | null;
|
|
796
|
+
CLROSInfo?: CLROSInfoDto;
|
|
797
|
+
Options?: Array<ICommandLineArgument> | null;
|
|
798
|
+
CompressionModules?: Array<IDynamicModule> | null;
|
|
799
|
+
EncryptionModules?: Array<IDynamicModule> | null;
|
|
800
|
+
BackendModules?: Array<IDynamicModule> | null;
|
|
801
|
+
GenericModules?: Array<IDynamicModule> | null;
|
|
802
|
+
WebModules?: Array<IDynamicModule> | null;
|
|
803
|
+
ConnectionModules?: Array<IDynamicModule> | null;
|
|
804
|
+
ServerModules?: Array<unknown> | null;
|
|
805
|
+
UsingAlternateUpdateURLs?: boolean;
|
|
806
|
+
LogLevels?: Array<(string)> | null;
|
|
807
|
+
SpecialFolders?: Array<SpecialFolderDto> | null;
|
|
808
|
+
BrowserLocale?: LocaleDto;
|
|
809
|
+
SupportedLocales?: Array<LocaleDto> | null;
|
|
810
|
+
BrowserLocaleSupported?: boolean;
|
|
811
|
+
};
|
|
812
|
+
|
|
813
|
+
export type TaskStartedDto = {
|
|
814
|
+
Status?: (string) | null;
|
|
815
|
+
ID?: number;
|
|
816
|
+
};
|
|
817
|
+
|
|
818
|
+
export type TreeNodeDto = {
|
|
819
|
+
text?: (string) | null;
|
|
820
|
+
id?: (string) | null;
|
|
821
|
+
cls?: (string) | null;
|
|
822
|
+
iconCls?: (string) | null;
|
|
823
|
+
check?: boolean;
|
|
824
|
+
leaf?: boolean;
|
|
825
|
+
resolvedpath?: (string) | null;
|
|
826
|
+
hidden?: boolean;
|
|
827
|
+
systemFile?: boolean;
|
|
828
|
+
temporary?: boolean;
|
|
829
|
+
symlink?: boolean;
|
|
830
|
+
fileSize?: number;
|
|
831
|
+
};
|
|
832
|
+
|
|
833
|
+
export type Type = {
|
|
834
|
+
readonly Name?: (string) | null;
|
|
835
|
+
readonly CustomAttributes?: Array<CustomAttributeData> | null;
|
|
836
|
+
readonly IsCollectible?: boolean;
|
|
837
|
+
readonly MetadataToken?: number;
|
|
838
|
+
readonly IsInterface?: boolean;
|
|
839
|
+
MemberType?: MemberTypes;
|
|
840
|
+
readonly Namespace?: (string) | null;
|
|
841
|
+
readonly AssemblyQualifiedName?: (string) | null;
|
|
842
|
+
readonly FullName?: (string) | null;
|
|
843
|
+
Assembly?: Assembly;
|
|
844
|
+
Module?: Module;
|
|
845
|
+
readonly IsNested?: boolean;
|
|
846
|
+
DeclaringType?: Type;
|
|
847
|
+
DeclaringMethod?: MethodBase;
|
|
848
|
+
ReflectedType?: Type;
|
|
849
|
+
UnderlyingSystemType?: Type;
|
|
850
|
+
readonly IsTypeDefinition?: boolean;
|
|
851
|
+
readonly IsArray?: boolean;
|
|
852
|
+
readonly IsByRef?: boolean;
|
|
853
|
+
readonly IsPointer?: boolean;
|
|
854
|
+
readonly IsConstructedGenericType?: boolean;
|
|
855
|
+
readonly IsGenericParameter?: boolean;
|
|
856
|
+
readonly IsGenericTypeParameter?: boolean;
|
|
857
|
+
readonly IsGenericMethodParameter?: boolean;
|
|
858
|
+
readonly IsGenericType?: boolean;
|
|
859
|
+
readonly IsGenericTypeDefinition?: boolean;
|
|
860
|
+
readonly IsSZArray?: boolean;
|
|
861
|
+
readonly IsVariableBoundArray?: boolean;
|
|
862
|
+
readonly IsByRefLike?: boolean;
|
|
863
|
+
readonly IsFunctionPointer?: boolean;
|
|
864
|
+
readonly IsUnmanagedFunctionPointer?: boolean;
|
|
865
|
+
readonly HasElementType?: boolean;
|
|
866
|
+
readonly GenericTypeArguments?: Array<Type> | null;
|
|
867
|
+
readonly GenericParameterPosition?: number;
|
|
868
|
+
GenericParameterAttributes?: GenericParameterAttributes;
|
|
869
|
+
Attributes?: TypeAttributes;
|
|
870
|
+
readonly IsAbstract?: boolean;
|
|
871
|
+
readonly IsImport?: boolean;
|
|
872
|
+
readonly IsSealed?: boolean;
|
|
873
|
+
readonly IsSpecialName?: boolean;
|
|
874
|
+
readonly IsClass?: boolean;
|
|
875
|
+
readonly IsNestedAssembly?: boolean;
|
|
876
|
+
readonly IsNestedFamANDAssem?: boolean;
|
|
877
|
+
readonly IsNestedFamily?: boolean;
|
|
878
|
+
readonly IsNestedFamORAssem?: boolean;
|
|
879
|
+
readonly IsNestedPrivate?: boolean;
|
|
880
|
+
readonly IsNestedPublic?: boolean;
|
|
881
|
+
readonly IsNotPublic?: boolean;
|
|
882
|
+
readonly IsPublic?: boolean;
|
|
883
|
+
readonly IsAutoLayout?: boolean;
|
|
884
|
+
readonly IsExplicitLayout?: boolean;
|
|
885
|
+
readonly IsLayoutSequential?: boolean;
|
|
886
|
+
readonly IsAnsiClass?: boolean;
|
|
887
|
+
readonly IsAutoClass?: boolean;
|
|
888
|
+
readonly IsUnicodeClass?: boolean;
|
|
889
|
+
readonly IsCOMObject?: boolean;
|
|
890
|
+
readonly IsContextful?: boolean;
|
|
891
|
+
readonly IsEnum?: boolean;
|
|
892
|
+
readonly IsMarshalByRef?: boolean;
|
|
893
|
+
readonly IsPrimitive?: boolean;
|
|
894
|
+
readonly IsValueType?: boolean;
|
|
895
|
+
readonly IsSignatureType?: boolean;
|
|
896
|
+
readonly IsSecurityCritical?: boolean;
|
|
897
|
+
readonly IsSecuritySafeCritical?: boolean;
|
|
898
|
+
readonly IsSecurityTransparent?: boolean;
|
|
899
|
+
StructLayoutAttribute?: StructLayoutAttribute;
|
|
900
|
+
TypeInitializer?: ConstructorInfo;
|
|
901
|
+
TypeHandle?: RuntimeTypeHandle;
|
|
902
|
+
readonly GUID?: string;
|
|
903
|
+
BaseType?: Type;
|
|
904
|
+
/**
|
|
905
|
+
* @deprecated
|
|
906
|
+
*/
|
|
907
|
+
readonly IsSerializable?: boolean;
|
|
908
|
+
readonly ContainsGenericParameters?: boolean;
|
|
909
|
+
readonly IsVisible?: boolean;
|
|
910
|
+
};
|
|
911
|
+
|
|
912
|
+
export type TypeAttributes = 'NotPublic' | 'Public' | 'NestedPublic' | 'NestedPrivate' | 'NestedFamily' | 'NestedAssembly' | 'NestedFamANDAssem' | 'VisibilityMask' | 'SequentialLayout' | 'ExplicitLayout' | 'LayoutMask' | 'Interface' | 'Abstract' | 'Sealed' | 'SpecialName' | 'RTSpecialName' | 'Import' | 'Serializable' | 'WindowsRuntime' | 'UnicodeClass' | 'AutoClass' | 'StringFormatMask' | 'HasSecurity' | 'ReservedMask' | 'BeforeFieldInit' | 'CustomFormatMask';
|
|
913
|
+
|
|
914
|
+
export type TypeInfo = {
|
|
915
|
+
readonly Name?: (string) | null;
|
|
916
|
+
readonly CustomAttributes?: Array<CustomAttributeData> | null;
|
|
917
|
+
readonly IsCollectible?: boolean;
|
|
918
|
+
readonly MetadataToken?: number;
|
|
919
|
+
readonly IsInterface?: boolean;
|
|
920
|
+
MemberType?: MemberTypes;
|
|
921
|
+
readonly Namespace?: (string) | null;
|
|
922
|
+
readonly AssemblyQualifiedName?: (string) | null;
|
|
923
|
+
readonly FullName?: (string) | null;
|
|
924
|
+
Assembly?: Assembly;
|
|
925
|
+
Module?: Module;
|
|
926
|
+
readonly IsNested?: boolean;
|
|
927
|
+
DeclaringType?: Type;
|
|
928
|
+
DeclaringMethod?: MethodBase;
|
|
929
|
+
ReflectedType?: Type;
|
|
930
|
+
UnderlyingSystemType?: Type;
|
|
931
|
+
readonly IsTypeDefinition?: boolean;
|
|
932
|
+
readonly IsArray?: boolean;
|
|
933
|
+
readonly IsByRef?: boolean;
|
|
934
|
+
readonly IsPointer?: boolean;
|
|
935
|
+
readonly IsConstructedGenericType?: boolean;
|
|
936
|
+
readonly IsGenericParameter?: boolean;
|
|
937
|
+
readonly IsGenericTypeParameter?: boolean;
|
|
938
|
+
readonly IsGenericMethodParameter?: boolean;
|
|
939
|
+
readonly IsGenericType?: boolean;
|
|
940
|
+
readonly IsGenericTypeDefinition?: boolean;
|
|
941
|
+
readonly IsSZArray?: boolean;
|
|
942
|
+
readonly IsVariableBoundArray?: boolean;
|
|
943
|
+
readonly IsByRefLike?: boolean;
|
|
944
|
+
readonly IsFunctionPointer?: boolean;
|
|
945
|
+
readonly IsUnmanagedFunctionPointer?: boolean;
|
|
946
|
+
readonly HasElementType?: boolean;
|
|
947
|
+
readonly GenericTypeArguments?: Array<Type> | null;
|
|
948
|
+
readonly GenericParameterPosition?: number;
|
|
949
|
+
GenericParameterAttributes?: GenericParameterAttributes;
|
|
950
|
+
Attributes?: TypeAttributes;
|
|
951
|
+
readonly IsAbstract?: boolean;
|
|
952
|
+
readonly IsImport?: boolean;
|
|
953
|
+
readonly IsSealed?: boolean;
|
|
954
|
+
readonly IsSpecialName?: boolean;
|
|
955
|
+
readonly IsClass?: boolean;
|
|
956
|
+
readonly IsNestedAssembly?: boolean;
|
|
957
|
+
readonly IsNestedFamANDAssem?: boolean;
|
|
958
|
+
readonly IsNestedFamily?: boolean;
|
|
959
|
+
readonly IsNestedFamORAssem?: boolean;
|
|
960
|
+
readonly IsNestedPrivate?: boolean;
|
|
961
|
+
readonly IsNestedPublic?: boolean;
|
|
962
|
+
readonly IsNotPublic?: boolean;
|
|
963
|
+
readonly IsPublic?: boolean;
|
|
964
|
+
readonly IsAutoLayout?: boolean;
|
|
965
|
+
readonly IsExplicitLayout?: boolean;
|
|
966
|
+
readonly IsLayoutSequential?: boolean;
|
|
967
|
+
readonly IsAnsiClass?: boolean;
|
|
968
|
+
readonly IsAutoClass?: boolean;
|
|
969
|
+
readonly IsUnicodeClass?: boolean;
|
|
970
|
+
readonly IsCOMObject?: boolean;
|
|
971
|
+
readonly IsContextful?: boolean;
|
|
972
|
+
readonly IsEnum?: boolean;
|
|
973
|
+
readonly IsMarshalByRef?: boolean;
|
|
974
|
+
readonly IsPrimitive?: boolean;
|
|
975
|
+
readonly IsValueType?: boolean;
|
|
976
|
+
readonly IsSignatureType?: boolean;
|
|
977
|
+
readonly IsSecurityCritical?: boolean;
|
|
978
|
+
readonly IsSecuritySafeCritical?: boolean;
|
|
979
|
+
readonly IsSecurityTransparent?: boolean;
|
|
980
|
+
StructLayoutAttribute?: StructLayoutAttribute;
|
|
981
|
+
TypeInitializer?: ConstructorInfo;
|
|
982
|
+
TypeHandle?: RuntimeTypeHandle;
|
|
983
|
+
readonly GUID?: string;
|
|
984
|
+
BaseType?: Type;
|
|
985
|
+
/**
|
|
986
|
+
* @deprecated
|
|
987
|
+
*/
|
|
988
|
+
readonly IsSerializable?: boolean;
|
|
989
|
+
readonly ContainsGenericParameters?: boolean;
|
|
990
|
+
readonly IsVisible?: boolean;
|
|
991
|
+
readonly GenericTypeParameters?: Array<Type> | null;
|
|
992
|
+
readonly DeclaredConstructors?: Array<ConstructorInfo> | null;
|
|
993
|
+
readonly DeclaredEvents?: Array<EventInfo> | null;
|
|
994
|
+
readonly DeclaredFields?: Array<FieldInfo> | null;
|
|
995
|
+
readonly DeclaredMembers?: Array<MemberInfo> | null;
|
|
996
|
+
readonly DeclaredMethods?: Array<MethodInfo> | null;
|
|
997
|
+
readonly DeclaredNestedTypes?: Array<TypeInfo> | null;
|
|
998
|
+
readonly DeclaredProperties?: Array<PropertyInfo> | null;
|
|
999
|
+
readonly ImplementedInterfaces?: Array<Type> | null;
|
|
1000
|
+
};
|
|
1001
|
+
|
|
1002
|
+
export type UpdateDbPathInputDto = {
|
|
1003
|
+
path?: (string) | null;
|
|
1004
|
+
};
|
|
1005
|
+
|
|
1006
|
+
export type UpdatePollerStates = 'Waiting' | 'Checking' | 'Downloading';
|
|
1007
|
+
|
|
1008
|
+
export type WebModuleOutputDto = {
|
|
1009
|
+
Status?: (string) | null;
|
|
1010
|
+
Result?: {
|
|
1011
|
+
[key: string]: (string);
|
|
1012
|
+
} | null;
|
|
1013
|
+
};
|
|
1014
|
+
|
|
1015
|
+
export type GetApiV1CommandlineResponse = (Array<(string)>);
|
|
1016
|
+
|
|
1017
|
+
export type PostApiV1CommandlineData = {
|
|
1018
|
+
requestBody: Array<(string)>;
|
|
1019
|
+
};
|
|
1020
|
+
|
|
1021
|
+
export type PostApiV1CommandlineResponse = (CommandlineTaskStartedDto);
|
|
1022
|
+
|
|
1023
|
+
export type GetApiV1AcknowledgementsResponse = (AcknowlegdementDto);
|
|
1024
|
+
|
|
1025
|
+
export type PostApiV1AuthRefreshResponse = (AccessTokenOutput);
|
|
1026
|
+
|
|
1027
|
+
export type PostApiV1AuthSigninData = {
|
|
1028
|
+
requestBody: SigninInputDto;
|
|
1029
|
+
};
|
|
1030
|
+
|
|
1031
|
+
export type PostApiV1AuthSigninResponse = (AccessTokenOutput);
|
|
1032
|
+
|
|
1033
|
+
export type PostApiV1AuthLoginData = {
|
|
1034
|
+
requestBody: LoginInputDto;
|
|
1035
|
+
};
|
|
1036
|
+
|
|
1037
|
+
export type PostApiV1AuthLoginResponse = (AccessTokenOutput);
|
|
1038
|
+
|
|
1039
|
+
export type PostApiV1AuthIssuesignintokenData = {
|
|
1040
|
+
requestBody: IssueSigninTokenInputDto;
|
|
1041
|
+
};
|
|
1042
|
+
|
|
1043
|
+
export type PostApiV1AuthIssuesignintokenResponse = (SigninTokenOutputDto);
|
|
1044
|
+
|
|
1045
|
+
export type PostApiV1AuthRefreshLogoutResponse = (unknown);
|
|
1046
|
+
|
|
1047
|
+
export type PostApiV1AuthIssuetokenByOperationData = {
|
|
1048
|
+
operation: string;
|
|
1049
|
+
};
|
|
1050
|
+
|
|
1051
|
+
export type PostApiV1AuthIssuetokenByOperationResponse = (SingleOperationTokenOutputDto);
|
|
1052
|
+
|
|
1053
|
+
export type GetApiV1BackupdefaultsResponse = (string);
|
|
1054
|
+
|
|
1055
|
+
export type GetApiV1BackupsResponse = (Array<BackupAndScheduleOutputDto>);
|
|
1056
|
+
|
|
1057
|
+
export type PostApiV1BackupsData = {
|
|
1058
|
+
existingdb?: boolean;
|
|
1059
|
+
requestBody: BackupAndScheduleInputDto;
|
|
1060
|
+
temporary?: boolean;
|
|
1061
|
+
};
|
|
1062
|
+
|
|
1063
|
+
export type PostApiV1BackupsResponse = (CreateBackupDto);
|
|
1064
|
+
|
|
1065
|
+
export type PostApiV1BackupsImportData = {
|
|
1066
|
+
requestBody: ImportBackupInputDto;
|
|
1067
|
+
};
|
|
1068
|
+
|
|
1069
|
+
export type PostApiV1BackupsImportResponse = (ImportBackupOutputDto);
|
|
1070
|
+
|
|
1071
|
+
export type GetApiV1BugreportByReportidData = {
|
|
1072
|
+
reportid: number;
|
|
1073
|
+
token: string;
|
|
1074
|
+
};
|
|
1075
|
+
|
|
1076
|
+
export type GetApiV1BugreportByReportidResponse = (unknown);
|
|
1077
|
+
|
|
1078
|
+
export type GetApiV1CaptchaByTokenData = {
|
|
1079
|
+
token: string;
|
|
1080
|
+
};
|
|
1081
|
+
|
|
1082
|
+
export type GetApiV1CaptchaByTokenResponse = (unknown);
|
|
1083
|
+
|
|
1084
|
+
export type PostApiV1CaptchaByTokenData = {
|
|
1085
|
+
requestBody: SolveCaptchaInputDto;
|
|
1086
|
+
token: string;
|
|
1087
|
+
};
|
|
1088
|
+
|
|
1089
|
+
export type PostApiV1CaptchaByTokenResponse = (Boolean__f__AnonymousType1);
|
|
1090
|
+
|
|
1091
|
+
export type PostApiV1CaptchaData = {
|
|
1092
|
+
requestBody: SolveCaptchaInputDto;
|
|
1093
|
+
};
|
|
1094
|
+
|
|
1095
|
+
export type PostApiV1CaptchaResponse = (GenerateCaptchaOutput);
|
|
1096
|
+
|
|
1097
|
+
export type GetApiV1ChangelogData = {
|
|
1098
|
+
fromUpdate?: boolean;
|
|
1099
|
+
};
|
|
1100
|
+
|
|
1101
|
+
export type GetApiV1ChangelogResponse = (ChangelogDto);
|
|
1102
|
+
|
|
1103
|
+
export type GetApiV1CommandlineByRunidData = {
|
|
1104
|
+
offset?: number;
|
|
1105
|
+
pagesize?: number;
|
|
1106
|
+
runid: string;
|
|
1107
|
+
};
|
|
1108
|
+
|
|
1109
|
+
export type GetApiV1CommandlineByRunidResponse = (CommandLineLogOutputDto);
|
|
1110
|
+
|
|
1111
|
+
export type PostApiV1CommandlineByRunidAbortData = {
|
|
1112
|
+
runid: string;
|
|
1113
|
+
};
|
|
1114
|
+
|
|
1115
|
+
export type PostApiV1CommandlineByRunidAbortResponse = (unknown);
|
|
1116
|
+
|
|
1117
|
+
export type PostApiV1FilesystemData = {
|
|
1118
|
+
onlyFolders?: boolean;
|
|
1119
|
+
requestBody: FilesystemInput;
|
|
1120
|
+
showHidden?: boolean;
|
|
1121
|
+
};
|
|
1122
|
+
|
|
1123
|
+
export type PostApiV1FilesystemResponse = (Array<TreeNodeDto>);
|
|
1124
|
+
|
|
1125
|
+
export type PostApiV1FilesystemValidateData = {
|
|
1126
|
+
requestBody: FilesystemInput;
|
|
1127
|
+
};
|
|
1128
|
+
|
|
1129
|
+
export type PostApiV1FilesystemValidateResponse = (unknown);
|
|
1130
|
+
|
|
1131
|
+
export type GetApiV1HypervResponse = (Array<TreeNodeDto>);
|
|
1132
|
+
|
|
1133
|
+
export type GetApiV1HypervByKeyData = {
|
|
1134
|
+
key: string;
|
|
1135
|
+
};
|
|
1136
|
+
|
|
1137
|
+
export type GetApiV1HypervByKeyResponse = (Array<TreeNodeDto>);
|
|
1138
|
+
|
|
1139
|
+
export type GetApiV1LicensesResponse = (Array<LicenseDto>);
|
|
1140
|
+
|
|
1141
|
+
export type GetApiV1LogdataPollData = {
|
|
1142
|
+
id: number;
|
|
1143
|
+
level: LogMessageType;
|
|
1144
|
+
offset?: number;
|
|
1145
|
+
pagesize?: number;
|
|
1146
|
+
};
|
|
1147
|
+
|
|
1148
|
+
export type GetApiV1LogdataPollResponse = (Array<LogEntry>);
|
|
1149
|
+
|
|
1150
|
+
export type GetApiV1LogdataLogData = {
|
|
1151
|
+
offset?: number;
|
|
1152
|
+
pagesize?: number;
|
|
1153
|
+
};
|
|
1154
|
+
|
|
1155
|
+
export type GetApiV1LogdataLogResponse = (Array<{
|
|
1156
|
+
[key: string]: unknown;
|
|
1157
|
+
}>);
|
|
1158
|
+
|
|
1159
|
+
export type GetApiV1MssqlResponse = (Array<TreeNodeDto>);
|
|
1160
|
+
|
|
1161
|
+
export type GetApiV1MssqlByKeyData = {
|
|
1162
|
+
key: string;
|
|
1163
|
+
};
|
|
1164
|
+
|
|
1165
|
+
export type GetApiV1MssqlByKeyResponse = (Array<TreeNodeDto>);
|
|
1166
|
+
|
|
1167
|
+
export type GetApiV1NotificationByIdData = {
|
|
1168
|
+
id: number;
|
|
1169
|
+
};
|
|
1170
|
+
|
|
1171
|
+
export type GetApiV1NotificationByIdResponse = (NotificationDto);
|
|
1172
|
+
|
|
1173
|
+
export type DeleteApiV1NotificationByIdData = {
|
|
1174
|
+
id: number;
|
|
1175
|
+
};
|
|
1176
|
+
|
|
1177
|
+
export type DeleteApiV1NotificationByIdResponse = (unknown);
|
|
1178
|
+
|
|
1179
|
+
export type GetApiV1NotificationsResponse = (Array<NotificationDto>);
|
|
1180
|
+
|
|
1181
|
+
export type GetApiV1RemotecontrolStatusResponse = (RemoteControlStatusOutput);
|
|
1182
|
+
|
|
1183
|
+
export type PostApiV1RemotecontrolEnableResponse = (RemoteControlStatusOutput);
|
|
1184
|
+
|
|
1185
|
+
export type PostApiV1RemotecontrolDisableResponse = (RemoteControlStatusOutput);
|
|
1186
|
+
|
|
1187
|
+
export type DeleteApiV1RemotecontrolRegistrationResponse = (RemoteControlStatusOutput);
|
|
1188
|
+
|
|
1189
|
+
export type PostApiV1RemotecontrolRegisterData = {
|
|
1190
|
+
requestBody: StartRegistrationInput;
|
|
1191
|
+
};
|
|
1192
|
+
|
|
1193
|
+
export type PostApiV1RemotecontrolRegisterResponse = (RemoteControlStatusOutput);
|
|
1194
|
+
|
|
1195
|
+
export type DeleteApiV1RemotecontrolRegisterResponse = (RemoteControlStatusOutput);
|
|
1196
|
+
|
|
1197
|
+
export type PostApiV1RemoteoperationDbpathData = {
|
|
1198
|
+
requestBody: RemoteOperationInput;
|
|
1199
|
+
};
|
|
1200
|
+
|
|
1201
|
+
export type PostApiV1RemoteoperationDbpathResponse = (GetDbPathDto);
|
|
1202
|
+
|
|
1203
|
+
export type PostApiV1RemoteoperationTestData = {
|
|
1204
|
+
autocreate?: boolean;
|
|
1205
|
+
requestBody: RemoteOperationInput;
|
|
1206
|
+
};
|
|
1207
|
+
|
|
1208
|
+
export type PostApiV1RemoteoperationTestResponse = (unknown);
|
|
1209
|
+
|
|
1210
|
+
export type PostApiV1RemoteoperationCreateData = {
|
|
1211
|
+
requestBody: RemoteOperationInput;
|
|
1212
|
+
};
|
|
1213
|
+
|
|
1214
|
+
export type PostApiV1RemoteoperationCreateResponse = (unknown);
|
|
1215
|
+
|
|
1216
|
+
export type GetApiV1ServersettingsResponse = ({
|
|
1217
|
+
[key: string]: (string);
|
|
1218
|
+
});
|
|
1219
|
+
|
|
1220
|
+
export type PatchApiV1ServersettingsData = {
|
|
1221
|
+
requestBody: {
|
|
1222
|
+
[key: string]: unknown;
|
|
1223
|
+
};
|
|
1224
|
+
};
|
|
1225
|
+
|
|
1226
|
+
export type PatchApiV1ServersettingsResponse = (unknown);
|
|
1227
|
+
|
|
1228
|
+
export type GetApiV1ServersettingByKeyData = {
|
|
1229
|
+
key: string;
|
|
1230
|
+
};
|
|
1231
|
+
|
|
1232
|
+
export type GetApiV1ServersettingByKeyResponse = (string);
|
|
1233
|
+
|
|
1234
|
+
export type PutApiV1ServersettingByKeyData = {
|
|
1235
|
+
key: string;
|
|
1236
|
+
requestBody: string;
|
|
1237
|
+
};
|
|
1238
|
+
|
|
1239
|
+
export type PutApiV1ServersettingByKeyResponse = (unknown);
|
|
1240
|
+
|
|
1241
|
+
export type GetApiV1ServerstateData = {
|
|
1242
|
+
duration?: string;
|
|
1243
|
+
lastEventId?: number;
|
|
1244
|
+
longpoll?: boolean;
|
|
1245
|
+
};
|
|
1246
|
+
|
|
1247
|
+
export type GetApiV1ServerstateResponse = (ServerStatusDto);
|
|
1248
|
+
|
|
1249
|
+
export type PostApiV1ServerstatePauseData = {
|
|
1250
|
+
duration?: string;
|
|
1251
|
+
};
|
|
1252
|
+
|
|
1253
|
+
export type PostApiV1ServerstatePauseResponse = (unknown);
|
|
1254
|
+
|
|
1255
|
+
export type PostApiV1ServerstateResumeResponse = (unknown);
|
|
1256
|
+
|
|
1257
|
+
export type GetApiV1SysteminfoResponse = (SystemInfoDto);
|
|
1258
|
+
|
|
1259
|
+
export type GetApiV1SysteminfoFiltergroupsResponse = (unknown);
|
|
1260
|
+
|
|
1261
|
+
export type GetApiV1TaskByTaskidData = {
|
|
1262
|
+
taskid: number;
|
|
1263
|
+
};
|
|
1264
|
+
|
|
1265
|
+
export type GetApiV1TaskByTaskidResponse = (GetTaskStateDto);
|
|
1266
|
+
|
|
1267
|
+
export type PostApiV1TaskByTaskidStopaftercurrentfileData = {
|
|
1268
|
+
taskid: number;
|
|
1269
|
+
};
|
|
1270
|
+
|
|
1271
|
+
export type PostApiV1TaskByTaskidStopaftercurrentfileResponse = (unknown);
|
|
1272
|
+
|
|
1273
|
+
export type PostApiV1TaskByTaskidStopnowData = {
|
|
1274
|
+
taskid: number;
|
|
1275
|
+
};
|
|
1276
|
+
|
|
1277
|
+
export type PostApiV1TaskByTaskidStopnowResponse = (unknown);
|
|
1278
|
+
|
|
1279
|
+
export type PostApiV1TaskByTaskidAbortData = {
|
|
1280
|
+
taskid: number;
|
|
1281
|
+
};
|
|
1282
|
+
|
|
1283
|
+
export type PostApiV1TaskByTaskidAbortResponse = (unknown);
|
|
1284
|
+
|
|
1285
|
+
export type GetApiV1UisettingsResponse = (Array<(string)>);
|
|
1286
|
+
|
|
1287
|
+
export type GetApiV1UisettingsBySchemeData = {
|
|
1288
|
+
scheme: string;
|
|
1289
|
+
};
|
|
1290
|
+
|
|
1291
|
+
export type GetApiV1UisettingsBySchemeResponse = ({
|
|
1292
|
+
[key: string]: (string);
|
|
1293
|
+
});
|
|
1294
|
+
|
|
1295
|
+
export type PatchApiV1UisettingsBySchemeData = {
|
|
1296
|
+
requestBody: {
|
|
1297
|
+
[key: string]: (string);
|
|
1298
|
+
};
|
|
1299
|
+
scheme: string;
|
|
1300
|
+
};
|
|
1301
|
+
|
|
1302
|
+
export type PatchApiV1UisettingsBySchemeResponse = (unknown);
|
|
1303
|
+
|
|
1304
|
+
export type PostApiV1WebmoduleByModulekeyData = {
|
|
1305
|
+
modulekey: string;
|
|
1306
|
+
requestBody: {
|
|
1307
|
+
[key: string]: (string);
|
|
1308
|
+
};
|
|
1309
|
+
};
|
|
1310
|
+
|
|
1311
|
+
export type PostApiV1WebmoduleByModulekeyResponse = (WebModuleOutputDto);
|
|
1312
|
+
|
|
1313
|
+
export type GetApiV1BackupByIdData = {
|
|
1314
|
+
id: string;
|
|
1315
|
+
};
|
|
1316
|
+
|
|
1317
|
+
export type GetApiV1BackupByIdResponse = (GetBackupResultDto);
|
|
1318
|
+
|
|
1319
|
+
export type PutApiV1BackupByIdData = {
|
|
1320
|
+
id: string;
|
|
1321
|
+
requestBody: BackupAndScheduleInputDto;
|
|
1322
|
+
};
|
|
1323
|
+
|
|
1324
|
+
export type PutApiV1BackupByIdResponse = (unknown);
|
|
1325
|
+
|
|
1326
|
+
export type DeleteApiV1BackupByIdData = {
|
|
1327
|
+
captchaAnswer?: string;
|
|
1328
|
+
captchaToken?: string;
|
|
1329
|
+
deleteLocalDb?: boolean;
|
|
1330
|
+
deleteRemoteFiles?: boolean;
|
|
1331
|
+
force?: boolean;
|
|
1332
|
+
id: string;
|
|
1333
|
+
};
|
|
1334
|
+
|
|
1335
|
+
export type DeleteApiV1BackupByIdResponse = (DeleteBackupOutputDto);
|
|
1336
|
+
|
|
1337
|
+
export type GetApiV1BackupByIdFilesData = {
|
|
1338
|
+
allVersions?: boolean;
|
|
1339
|
+
filter?: string;
|
|
1340
|
+
folderContents?: boolean;
|
|
1341
|
+
id: string;
|
|
1342
|
+
prefixOnly?: boolean;
|
|
1343
|
+
time?: string;
|
|
1344
|
+
};
|
|
1345
|
+
|
|
1346
|
+
export type GetApiV1BackupByIdFilesResponse = ({
|
|
1347
|
+
[key: string]: unknown;
|
|
1348
|
+
});
|
|
1349
|
+
|
|
1350
|
+
export type GetApiV1BackupByIdLogData = {
|
|
1351
|
+
id: string;
|
|
1352
|
+
offset?: number;
|
|
1353
|
+
pagesize?: number;
|
|
1354
|
+
};
|
|
1355
|
+
|
|
1356
|
+
export type GetApiV1BackupByIdLogResponse = (Array<{
|
|
1357
|
+
[key: string]: unknown;
|
|
1358
|
+
}>);
|
|
1359
|
+
|
|
1360
|
+
export type GetApiV1BackupByIdRemotelogData = {
|
|
1361
|
+
id: string;
|
|
1362
|
+
offset?: number;
|
|
1363
|
+
pagesize?: number;
|
|
1364
|
+
};
|
|
1365
|
+
|
|
1366
|
+
export type GetApiV1BackupByIdRemotelogResponse = (Array<{
|
|
1367
|
+
[key: string]: unknown;
|
|
1368
|
+
}>);
|
|
1369
|
+
|
|
1370
|
+
export type GetApiV1BackupByIdFilesetsData = {
|
|
1371
|
+
fromRemoteOnly?: boolean;
|
|
1372
|
+
id: string;
|
|
1373
|
+
includeMetadata?: boolean;
|
|
1374
|
+
};
|
|
1375
|
+
|
|
1376
|
+
export type GetApiV1BackupByIdFilesetsResponse = (Array<IListResultFileset>);
|
|
1377
|
+
|
|
1378
|
+
export type GetApiV1BackupByIdExportArgsonlyData = {
|
|
1379
|
+
exportPasswords?: boolean;
|
|
1380
|
+
id: string;
|
|
1381
|
+
passphrase?: string;
|
|
1382
|
+
};
|
|
1383
|
+
|
|
1384
|
+
export type GetApiV1BackupByIdExportArgsonlyResponse = (ExportArgsOnlyDto);
|
|
1385
|
+
|
|
1386
|
+
export type GetApiV1BackupByIdExportCmdlineData = {
|
|
1387
|
+
exportPasswords?: boolean;
|
|
1388
|
+
id: string;
|
|
1389
|
+
passphrase?: string;
|
|
1390
|
+
};
|
|
1391
|
+
|
|
1392
|
+
export type GetApiV1BackupByIdExportCmdlineResponse = (ExportCommandlineDto);
|
|
1393
|
+
|
|
1394
|
+
export type GetApiV1BackupByIdExportData = {
|
|
1395
|
+
exportPasswords?: boolean;
|
|
1396
|
+
id: string;
|
|
1397
|
+
passphrase?: string;
|
|
1398
|
+
token: string;
|
|
1399
|
+
};
|
|
1400
|
+
|
|
1401
|
+
export type GetApiV1BackupByIdExportResponse = (unknown);
|
|
1402
|
+
|
|
1403
|
+
export type GetApiV1BackupByIdIsdbusedelsewhereData = {
|
|
1404
|
+
id: string;
|
|
1405
|
+
};
|
|
1406
|
+
|
|
1407
|
+
export type GetApiV1BackupByIdIsdbusedelsewhereResponse = (IsDbUsedElsewhereDto);
|
|
1408
|
+
|
|
1409
|
+
export type GetApiV1BackupByIdIsactiveData = {
|
|
1410
|
+
id: string;
|
|
1411
|
+
};
|
|
1412
|
+
|
|
1413
|
+
export type GetApiV1BackupByIdIsactiveResponse = (IsBackupActiveDto);
|
|
1414
|
+
|
|
1415
|
+
export type PostApiV1BackupByIdDeletedbData = {
|
|
1416
|
+
id: string;
|
|
1417
|
+
};
|
|
1418
|
+
|
|
1419
|
+
export type PostApiV1BackupByIdDeletedbResponse = (unknown);
|
|
1420
|
+
|
|
1421
|
+
export type PostApiV1BackupByIdMovedbData = {
|
|
1422
|
+
id: string;
|
|
1423
|
+
requestBody: UpdateDbPathInputDto;
|
|
1424
|
+
};
|
|
1425
|
+
|
|
1426
|
+
export type PostApiV1BackupByIdMovedbResponse = (unknown);
|
|
1427
|
+
|
|
1428
|
+
export type PostApiV1BackupByIdUpdatedbData = {
|
|
1429
|
+
id: string;
|
|
1430
|
+
requestBody: UpdateDbPathInputDto;
|
|
1431
|
+
};
|
|
1432
|
+
|
|
1433
|
+
export type PostApiV1BackupByIdUpdatedbResponse = (unknown);
|
|
1434
|
+
|
|
1435
|
+
export type PostApiV1BackupByIdRestoreData = {
|
|
1436
|
+
id: string;
|
|
1437
|
+
requestBody: RestoreInputDto;
|
|
1438
|
+
};
|
|
1439
|
+
|
|
1440
|
+
export type PostApiV1BackupByIdRestoreResponse = (TaskStartedDto);
|
|
1441
|
+
|
|
1442
|
+
export type PostApiV1BackupByIdCreatereportData = {
|
|
1443
|
+
id: string;
|
|
1444
|
+
};
|
|
1445
|
+
|
|
1446
|
+
export type PostApiV1BackupByIdCreatereportResponse = (TaskStartedDto);
|
|
1447
|
+
|
|
1448
|
+
export type PostApiV1BackupByIdRepairData = {
|
|
1449
|
+
id: string;
|
|
1450
|
+
requestBody?: RepairInputDto;
|
|
1451
|
+
};
|
|
1452
|
+
|
|
1453
|
+
export type PostApiV1BackupByIdRepairResponse = (TaskStartedDto);
|
|
1454
|
+
|
|
1455
|
+
export type PostApiV1BackupByIdRepairupdateData = {
|
|
1456
|
+
id: string;
|
|
1457
|
+
requestBody?: RepairInputDto;
|
|
1458
|
+
};
|
|
1459
|
+
|
|
1460
|
+
export type PostApiV1BackupByIdRepairupdateResponse = (TaskStartedDto);
|
|
1461
|
+
|
|
1462
|
+
export type PostApiV1BackupByIdVacuumData = {
|
|
1463
|
+
id: string;
|
|
1464
|
+
};
|
|
1465
|
+
|
|
1466
|
+
export type PostApiV1BackupByIdVacuumResponse = (TaskStartedDto);
|
|
1467
|
+
|
|
1468
|
+
export type PostApiV1BackupByIdVerifyData = {
|
|
1469
|
+
id: string;
|
|
1470
|
+
};
|
|
1471
|
+
|
|
1472
|
+
export type PostApiV1BackupByIdVerifyResponse = (TaskStartedDto);
|
|
1473
|
+
|
|
1474
|
+
export type PostApiV1BackupByIdCompactData = {
|
|
1475
|
+
id: string;
|
|
1476
|
+
};
|
|
1477
|
+
|
|
1478
|
+
export type PostApiV1BackupByIdCompactResponse = (TaskStartedDto);
|
|
1479
|
+
|
|
1480
|
+
export type PostApiV1BackupByIdStartData = {
|
|
1481
|
+
id: string;
|
|
1482
|
+
};
|
|
1483
|
+
|
|
1484
|
+
export type PostApiV1BackupByIdStartResponse = (TaskStartedDto);
|
|
1485
|
+
|
|
1486
|
+
export type PostApiV1BackupByIdRunData = {
|
|
1487
|
+
id: string;
|
|
1488
|
+
};
|
|
1489
|
+
|
|
1490
|
+
export type PostApiV1BackupByIdRunResponse = (TaskStartedDto);
|
|
1491
|
+
|
|
1492
|
+
export type PostApiV1BackupByIdReportRemoteSizeData = {
|
|
1493
|
+
id: string;
|
|
1494
|
+
};
|
|
1495
|
+
|
|
1496
|
+
export type PostApiV1BackupByIdReportRemoteSizeResponse = (TaskStartedDto);
|
|
1497
|
+
|
|
1498
|
+
export type PostApiV1BackupByIdCopytotempData = {
|
|
1499
|
+
id: string;
|
|
1500
|
+
};
|
|
1501
|
+
|
|
1502
|
+
export type PostApiV1BackupByIdCopytotempResponse = (CreateBackupDto);
|
|
1503
|
+
|
|
1504
|
+
export type GetApiV1ProgressstateResponse = (IProgressEventData);
|
|
1505
|
+
|
|
1506
|
+
export type GetApiV1TasksResponse = (Array<IRunnerData>);
|
|
1507
|
+
|
|
1508
|
+
export type PostApiV1UpdatesCheckResponse = (unknown);
|
|
1509
|
+
|
|
1510
|
+
export type GetApiV1WebmodulesResponse = (Array<IWebModule>);
|