@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.
Files changed (152) hide show
  1. package/.dockerignore +13 -0
  2. package/.github/workflows/npm-publish.yml +59 -0
  3. package/.prettierignore +13 -0
  4. package/.prettierrc +12 -0
  5. package/.vscode/extensions.json +4 -0
  6. package/.vscode/launch.json +13 -0
  7. package/.vscode/settings.json +8 -0
  8. package/.vscode/tasks.json +24 -0
  9. package/Dockerfile +38 -0
  10. package/LICENSE +21 -0
  11. package/README.md +27 -0
  12. package/angular.json +98 -0
  13. package/bun.lockb +0 -0
  14. package/openapi-ts.config.ts +13 -0
  15. package/package.json +46 -0
  16. package/scripts/generate-package-json.ts +15 -0
  17. package/src/app/about/about.component.html +15 -0
  18. package/src/app/about/about.component.scss +19 -0
  19. package/src/app/about/about.component.ts +13 -0
  20. package/src/app/about/changelog/changelog.component.html +3 -0
  21. package/src/app/about/changelog/changelog.component.scss +7 -0
  22. package/src/app/about/changelog/changelog.component.ts +18 -0
  23. package/src/app/about/general/general.component.html +9 -0
  24. package/src/app/about/general/general.component.scss +23 -0
  25. package/src/app/about/general/general.component.ts +30 -0
  26. package/src/app/about/libraries/libraries.component.html +3 -0
  27. package/src/app/about/libraries/libraries.component.scss +7 -0
  28. package/src/app/about/libraries/libraries.component.ts +18 -0
  29. package/src/app/about/logs/logs.component.html +5 -0
  30. package/src/app/about/logs/logs.component.scss +7 -0
  31. package/src/app/about/logs/logs.component.ts +18 -0
  32. package/src/app/about/system-info/system-info.component.html +3 -0
  33. package/src/app/about/system-info/system-info.component.scss +7 -0
  34. package/src/app/about/system-info/system-info.component.ts +17 -0
  35. package/src/app/add-backup/add-backup.component.html +29 -0
  36. package/src/app/add-backup/add-backup.component.scss +38 -0
  37. package/src/app/add-backup/add-backup.component.ts +14 -0
  38. package/src/app/app.component.ts +35 -0
  39. package/src/app/app.config.ts +23 -0
  40. package/src/app/app.routes.ts +121 -0
  41. package/src/app/core/components/file-tree/file-tree.component.html +87 -0
  42. package/src/app/core/components/file-tree/file-tree.component.scss +80 -0
  43. package/src/app/core/components/file-tree/file-tree.component.ts +485 -0
  44. package/src/app/core/components/logo/logo.component.html +22 -0
  45. package/src/app/core/components/logo/logo.component.scss +12 -0
  46. package/src/app/core/components/logo/logo.component.ts +11 -0
  47. package/src/app/core/components/status-bar/status-bar.component.html +38 -0
  48. package/src/app/core/components/status-bar/status-bar.component.scss +27 -0
  49. package/src/app/core/components/status-bar/status-bar.component.ts +33 -0
  50. package/src/app/core/components/status-bar/status-bar.state.ts +182 -0
  51. package/src/app/core/components/toggle-card/toggle-card.component.html +11 -0
  52. package/src/app/core/components/toggle-card/toggle-card.component.scss +49 -0
  53. package/src/app/core/components/toggle-card/toggle-card.component.ts +28 -0
  54. package/src/app/core/interceptors/http.interceptor.ts +69 -0
  55. package/src/app/core/interceptors/websocket.interceptor.ts +66 -0
  56. package/src/app/core/openapi/core/ApiError.ts +21 -0
  57. package/src/app/core/openapi/core/ApiRequestOptions.ts +21 -0
  58. package/src/app/core/openapi/core/ApiResult.ts +7 -0
  59. package/src/app/core/openapi/core/OpenAPI.ts +55 -0
  60. package/src/app/core/openapi/core/request.ts +337 -0
  61. package/src/app/core/openapi/index.ts +6 -0
  62. package/src/app/core/openapi/schemas.gen.ts +3611 -0
  63. package/src/app/core/openapi/services.gen.ts +1460 -0
  64. package/src/app/core/openapi/types.gen.ts +1510 -0
  65. package/src/app/core/pipes/duration.pipe.ts +27 -0
  66. package/src/app/core/pipes/relative-time.pipe.ts +14 -0
  67. package/src/app/core/providers/dayjs.ts +16 -0
  68. package/src/app/core/services/dict.en.ts +0 -0
  69. package/src/app/core/services/dictionary.service.ts +12 -0
  70. package/src/app/core/services/localstorage.token.ts +82 -0
  71. package/src/app/core/services/password-generator.service.ts +39 -0
  72. package/src/app/core/services/relay-websocket.service.ts +268 -0
  73. package/src/app/core/services/timespan-literals.service.ts +25 -0
  74. package/src/app/core/states/app-auth.state.ts +87 -0
  75. package/src/app/core/states/backups.state.ts +71 -0
  76. package/src/app/core/states/relayconfig.state.ts +23 -0
  77. package/src/app/core/states/sysinfo.state.ts +31 -0
  78. package/src/app/core/states/tasks.state.ts +34 -0
  79. package/src/app/core/types/subscribed.ts +7 -0
  80. package/src/app/core/validators/custom.validators.ts +120 -0
  81. package/src/app/create-edit-backup/create-edit-backup.component.html +28 -0
  82. package/src/app/create-edit-backup/create-edit-backup.component.scss +15 -0
  83. package/src/app/create-edit-backup/create-edit-backup.component.ts +33 -0
  84. package/src/app/create-edit-backup/create-edit-backup.state.ts +582 -0
  85. package/src/app/create-edit-backup/destination/destination.component.html +367 -0
  86. package/src/app/create-edit-backup/destination/destination.component.scss +85 -0
  87. package/src/app/create-edit-backup/destination/destination.component.ts +249 -0
  88. package/src/app/create-edit-backup/destination/destination.config.ts +103 -0
  89. package/src/app/create-edit-backup/destination/destination.mapper.ts +177 -0
  90. package/src/app/create-edit-backup/general/general.component.html +108 -0
  91. package/src/app/create-edit-backup/general/general.component.scss +34 -0
  92. package/src/app/create-edit-backup/general/general.component.ts +136 -0
  93. package/src/app/create-edit-backup/options/options.component.html +95 -0
  94. package/src/app/create-edit-backup/options/options.component.scss +42 -0
  95. package/src/app/create-edit-backup/options/options.component.ts +113 -0
  96. package/src/app/create-edit-backup/schedule/schedule.component.html +102 -0
  97. package/src/app/create-edit-backup/schedule/schedule.component.scss +38 -0
  98. package/src/app/create-edit-backup/schedule/schedule.component.ts +137 -0
  99. package/src/app/create-edit-backup/source-data/source-data.component.html +93 -0
  100. package/src/app/create-edit-backup/source-data/source-data.component.scss +41 -0
  101. package/src/app/create-edit-backup/source-data/source-data.component.ts +114 -0
  102. package/src/app/home/backup.const.ts +167 -0
  103. package/src/app/home/home.component.html +98 -0
  104. package/src/app/home/home.component.scss +88 -0
  105. package/src/app/home/home.component.ts +54 -0
  106. package/src/app/layout/layout.component.html +64 -0
  107. package/src/app/layout/layout.component.scss +24 -0
  108. package/src/app/layout/layout.component.ts +51 -0
  109. package/src/app/layout/layout.state.ts +70 -0
  110. package/src/app/login/login.component.html +12 -0
  111. package/src/app/login/login.component.scss +25 -0
  112. package/src/app/login/login.component.ts +34 -0
  113. package/src/app/logout/logout.component.html +1 -0
  114. package/src/app/logout/logout.component.scss +3 -0
  115. package/src/app/logout/logout.component.ts +18 -0
  116. package/src/app/restore/restore.component.html +56 -0
  117. package/src/app/restore/restore.component.scss +37 -0
  118. package/src/app/restore/restore.component.ts +55 -0
  119. package/src/app/restore-flow/options/options.component.html +57 -0
  120. package/src/app/restore-flow/options/options.component.scss +16 -0
  121. package/src/app/restore-flow/options/options.component.ts +58 -0
  122. package/src/app/restore-flow/restore-flow.component.html +14 -0
  123. package/src/app/restore-flow/restore-flow.component.scss +15 -0
  124. package/src/app/restore-flow/restore-flow.component.ts +23 -0
  125. package/src/app/restore-flow/restore-flow.state.ts +120 -0
  126. package/src/app/restore-flow/select-files/select-files.component.html +42 -0
  127. package/src/app/restore-flow/select-files/select-files.component.scss +16 -0
  128. package/src/app/restore-flow/select-files/select-files.component.ts +129 -0
  129. package/src/app/settings/settings.component.html +256 -0
  130. package/src/app/settings/settings.component.scss +106 -0
  131. package/src/app/settings/settings.component.ts +475 -0
  132. package/src/assets/duplicati-logo.png +0 -0
  133. package/src/assets/duplicati-logo.svg +10 -0
  134. package/src/assets/favicon.ico +0 -0
  135. package/src/assets/images/backup.png +0 -0
  136. package/src/assets/images/dark-theme.png +0 -0
  137. package/src/assets/images/folder.png +0 -0
  138. package/src/assets/images/light-theme.png +0 -0
  139. package/src/assets/images/new-backup.png +0 -0
  140. package/src/assets/images/restore.png +0 -0
  141. package/src/assets/images/system-theme.png +0 -0
  142. package/src/assets/spk.css +33 -0
  143. package/src/assets/spk.woff2 +0 -0
  144. package/src/environments/environment-token.ts +4 -0
  145. package/src/environments/environment.prod.ts +6 -0
  146. package/src/environments/environment.ts +6 -0
  147. package/src/index.html +15 -0
  148. package/src/main.ts +6 -0
  149. package/src/proxy.conf.mjs +6 -0
  150. package/src/styles.scss +41 -0
  151. package/tsconfig.app.json +15 -0
  152. package/tsconfig.json +30 -0
@@ -0,0 +1,3611 @@
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+
3
+ export const $AccessTokenOutput = {
4
+ type: 'object',
5
+ properties: {
6
+ AccessToken: {
7
+ type: 'string',
8
+ nullable: true
9
+ }
10
+ },
11
+ additionalProperties: false
12
+ } as const;
13
+
14
+ export const $AcknowlegdementDto = {
15
+ type: 'object',
16
+ properties: {
17
+ Acknowledgements: {
18
+ type: 'string',
19
+ nullable: true
20
+ }
21
+ },
22
+ additionalProperties: false
23
+ } as const;
24
+
25
+ export const $ArgumentType = {
26
+ enum: ['String', 'Integer', 'Boolean', 'Timespan', 'Size', 'Enumeration', 'Path', 'Password', 'Flags', 'Decimal', 'Unknown'],
27
+ type: 'string'
28
+ } as const;
29
+
30
+ export const $Assembly = {
31
+ type: 'object',
32
+ properties: {
33
+ DefinedTypes: {
34
+ type: 'array',
35
+ items: {
36
+ '$ref': '#/components/schemas/TypeInfo'
37
+ },
38
+ nullable: true,
39
+ readOnly: true
40
+ },
41
+ ExportedTypes: {
42
+ type: 'array',
43
+ items: {
44
+ '$ref': '#/components/schemas/Type'
45
+ },
46
+ nullable: true,
47
+ readOnly: true
48
+ },
49
+ CodeBase: {
50
+ type: 'string',
51
+ nullable: true,
52
+ readOnly: true,
53
+ deprecated: true
54
+ },
55
+ EntryPoint: {
56
+ '$ref': '#/components/schemas/MethodInfo'
57
+ },
58
+ FullName: {
59
+ type: 'string',
60
+ nullable: true,
61
+ readOnly: true
62
+ },
63
+ ImageRuntimeVersion: {
64
+ type: 'string',
65
+ nullable: true,
66
+ readOnly: true
67
+ },
68
+ IsDynamic: {
69
+ type: 'boolean',
70
+ readOnly: true
71
+ },
72
+ Location: {
73
+ type: 'string',
74
+ nullable: true,
75
+ readOnly: true
76
+ },
77
+ ReflectionOnly: {
78
+ type: 'boolean',
79
+ readOnly: true
80
+ },
81
+ IsCollectible: {
82
+ type: 'boolean',
83
+ readOnly: true
84
+ },
85
+ IsFullyTrusted: {
86
+ type: 'boolean',
87
+ readOnly: true
88
+ },
89
+ CustomAttributes: {
90
+ type: 'array',
91
+ items: {
92
+ '$ref': '#/components/schemas/CustomAttributeData'
93
+ },
94
+ nullable: true,
95
+ readOnly: true
96
+ },
97
+ EscapedCodeBase: {
98
+ type: 'string',
99
+ nullable: true,
100
+ readOnly: true,
101
+ deprecated: true
102
+ },
103
+ ManifestModule: {
104
+ '$ref': '#/components/schemas/Module'
105
+ },
106
+ Modules: {
107
+ type: 'array',
108
+ items: {
109
+ '$ref': '#/components/schemas/Module'
110
+ },
111
+ nullable: true,
112
+ readOnly: true
113
+ },
114
+ GlobalAssemblyCache: {
115
+ type: 'boolean',
116
+ readOnly: true,
117
+ deprecated: true
118
+ },
119
+ HostContext: {
120
+ type: 'integer',
121
+ format: 'int64',
122
+ readOnly: true
123
+ },
124
+ SecurityRuleSet: {
125
+ '$ref': '#/components/schemas/SecurityRuleSet'
126
+ }
127
+ },
128
+ additionalProperties: false
129
+ } as const;
130
+
131
+ export const $BackupAndScheduleInputDto = {
132
+ type: 'object',
133
+ properties: {
134
+ Backup: {
135
+ '$ref': '#/components/schemas/BackupInputDto'
136
+ },
137
+ Schedule: {
138
+ '$ref': '#/components/schemas/ScheduleInputDto'
139
+ }
140
+ },
141
+ additionalProperties: false
142
+ } as const;
143
+
144
+ export const $BackupAndScheduleOutputDto = {
145
+ type: 'object',
146
+ properties: {
147
+ Backup: {
148
+ '$ref': '#/components/schemas/BackupDto'
149
+ },
150
+ Schedule: {
151
+ '$ref': '#/components/schemas/ScheduleDto'
152
+ }
153
+ },
154
+ additionalProperties: false
155
+ } as const;
156
+
157
+ export const $BackupDto = {
158
+ type: 'object',
159
+ properties: {
160
+ ID: {
161
+ type: 'string',
162
+ nullable: true
163
+ },
164
+ Name: {
165
+ type: 'string',
166
+ nullable: true
167
+ },
168
+ Description: {
169
+ type: 'string',
170
+ nullable: true
171
+ },
172
+ Tags: {
173
+ type: 'array',
174
+ items: {
175
+ type: 'string'
176
+ },
177
+ nullable: true
178
+ },
179
+ TargetURL: {
180
+ type: 'string',
181
+ nullable: true
182
+ },
183
+ DBPath: {
184
+ type: 'string',
185
+ nullable: true
186
+ },
187
+ Sources: {
188
+ type: 'array',
189
+ items: {
190
+ type: 'string'
191
+ },
192
+ nullable: true
193
+ },
194
+ Settings: {
195
+ type: 'array',
196
+ items: {
197
+ '$ref': '#/components/schemas/SettingDto'
198
+ },
199
+ nullable: true
200
+ },
201
+ Filters: {
202
+ type: 'array',
203
+ items: {
204
+ '$ref': '#/components/schemas/FilterDto'
205
+ },
206
+ nullable: true
207
+ },
208
+ Metadata: {
209
+ type: 'object',
210
+ additionalProperties: {
211
+ type: 'string'
212
+ },
213
+ nullable: true
214
+ },
215
+ IsTemporary: {
216
+ type: 'boolean'
217
+ },
218
+ IsUnencryptedOrPassphraseStored: {
219
+ type: 'boolean'
220
+ }
221
+ },
222
+ additionalProperties: false
223
+ } as const;
224
+
225
+ export const $BackupInputDto = {
226
+ type: 'object',
227
+ properties: {
228
+ Name: {
229
+ type: 'string',
230
+ nullable: true
231
+ },
232
+ Description: {
233
+ type: 'string',
234
+ nullable: true
235
+ },
236
+ DBPath: {
237
+ type: 'string',
238
+ nullable: true
239
+ },
240
+ Tags: {
241
+ type: 'array',
242
+ items: {
243
+ type: 'string'
244
+ },
245
+ nullable: true
246
+ },
247
+ TargetURL: {
248
+ type: 'string',
249
+ nullable: true
250
+ },
251
+ Sources: {
252
+ type: 'array',
253
+ items: {
254
+ type: 'string'
255
+ },
256
+ nullable: true
257
+ },
258
+ Settings: {
259
+ type: 'array',
260
+ items: {
261
+ '$ref': '#/components/schemas/SettingInputDto'
262
+ },
263
+ nullable: true
264
+ },
265
+ Filters: {
266
+ type: 'array',
267
+ items: {
268
+ '$ref': '#/components/schemas/FilterInputDto'
269
+ },
270
+ nullable: true
271
+ },
272
+ Metadata: {
273
+ type: 'object',
274
+ additionalProperties: {
275
+ type: 'string'
276
+ },
277
+ nullable: true
278
+ }
279
+ },
280
+ additionalProperties: false
281
+ } as const;
282
+
283
+ export const $Boolean__f__AnonymousType1 = {
284
+ type: 'object',
285
+ properties: {
286
+ success: {
287
+ type: 'boolean'
288
+ }
289
+ },
290
+ additionalProperties: false
291
+ } as const;
292
+
293
+ export const $CLROSInfoDto = {
294
+ type: 'object',
295
+ properties: {
296
+ Platform: {
297
+ type: 'string',
298
+ nullable: true
299
+ },
300
+ ServicePack: {
301
+ type: 'string',
302
+ nullable: true
303
+ },
304
+ Version: {
305
+ type: 'string',
306
+ nullable: true
307
+ },
308
+ VersionString: {
309
+ type: 'string',
310
+ nullable: true
311
+ }
312
+ },
313
+ additionalProperties: false
314
+ } as const;
315
+
316
+ export const $CallingConventions = {
317
+ enum: ['Standard', 'VarArgs', 'Any', 'HasThis', 'ExplicitThis'],
318
+ type: 'string'
319
+ } as const;
320
+
321
+ export const $ChangelogDto = {
322
+ type: 'object',
323
+ properties: {
324
+ Version: {
325
+ type: 'string',
326
+ nullable: true
327
+ },
328
+ Changelog: {
329
+ type: 'string',
330
+ nullable: true
331
+ }
332
+ },
333
+ additionalProperties: false
334
+ } as const;
335
+
336
+ export const $CommandLineLogOutputDto = {
337
+ type: 'object',
338
+ properties: {
339
+ Pagesize: {
340
+ type: 'integer',
341
+ format: 'int32'
342
+ },
343
+ Offset: {
344
+ type: 'integer',
345
+ format: 'int32'
346
+ },
347
+ Count: {
348
+ type: 'integer',
349
+ format: 'int32'
350
+ },
351
+ Items: {
352
+ type: 'array',
353
+ items: {
354
+ type: 'string'
355
+ },
356
+ nullable: true
357
+ },
358
+ Finished: {
359
+ type: 'boolean'
360
+ },
361
+ Started: {
362
+ type: 'boolean'
363
+ }
364
+ },
365
+ additionalProperties: false
366
+ } as const;
367
+
368
+ export const $CommandlineTaskStartedDto = {
369
+ type: 'object',
370
+ properties: {
371
+ Status: {
372
+ type: 'string',
373
+ nullable: true
374
+ },
375
+ ID: {
376
+ type: 'string',
377
+ nullable: true
378
+ }
379
+ },
380
+ additionalProperties: false
381
+ } as const;
382
+
383
+ export const $ConstructorInfo = {
384
+ type: 'object',
385
+ properties: {
386
+ Name: {
387
+ type: 'string',
388
+ nullable: true,
389
+ readOnly: true
390
+ },
391
+ DeclaringType: {
392
+ '$ref': '#/components/schemas/Type'
393
+ },
394
+ ReflectedType: {
395
+ '$ref': '#/components/schemas/Type'
396
+ },
397
+ Module: {
398
+ '$ref': '#/components/schemas/Module'
399
+ },
400
+ CustomAttributes: {
401
+ type: 'array',
402
+ items: {
403
+ '$ref': '#/components/schemas/CustomAttributeData'
404
+ },
405
+ nullable: true,
406
+ readOnly: true
407
+ },
408
+ IsCollectible: {
409
+ type: 'boolean',
410
+ readOnly: true
411
+ },
412
+ MetadataToken: {
413
+ type: 'integer',
414
+ format: 'int32',
415
+ readOnly: true
416
+ },
417
+ Attributes: {
418
+ '$ref': '#/components/schemas/MethodAttributes'
419
+ },
420
+ MethodImplementationFlags: {
421
+ '$ref': '#/components/schemas/MethodImplAttributes'
422
+ },
423
+ CallingConvention: {
424
+ '$ref': '#/components/schemas/CallingConventions'
425
+ },
426
+ IsAbstract: {
427
+ type: 'boolean',
428
+ readOnly: true
429
+ },
430
+ IsConstructor: {
431
+ type: 'boolean',
432
+ readOnly: true
433
+ },
434
+ IsFinal: {
435
+ type: 'boolean',
436
+ readOnly: true
437
+ },
438
+ IsHideBySig: {
439
+ type: 'boolean',
440
+ readOnly: true
441
+ },
442
+ IsSpecialName: {
443
+ type: 'boolean',
444
+ readOnly: true
445
+ },
446
+ IsStatic: {
447
+ type: 'boolean',
448
+ readOnly: true
449
+ },
450
+ IsVirtual: {
451
+ type: 'boolean',
452
+ readOnly: true
453
+ },
454
+ IsAssembly: {
455
+ type: 'boolean',
456
+ readOnly: true
457
+ },
458
+ IsFamily: {
459
+ type: 'boolean',
460
+ readOnly: true
461
+ },
462
+ IsFamilyAndAssembly: {
463
+ type: 'boolean',
464
+ readOnly: true
465
+ },
466
+ IsFamilyOrAssembly: {
467
+ type: 'boolean',
468
+ readOnly: true
469
+ },
470
+ IsPrivate: {
471
+ type: 'boolean',
472
+ readOnly: true
473
+ },
474
+ IsPublic: {
475
+ type: 'boolean',
476
+ readOnly: true
477
+ },
478
+ IsConstructedGenericMethod: {
479
+ type: 'boolean',
480
+ readOnly: true
481
+ },
482
+ IsGenericMethod: {
483
+ type: 'boolean',
484
+ readOnly: true
485
+ },
486
+ IsGenericMethodDefinition: {
487
+ type: 'boolean',
488
+ readOnly: true
489
+ },
490
+ ContainsGenericParameters: {
491
+ type: 'boolean',
492
+ readOnly: true
493
+ },
494
+ MethodHandle: {
495
+ '$ref': '#/components/schemas/RuntimeMethodHandle'
496
+ },
497
+ IsSecurityCritical: {
498
+ type: 'boolean',
499
+ readOnly: true
500
+ },
501
+ IsSecuritySafeCritical: {
502
+ type: 'boolean',
503
+ readOnly: true
504
+ },
505
+ IsSecurityTransparent: {
506
+ type: 'boolean',
507
+ readOnly: true
508
+ },
509
+ MemberType: {
510
+ '$ref': '#/components/schemas/MemberTypes'
511
+ }
512
+ },
513
+ additionalProperties: false
514
+ } as const;
515
+
516
+ export const $CreateBackupDto = {
517
+ type: 'object',
518
+ properties: {
519
+ ID: {
520
+ type: 'string',
521
+ nullable: true
522
+ },
523
+ Temporary: {
524
+ type: 'boolean'
525
+ }
526
+ },
527
+ additionalProperties: false
528
+ } as const;
529
+
530
+ export const $CustomAttributeData = {
531
+ type: 'object',
532
+ properties: {
533
+ AttributeType: {
534
+ '$ref': '#/components/schemas/Type'
535
+ },
536
+ Constructor: {
537
+ '$ref': '#/components/schemas/ConstructorInfo'
538
+ },
539
+ ConstructorArguments: {
540
+ type: 'array',
541
+ items: {
542
+ '$ref': '#/components/schemas/CustomAttributeTypedArgument'
543
+ },
544
+ nullable: true,
545
+ readOnly: true
546
+ },
547
+ NamedArguments: {
548
+ type: 'array',
549
+ items: {
550
+ '$ref': '#/components/schemas/CustomAttributeNamedArgument'
551
+ },
552
+ nullable: true,
553
+ readOnly: true
554
+ }
555
+ },
556
+ additionalProperties: false
557
+ } as const;
558
+
559
+ export const $CustomAttributeNamedArgument = {
560
+ type: 'object',
561
+ properties: {
562
+ MemberInfo: {
563
+ '$ref': '#/components/schemas/MemberInfo'
564
+ },
565
+ TypedValue: {
566
+ '$ref': '#/components/schemas/CustomAttributeTypedArgument'
567
+ },
568
+ MemberName: {
569
+ type: 'string',
570
+ nullable: true,
571
+ readOnly: true
572
+ },
573
+ IsField: {
574
+ type: 'boolean',
575
+ readOnly: true
576
+ }
577
+ },
578
+ additionalProperties: false
579
+ } as const;
580
+
581
+ export const $CustomAttributeTypedArgument = {
582
+ type: 'object',
583
+ properties: {
584
+ ArgumentType: {
585
+ '$ref': '#/components/schemas/Type'
586
+ },
587
+ Value: {
588
+ nullable: true
589
+ }
590
+ },
591
+ additionalProperties: false
592
+ } as const;
593
+
594
+ export const $DayOfWeek = {
595
+ enum: [
596
+ null,
597
+ null,
598
+ null,
599
+ null,
600
+ null,
601
+ null,
602
+ null
603
+ ],
604
+ type: 'string'
605
+ } as const;
606
+
607
+ export const $DeleteBackupOutputDto = {
608
+ type: 'object',
609
+ properties: {
610
+ Status: {
611
+ type: 'string',
612
+ nullable: true
613
+ },
614
+ Reason: {
615
+ type: 'string',
616
+ nullable: true
617
+ },
618
+ ID: {
619
+ type: 'integer',
620
+ format: 'int64',
621
+ nullable: true
622
+ }
623
+ },
624
+ additionalProperties: false
625
+ } as const;
626
+
627
+ export const $DuplicatiOperation = {
628
+ enum: ['Backup', 'Restore', 'List', 'Remove', 'Repair', 'RepairUpdate', 'Verify', 'Compact', 'CreateReport', 'ListRemote', 'Delete', 'Vacuum', 'CustomRunner'],
629
+ type: 'string'
630
+ } as const;
631
+
632
+ export const $EventAttributes = {
633
+ enum: ['None', 'SpecialName', 'RTSpecialName'],
634
+ type: 'string'
635
+ } as const;
636
+
637
+ export const $EventInfo = {
638
+ type: 'object',
639
+ properties: {
640
+ Name: {
641
+ type: 'string',
642
+ nullable: true,
643
+ readOnly: true
644
+ },
645
+ DeclaringType: {
646
+ '$ref': '#/components/schemas/Type'
647
+ },
648
+ ReflectedType: {
649
+ '$ref': '#/components/schemas/Type'
650
+ },
651
+ Module: {
652
+ '$ref': '#/components/schemas/Module'
653
+ },
654
+ CustomAttributes: {
655
+ type: 'array',
656
+ items: {
657
+ '$ref': '#/components/schemas/CustomAttributeData'
658
+ },
659
+ nullable: true,
660
+ readOnly: true
661
+ },
662
+ IsCollectible: {
663
+ type: 'boolean',
664
+ readOnly: true
665
+ },
666
+ MetadataToken: {
667
+ type: 'integer',
668
+ format: 'int32',
669
+ readOnly: true
670
+ },
671
+ MemberType: {
672
+ '$ref': '#/components/schemas/MemberTypes'
673
+ },
674
+ Attributes: {
675
+ '$ref': '#/components/schemas/EventAttributes'
676
+ },
677
+ IsSpecialName: {
678
+ type: 'boolean',
679
+ readOnly: true
680
+ },
681
+ AddMethod: {
682
+ '$ref': '#/components/schemas/MethodInfo'
683
+ },
684
+ RemoveMethod: {
685
+ '$ref': '#/components/schemas/MethodInfo'
686
+ },
687
+ RaiseMethod: {
688
+ '$ref': '#/components/schemas/MethodInfo'
689
+ },
690
+ IsMulticast: {
691
+ type: 'boolean',
692
+ readOnly: true
693
+ },
694
+ EventHandlerType: {
695
+ '$ref': '#/components/schemas/Type'
696
+ }
697
+ },
698
+ additionalProperties: false
699
+ } as const;
700
+
701
+ export const $Exception = {
702
+ type: 'object',
703
+ properties: {
704
+ TargetSite: {
705
+ '$ref': '#/components/schemas/MethodBase'
706
+ },
707
+ Message: {
708
+ type: 'string',
709
+ nullable: true,
710
+ readOnly: true
711
+ },
712
+ Data: {
713
+ type: 'object',
714
+ additionalProperties: {},
715
+ nullable: true,
716
+ readOnly: true
717
+ },
718
+ InnerException: {
719
+ '$ref': '#/components/schemas/Exception'
720
+ },
721
+ HelpLink: {
722
+ type: 'string',
723
+ nullable: true
724
+ },
725
+ Source: {
726
+ type: 'string',
727
+ nullable: true
728
+ },
729
+ HResult: {
730
+ type: 'integer',
731
+ format: 'int32'
732
+ },
733
+ StackTrace: {
734
+ type: 'string',
735
+ nullable: true,
736
+ readOnly: true
737
+ }
738
+ },
739
+ additionalProperties: false
740
+ } as const;
741
+
742
+ export const $ExportArgsOnlyDto = {
743
+ type: 'object',
744
+ properties: {
745
+ Backend: {
746
+ type: 'string',
747
+ nullable: true
748
+ },
749
+ Arguments: {
750
+ type: 'array',
751
+ items: {
752
+ type: 'string'
753
+ },
754
+ nullable: true
755
+ },
756
+ Options: {
757
+ type: 'array',
758
+ items: {
759
+ type: 'string'
760
+ },
761
+ nullable: true
762
+ }
763
+ },
764
+ additionalProperties: false
765
+ } as const;
766
+
767
+ export const $ExportCommandlineDto = {
768
+ type: 'object',
769
+ properties: {
770
+ Command: {
771
+ type: 'string',
772
+ nullable: true
773
+ }
774
+ },
775
+ additionalProperties: false
776
+ } as const;
777
+
778
+ export const $FieldAttributes = {
779
+ enum: ['PrivateScope', 'Private', 'FamANDAssem', 'Assembly', 'Family', 'FamORAssem', 'Public', 'FieldAccessMask', 'Static', 'InitOnly', 'Literal', 'NotSerialized', 'HasFieldRVA', 'SpecialName', 'RTSpecialName', 'HasFieldMarshal', 'PinvokeImpl', 'HasDefault', 'ReservedMask'],
780
+ type: 'string'
781
+ } as const;
782
+
783
+ export const $FieldInfo = {
784
+ type: 'object',
785
+ properties: {
786
+ Name: {
787
+ type: 'string',
788
+ nullable: true,
789
+ readOnly: true
790
+ },
791
+ DeclaringType: {
792
+ '$ref': '#/components/schemas/Type'
793
+ },
794
+ ReflectedType: {
795
+ '$ref': '#/components/schemas/Type'
796
+ },
797
+ Module: {
798
+ '$ref': '#/components/schemas/Module'
799
+ },
800
+ CustomAttributes: {
801
+ type: 'array',
802
+ items: {
803
+ '$ref': '#/components/schemas/CustomAttributeData'
804
+ },
805
+ nullable: true,
806
+ readOnly: true
807
+ },
808
+ IsCollectible: {
809
+ type: 'boolean',
810
+ readOnly: true
811
+ },
812
+ MetadataToken: {
813
+ type: 'integer',
814
+ format: 'int32',
815
+ readOnly: true
816
+ },
817
+ MemberType: {
818
+ '$ref': '#/components/schemas/MemberTypes'
819
+ },
820
+ Attributes: {
821
+ '$ref': '#/components/schemas/FieldAttributes'
822
+ },
823
+ FieldType: {
824
+ '$ref': '#/components/schemas/Type'
825
+ },
826
+ IsInitOnly: {
827
+ type: 'boolean',
828
+ readOnly: true
829
+ },
830
+ IsLiteral: {
831
+ type: 'boolean',
832
+ readOnly: true
833
+ },
834
+ IsNotSerialized: {
835
+ type: 'boolean',
836
+ readOnly: true,
837
+ deprecated: true
838
+ },
839
+ IsPinvokeImpl: {
840
+ type: 'boolean',
841
+ readOnly: true
842
+ },
843
+ IsSpecialName: {
844
+ type: 'boolean',
845
+ readOnly: true
846
+ },
847
+ IsStatic: {
848
+ type: 'boolean',
849
+ readOnly: true
850
+ },
851
+ IsAssembly: {
852
+ type: 'boolean',
853
+ readOnly: true
854
+ },
855
+ IsFamily: {
856
+ type: 'boolean',
857
+ readOnly: true
858
+ },
859
+ IsFamilyAndAssembly: {
860
+ type: 'boolean',
861
+ readOnly: true
862
+ },
863
+ IsFamilyOrAssembly: {
864
+ type: 'boolean',
865
+ readOnly: true
866
+ },
867
+ IsPrivate: {
868
+ type: 'boolean',
869
+ readOnly: true
870
+ },
871
+ IsPublic: {
872
+ type: 'boolean',
873
+ readOnly: true
874
+ },
875
+ IsSecurityCritical: {
876
+ type: 'boolean',
877
+ readOnly: true
878
+ },
879
+ IsSecuritySafeCritical: {
880
+ type: 'boolean',
881
+ readOnly: true
882
+ },
883
+ IsSecurityTransparent: {
884
+ type: 'boolean',
885
+ readOnly: true
886
+ },
887
+ FieldHandle: {
888
+ '$ref': '#/components/schemas/RuntimeFieldHandle'
889
+ }
890
+ },
891
+ additionalProperties: false
892
+ } as const;
893
+
894
+ export const $FilesystemInput = {
895
+ type: 'object',
896
+ properties: {
897
+ path: {
898
+ type: 'string',
899
+ nullable: true
900
+ }
901
+ },
902
+ additionalProperties: false
903
+ } as const;
904
+
905
+ export const $FilterDto = {
906
+ type: 'object',
907
+ properties: {
908
+ Order: {
909
+ type: 'integer',
910
+ format: 'int64'
911
+ },
912
+ Include: {
913
+ type: 'boolean'
914
+ },
915
+ Expression: {
916
+ type: 'string',
917
+ nullable: true
918
+ }
919
+ },
920
+ additionalProperties: false
921
+ } as const;
922
+
923
+ export const $FilterInputDto = {
924
+ type: 'object',
925
+ properties: {
926
+ Order: {
927
+ type: 'integer',
928
+ format: 'int64'
929
+ },
930
+ Include: {
931
+ type: 'boolean'
932
+ },
933
+ Expression: {
934
+ type: 'string',
935
+ nullable: true
936
+ }
937
+ },
938
+ additionalProperties: false
939
+ } as const;
940
+
941
+ export const $GenerateCaptchaOutput = {
942
+ type: 'object',
943
+ properties: {
944
+ Token: {
945
+ type: 'string',
946
+ nullable: true
947
+ },
948
+ Answer: {
949
+ type: 'string',
950
+ nullable: true
951
+ },
952
+ NoVisualChallenge: {
953
+ type: 'boolean'
954
+ }
955
+ },
956
+ additionalProperties: false
957
+ } as const;
958
+
959
+ export const $GenericParameterAttributes = {
960
+ enum: ['None', 'Covariant', 'Contravariant', 'VarianceMask', 'ReferenceTypeConstraint', 'NotNullableValueTypeConstraint', 'DefaultConstructorConstraint', 'SpecialConstraintMask'],
961
+ type: 'string'
962
+ } as const;
963
+
964
+ export const $GetBackupResultDto = {
965
+ type: 'object',
966
+ properties: {
967
+ Schedule: {
968
+ '$ref': '#/components/schemas/ScheduleDto'
969
+ },
970
+ Backup: {
971
+ '$ref': '#/components/schemas/BackupDto'
972
+ },
973
+ DisplayNames: {
974
+ type: 'object',
975
+ additionalProperties: {
976
+ type: 'string'
977
+ },
978
+ nullable: true
979
+ }
980
+ },
981
+ additionalProperties: false
982
+ } as const;
983
+
984
+ export const $GetDbPathDto = {
985
+ type: 'object',
986
+ properties: {
987
+ Exists: {
988
+ type: 'boolean'
989
+ },
990
+ Path: {
991
+ type: 'string',
992
+ nullable: true
993
+ }
994
+ },
995
+ additionalProperties: false
996
+ } as const;
997
+
998
+ export const $GetTaskStateDto = {
999
+ type: 'object',
1000
+ properties: {
1001
+ Status: {
1002
+ type: 'string',
1003
+ nullable: true
1004
+ },
1005
+ ID: {
1006
+ type: 'integer',
1007
+ format: 'int64'
1008
+ },
1009
+ ErrorMessage: {
1010
+ type: 'string',
1011
+ nullable: true
1012
+ },
1013
+ Exception: {
1014
+ type: 'string',
1015
+ nullable: true
1016
+ }
1017
+ },
1018
+ additionalProperties: false
1019
+ } as const;
1020
+
1021
+ export const $IBackup = {
1022
+ type: 'object',
1023
+ properties: {
1024
+ ID: {
1025
+ type: 'string',
1026
+ nullable: true
1027
+ },
1028
+ Name: {
1029
+ type: 'string',
1030
+ nullable: true
1031
+ },
1032
+ Description: {
1033
+ type: 'string',
1034
+ nullable: true
1035
+ },
1036
+ Tags: {
1037
+ type: 'array',
1038
+ items: {
1039
+ type: 'string'
1040
+ },
1041
+ nullable: true
1042
+ },
1043
+ TargetURL: {
1044
+ type: 'string',
1045
+ nullable: true
1046
+ },
1047
+ DBPath: {
1048
+ type: 'string',
1049
+ nullable: true,
1050
+ readOnly: true
1051
+ },
1052
+ Sources: {
1053
+ type: 'array',
1054
+ items: {
1055
+ type: 'string'
1056
+ },
1057
+ nullable: true
1058
+ },
1059
+ Settings: {
1060
+ type: 'array',
1061
+ items: {
1062
+ '$ref': '#/components/schemas/ISetting'
1063
+ },
1064
+ nullable: true
1065
+ },
1066
+ Filters: {
1067
+ type: 'array',
1068
+ items: {
1069
+ '$ref': '#/components/schemas/IFilter'
1070
+ },
1071
+ nullable: true
1072
+ },
1073
+ Metadata: {
1074
+ type: 'object',
1075
+ additionalProperties: {
1076
+ type: 'string'
1077
+ },
1078
+ nullable: true
1079
+ },
1080
+ IsTemporary: {
1081
+ type: 'boolean',
1082
+ readOnly: true
1083
+ }
1084
+ },
1085
+ additionalProperties: false
1086
+ } as const;
1087
+
1088
+ export const $ICommandLineArgument = {
1089
+ type: 'object',
1090
+ properties: {
1091
+ Aliases: {
1092
+ type: 'array',
1093
+ items: {
1094
+ type: 'string'
1095
+ },
1096
+ nullable: true
1097
+ },
1098
+ LongDescription: {
1099
+ type: 'string',
1100
+ nullable: true
1101
+ },
1102
+ Name: {
1103
+ type: 'string',
1104
+ nullable: true
1105
+ },
1106
+ ShortDescription: {
1107
+ type: 'string',
1108
+ nullable: true
1109
+ },
1110
+ Type: {
1111
+ '$ref': '#/components/schemas/ArgumentType'
1112
+ },
1113
+ ValidValues: {
1114
+ type: 'array',
1115
+ items: {
1116
+ type: 'string'
1117
+ },
1118
+ nullable: true
1119
+ },
1120
+ DefaultValue: {
1121
+ type: 'string',
1122
+ nullable: true
1123
+ },
1124
+ Typename: {
1125
+ type: 'string',
1126
+ nullable: true,
1127
+ readOnly: true
1128
+ },
1129
+ Deprecated: {
1130
+ type: 'boolean'
1131
+ },
1132
+ DeprecationMessage: {
1133
+ type: 'string',
1134
+ nullable: true
1135
+ }
1136
+ },
1137
+ additionalProperties: false
1138
+ } as const;
1139
+
1140
+ export const $ICustomAttributeProvider = {
1141
+ type: 'object',
1142
+ additionalProperties: false
1143
+ } as const;
1144
+
1145
+ export const $IDynamicModule = {
1146
+ type: 'object',
1147
+ properties: {
1148
+ Key: {
1149
+ type: 'string',
1150
+ nullable: true,
1151
+ readOnly: true
1152
+ },
1153
+ Description: {
1154
+ type: 'string',
1155
+ nullable: true,
1156
+ readOnly: true
1157
+ },
1158
+ DisplayName: {
1159
+ type: 'string',
1160
+ nullable: true,
1161
+ readOnly: true
1162
+ },
1163
+ Options: {
1164
+ type: 'array',
1165
+ items: {
1166
+ '$ref': '#/components/schemas/ICommandLineArgument'
1167
+ },
1168
+ nullable: true,
1169
+ readOnly: true
1170
+ }
1171
+ },
1172
+ additionalProperties: false
1173
+ } as const;
1174
+
1175
+ export const $IFilter = {
1176
+ type: 'object',
1177
+ properties: {
1178
+ Order: {
1179
+ type: 'integer',
1180
+ format: 'int64'
1181
+ },
1182
+ Include: {
1183
+ type: 'boolean'
1184
+ },
1185
+ Expression: {
1186
+ type: 'string',
1187
+ nullable: true
1188
+ }
1189
+ },
1190
+ additionalProperties: false
1191
+ } as const;
1192
+
1193
+ export const $IListResultFileset = {
1194
+ type: 'object',
1195
+ properties: {
1196
+ Version: {
1197
+ type: 'integer',
1198
+ format: 'int64',
1199
+ readOnly: true
1200
+ },
1201
+ IsFullBackup: {
1202
+ type: 'integer',
1203
+ format: 'int32',
1204
+ readOnly: true
1205
+ },
1206
+ Time: {
1207
+ type: 'string',
1208
+ format: 'date-time',
1209
+ readOnly: true
1210
+ },
1211
+ FileCount: {
1212
+ type: 'integer',
1213
+ format: 'int64',
1214
+ readOnly: true
1215
+ },
1216
+ FileSizes: {
1217
+ type: 'integer',
1218
+ format: 'int64',
1219
+ readOnly: true
1220
+ }
1221
+ },
1222
+ additionalProperties: false
1223
+ } as const;
1224
+
1225
+ export const $IProgressEventData = {
1226
+ type: 'object',
1227
+ properties: {
1228
+ BackupID: {
1229
+ type: 'string',
1230
+ nullable: true,
1231
+ readOnly: true
1232
+ },
1233
+ TaskID: {
1234
+ type: 'integer',
1235
+ format: 'int64',
1236
+ readOnly: true
1237
+ },
1238
+ BackendAction: {
1239
+ type: 'string',
1240
+ nullable: true,
1241
+ readOnly: true
1242
+ },
1243
+ BackendPath: {
1244
+ type: 'string',
1245
+ nullable: true,
1246
+ readOnly: true
1247
+ },
1248
+ BackendFileSize: {
1249
+ type: 'integer',
1250
+ format: 'int64',
1251
+ readOnly: true
1252
+ },
1253
+ BackendFileProgress: {
1254
+ type: 'integer',
1255
+ format: 'int64',
1256
+ readOnly: true
1257
+ },
1258
+ BackendSpeed: {
1259
+ type: 'integer',
1260
+ format: 'int64',
1261
+ readOnly: true
1262
+ },
1263
+ BackendIsBlocking: {
1264
+ type: 'boolean',
1265
+ readOnly: true
1266
+ },
1267
+ CurrentFilename: {
1268
+ type: 'string',
1269
+ nullable: true,
1270
+ readOnly: true
1271
+ },
1272
+ CurrentFilesize: {
1273
+ type: 'integer',
1274
+ format: 'int64',
1275
+ readOnly: true
1276
+ },
1277
+ CurrentFileoffset: {
1278
+ type: 'integer',
1279
+ format: 'int64',
1280
+ readOnly: true
1281
+ },
1282
+ CurrentFilecomplete: {
1283
+ type: 'boolean',
1284
+ readOnly: true
1285
+ },
1286
+ Phase: {
1287
+ type: 'string',
1288
+ nullable: true,
1289
+ readOnly: true
1290
+ },
1291
+ OverallProgress: {
1292
+ type: 'number',
1293
+ format: 'float',
1294
+ readOnly: true
1295
+ },
1296
+ ProcessedFileCount: {
1297
+ type: 'integer',
1298
+ format: 'int64',
1299
+ readOnly: true
1300
+ },
1301
+ ProcessedFileSize: {
1302
+ type: 'integer',
1303
+ format: 'int64',
1304
+ readOnly: true
1305
+ },
1306
+ TotalFileCount: {
1307
+ type: 'integer',
1308
+ format: 'int64',
1309
+ readOnly: true
1310
+ },
1311
+ TotalFileSize: {
1312
+ type: 'integer',
1313
+ format: 'int64',
1314
+ readOnly: true
1315
+ },
1316
+ StillCounting: {
1317
+ type: 'boolean',
1318
+ readOnly: true
1319
+ }
1320
+ },
1321
+ additionalProperties: false
1322
+ } as const;
1323
+
1324
+ export const $IRunnerData = {
1325
+ type: 'object',
1326
+ properties: {
1327
+ Backup: {
1328
+ '$ref': '#/components/schemas/IBackup'
1329
+ },
1330
+ ExtraOptions: {
1331
+ type: 'object',
1332
+ additionalProperties: {
1333
+ type: 'string'
1334
+ },
1335
+ nullable: true,
1336
+ readOnly: true
1337
+ },
1338
+ FilterStrings: {
1339
+ type: 'array',
1340
+ items: {
1341
+ type: 'string'
1342
+ },
1343
+ nullable: true,
1344
+ readOnly: true
1345
+ },
1346
+ TaskID: {
1347
+ type: 'integer',
1348
+ format: 'int64',
1349
+ readOnly: true
1350
+ },
1351
+ BackupID: {
1352
+ type: 'string',
1353
+ nullable: true,
1354
+ readOnly: true
1355
+ },
1356
+ Operation: {
1357
+ '$ref': '#/components/schemas/DuplicatiOperation'
1358
+ }
1359
+ },
1360
+ additionalProperties: false
1361
+ } as const;
1362
+
1363
+ export const $ISetting = {
1364
+ type: 'object',
1365
+ properties: {
1366
+ Filter: {
1367
+ type: 'string',
1368
+ nullable: true,
1369
+ readOnly: true
1370
+ },
1371
+ Name: {
1372
+ type: 'string',
1373
+ nullable: true
1374
+ },
1375
+ Value: {
1376
+ type: 'string',
1377
+ nullable: true
1378
+ },
1379
+ Argument: {
1380
+ '$ref': '#/components/schemas/ICommandLineArgument'
1381
+ }
1382
+ },
1383
+ additionalProperties: false
1384
+ } as const;
1385
+
1386
+ export const $IWebModule = {
1387
+ type: 'object',
1388
+ properties: {
1389
+ Key: {
1390
+ type: 'string',
1391
+ nullable: true,
1392
+ readOnly: true
1393
+ },
1394
+ DisplayName: {
1395
+ type: 'string',
1396
+ nullable: true,
1397
+ readOnly: true
1398
+ },
1399
+ Description: {
1400
+ type: 'string',
1401
+ nullable: true,
1402
+ readOnly: true
1403
+ },
1404
+ SupportedCommands: {
1405
+ type: 'array',
1406
+ items: {
1407
+ '$ref': '#/components/schemas/ICommandLineArgument'
1408
+ },
1409
+ nullable: true,
1410
+ readOnly: true
1411
+ }
1412
+ },
1413
+ additionalProperties: false
1414
+ } as const;
1415
+
1416
+ export const $ImportBackupInputDto = {
1417
+ type: 'object',
1418
+ properties: {
1419
+ config: {
1420
+ type: 'string',
1421
+ nullable: true
1422
+ },
1423
+ cmdline: {
1424
+ type: 'boolean',
1425
+ nullable: true
1426
+ },
1427
+ import_metadata: {
1428
+ type: 'boolean',
1429
+ nullable: true
1430
+ },
1431
+ direct: {
1432
+ type: 'boolean',
1433
+ nullable: true
1434
+ },
1435
+ passphrase: {
1436
+ type: 'string',
1437
+ nullable: true
1438
+ }
1439
+ },
1440
+ additionalProperties: false
1441
+ } as const;
1442
+
1443
+ export const $ImportBackupOutputDto = {
1444
+ type: 'object',
1445
+ properties: {
1446
+ Id: {
1447
+ type: 'string',
1448
+ nullable: true
1449
+ },
1450
+ data: {
1451
+ nullable: true
1452
+ }
1453
+ },
1454
+ additionalProperties: false
1455
+ } as const;
1456
+
1457
+ export const $Int64StringTuple = {
1458
+ type: 'object',
1459
+ properties: {
1460
+ Item1: {
1461
+ type: 'integer',
1462
+ format: 'int64'
1463
+ },
1464
+ Item2: {
1465
+ type: 'string',
1466
+ nullable: true
1467
+ }
1468
+ },
1469
+ additionalProperties: false
1470
+ } as const;
1471
+
1472
+ export const $IntPtr = {
1473
+ type: 'object',
1474
+ additionalProperties: false
1475
+ } as const;
1476
+
1477
+ export const $IsBackupActiveDto = {
1478
+ type: 'object',
1479
+ properties: {
1480
+ Status: {
1481
+ type: 'string',
1482
+ nullable: true
1483
+ },
1484
+ Active: {
1485
+ type: 'boolean'
1486
+ }
1487
+ },
1488
+ additionalProperties: false
1489
+ } as const;
1490
+
1491
+ export const $IsDbUsedElsewhereDto = {
1492
+ type: 'object',
1493
+ properties: {
1494
+ inuse: {
1495
+ type: 'boolean'
1496
+ }
1497
+ },
1498
+ additionalProperties: false
1499
+ } as const;
1500
+
1501
+ export const $IssueSigninTokenInputDto = {
1502
+ type: 'object',
1503
+ properties: {
1504
+ Password: {
1505
+ type: 'string',
1506
+ nullable: true
1507
+ }
1508
+ },
1509
+ additionalProperties: false
1510
+ } as const;
1511
+
1512
+ export const $LayoutKind = {
1513
+ enum: ['Sequential', 'Explicit', 'Auto'],
1514
+ type: 'string'
1515
+ } as const;
1516
+
1517
+ export const $LicenseDto = {
1518
+ type: 'object',
1519
+ properties: {
1520
+ Title: {
1521
+ type: 'string',
1522
+ nullable: true
1523
+ },
1524
+ Url: {
1525
+ type: 'string',
1526
+ nullable: true
1527
+ },
1528
+ License: {
1529
+ type: 'string',
1530
+ nullable: true
1531
+ },
1532
+ Jsondata: {
1533
+ type: 'string',
1534
+ nullable: true
1535
+ }
1536
+ },
1537
+ additionalProperties: false
1538
+ } as const;
1539
+
1540
+ export const $LiveControlState = {
1541
+ enum: ['Running', 'Paused'],
1542
+ type: 'string'
1543
+ } as const;
1544
+
1545
+ export const $LocaleDto = {
1546
+ type: 'object',
1547
+ properties: {
1548
+ Code: {
1549
+ type: 'string',
1550
+ nullable: true
1551
+ },
1552
+ EnglishName: {
1553
+ type: 'string',
1554
+ nullable: true
1555
+ },
1556
+ DisplayName: {
1557
+ type: 'string',
1558
+ nullable: true
1559
+ }
1560
+ },
1561
+ additionalProperties: false
1562
+ } as const;
1563
+
1564
+ export const $LogEntry = {
1565
+ type: 'object',
1566
+ properties: {
1567
+ When: {
1568
+ type: 'string',
1569
+ format: 'date-time'
1570
+ },
1571
+ ID: {
1572
+ type: 'integer',
1573
+ format: 'int64'
1574
+ },
1575
+ Message: {
1576
+ type: 'string',
1577
+ nullable: true
1578
+ },
1579
+ Tag: {
1580
+ type: 'string',
1581
+ nullable: true
1582
+ },
1583
+ MessageID: {
1584
+ type: 'string',
1585
+ nullable: true
1586
+ },
1587
+ ExceptionID: {
1588
+ type: 'string',
1589
+ nullable: true
1590
+ },
1591
+ Type: {
1592
+ '$ref': '#/components/schemas/LogMessageType'
1593
+ },
1594
+ Exception: {
1595
+ '$ref': '#/components/schemas/Exception'
1596
+ },
1597
+ BackupID: {
1598
+ type: 'string',
1599
+ nullable: true
1600
+ },
1601
+ TaskID: {
1602
+ type: 'string',
1603
+ nullable: true
1604
+ }
1605
+ },
1606
+ additionalProperties: false
1607
+ } as const;
1608
+
1609
+ export const $LogMessageType = {
1610
+ enum: ['ExplicitOnly', 'Profiling', 'Verbose', 'Retry', 'Information', 'DryRun', 'Warning', 'Error'],
1611
+ type: 'string'
1612
+ } as const;
1613
+
1614
+ export const $LoginInputDto = {
1615
+ type: 'object',
1616
+ properties: {
1617
+ Password: {
1618
+ type: 'string',
1619
+ nullable: true
1620
+ },
1621
+ RememberMe: {
1622
+ type: 'boolean',
1623
+ nullable: true
1624
+ }
1625
+ },
1626
+ additionalProperties: false
1627
+ } as const;
1628
+
1629
+ export const $MemberInfo = {
1630
+ type: 'object',
1631
+ properties: {
1632
+ MemberType: {
1633
+ '$ref': '#/components/schemas/MemberTypes'
1634
+ },
1635
+ Name: {
1636
+ type: 'string',
1637
+ nullable: true,
1638
+ readOnly: true
1639
+ },
1640
+ DeclaringType: {
1641
+ '$ref': '#/components/schemas/Type'
1642
+ },
1643
+ ReflectedType: {
1644
+ '$ref': '#/components/schemas/Type'
1645
+ },
1646
+ Module: {
1647
+ '$ref': '#/components/schemas/Module'
1648
+ },
1649
+ CustomAttributes: {
1650
+ type: 'array',
1651
+ items: {
1652
+ '$ref': '#/components/schemas/CustomAttributeData'
1653
+ },
1654
+ nullable: true,
1655
+ readOnly: true
1656
+ },
1657
+ IsCollectible: {
1658
+ type: 'boolean',
1659
+ readOnly: true
1660
+ },
1661
+ MetadataToken: {
1662
+ type: 'integer',
1663
+ format: 'int32',
1664
+ readOnly: true
1665
+ }
1666
+ },
1667
+ additionalProperties: false
1668
+ } as const;
1669
+
1670
+ export const $MemberTypes = {
1671
+ enum: ['Constructor', 'Event', 'Field', 'Method', 'Property', 'TypeInfo', 'Custom', 'NestedType', 'All'],
1672
+ type: 'string'
1673
+ } as const;
1674
+
1675
+ export const $MethodAttributes = {
1676
+ enum: ['PrivateScope', 'Private', 'FamANDAssem', 'Assembly', 'Family', 'FamORAssem', 'Public', 'MemberAccessMask', 'UnmanagedExport', 'Static', 'Final', 'Virtual', 'HideBySig', 'NewSlot', 'CheckAccessOnOverride', 'Abstract', 'SpecialName', 'RTSpecialName', 'PinvokeImpl', 'HasSecurity', 'RequireSecObject', 'ReservedMask'],
1677
+ type: 'string'
1678
+ } as const;
1679
+
1680
+ export const $MethodBase = {
1681
+ type: 'object',
1682
+ properties: {
1683
+ MemberType: {
1684
+ '$ref': '#/components/schemas/MemberTypes'
1685
+ },
1686
+ Name: {
1687
+ type: 'string',
1688
+ nullable: true,
1689
+ readOnly: true
1690
+ },
1691
+ DeclaringType: {
1692
+ '$ref': '#/components/schemas/Type'
1693
+ },
1694
+ ReflectedType: {
1695
+ '$ref': '#/components/schemas/Type'
1696
+ },
1697
+ Module: {
1698
+ '$ref': '#/components/schemas/Module'
1699
+ },
1700
+ CustomAttributes: {
1701
+ type: 'array',
1702
+ items: {
1703
+ '$ref': '#/components/schemas/CustomAttributeData'
1704
+ },
1705
+ nullable: true,
1706
+ readOnly: true
1707
+ },
1708
+ IsCollectible: {
1709
+ type: 'boolean',
1710
+ readOnly: true
1711
+ },
1712
+ MetadataToken: {
1713
+ type: 'integer',
1714
+ format: 'int32',
1715
+ readOnly: true
1716
+ },
1717
+ Attributes: {
1718
+ '$ref': '#/components/schemas/MethodAttributes'
1719
+ },
1720
+ MethodImplementationFlags: {
1721
+ '$ref': '#/components/schemas/MethodImplAttributes'
1722
+ },
1723
+ CallingConvention: {
1724
+ '$ref': '#/components/schemas/CallingConventions'
1725
+ },
1726
+ IsAbstract: {
1727
+ type: 'boolean',
1728
+ readOnly: true
1729
+ },
1730
+ IsConstructor: {
1731
+ type: 'boolean',
1732
+ readOnly: true
1733
+ },
1734
+ IsFinal: {
1735
+ type: 'boolean',
1736
+ readOnly: true
1737
+ },
1738
+ IsHideBySig: {
1739
+ type: 'boolean',
1740
+ readOnly: true
1741
+ },
1742
+ IsSpecialName: {
1743
+ type: 'boolean',
1744
+ readOnly: true
1745
+ },
1746
+ IsStatic: {
1747
+ type: 'boolean',
1748
+ readOnly: true
1749
+ },
1750
+ IsVirtual: {
1751
+ type: 'boolean',
1752
+ readOnly: true
1753
+ },
1754
+ IsAssembly: {
1755
+ type: 'boolean',
1756
+ readOnly: true
1757
+ },
1758
+ IsFamily: {
1759
+ type: 'boolean',
1760
+ readOnly: true
1761
+ },
1762
+ IsFamilyAndAssembly: {
1763
+ type: 'boolean',
1764
+ readOnly: true
1765
+ },
1766
+ IsFamilyOrAssembly: {
1767
+ type: 'boolean',
1768
+ readOnly: true
1769
+ },
1770
+ IsPrivate: {
1771
+ type: 'boolean',
1772
+ readOnly: true
1773
+ },
1774
+ IsPublic: {
1775
+ type: 'boolean',
1776
+ readOnly: true
1777
+ },
1778
+ IsConstructedGenericMethod: {
1779
+ type: 'boolean',
1780
+ readOnly: true
1781
+ },
1782
+ IsGenericMethod: {
1783
+ type: 'boolean',
1784
+ readOnly: true
1785
+ },
1786
+ IsGenericMethodDefinition: {
1787
+ type: 'boolean',
1788
+ readOnly: true
1789
+ },
1790
+ ContainsGenericParameters: {
1791
+ type: 'boolean',
1792
+ readOnly: true
1793
+ },
1794
+ MethodHandle: {
1795
+ '$ref': '#/components/schemas/RuntimeMethodHandle'
1796
+ },
1797
+ IsSecurityCritical: {
1798
+ type: 'boolean',
1799
+ readOnly: true
1800
+ },
1801
+ IsSecuritySafeCritical: {
1802
+ type: 'boolean',
1803
+ readOnly: true
1804
+ },
1805
+ IsSecurityTransparent: {
1806
+ type: 'boolean',
1807
+ readOnly: true
1808
+ }
1809
+ },
1810
+ additionalProperties: false
1811
+ } as const;
1812
+
1813
+ export const $MethodImplAttributes = {
1814
+ enum: ['IL', 'Native', 'OPTIL', 'CodeTypeMask', 'ManagedMask', 'NoInlining', 'ForwardRef', 'Synchronized', 'NoOptimization', 'PreserveSig', 'AggressiveInlining', 'AggressiveOptimization', 'InternalCall', 'MaxMethodImplVal'],
1815
+ type: 'string'
1816
+ } as const;
1817
+
1818
+ export const $MethodInfo = {
1819
+ type: 'object',
1820
+ properties: {
1821
+ Name: {
1822
+ type: 'string',
1823
+ nullable: true,
1824
+ readOnly: true
1825
+ },
1826
+ DeclaringType: {
1827
+ '$ref': '#/components/schemas/Type'
1828
+ },
1829
+ ReflectedType: {
1830
+ '$ref': '#/components/schemas/Type'
1831
+ },
1832
+ Module: {
1833
+ '$ref': '#/components/schemas/Module'
1834
+ },
1835
+ CustomAttributes: {
1836
+ type: 'array',
1837
+ items: {
1838
+ '$ref': '#/components/schemas/CustomAttributeData'
1839
+ },
1840
+ nullable: true,
1841
+ readOnly: true
1842
+ },
1843
+ IsCollectible: {
1844
+ type: 'boolean',
1845
+ readOnly: true
1846
+ },
1847
+ MetadataToken: {
1848
+ type: 'integer',
1849
+ format: 'int32',
1850
+ readOnly: true
1851
+ },
1852
+ Attributes: {
1853
+ '$ref': '#/components/schemas/MethodAttributes'
1854
+ },
1855
+ MethodImplementationFlags: {
1856
+ '$ref': '#/components/schemas/MethodImplAttributes'
1857
+ },
1858
+ CallingConvention: {
1859
+ '$ref': '#/components/schemas/CallingConventions'
1860
+ },
1861
+ IsAbstract: {
1862
+ type: 'boolean',
1863
+ readOnly: true
1864
+ },
1865
+ IsConstructor: {
1866
+ type: 'boolean',
1867
+ readOnly: true
1868
+ },
1869
+ IsFinal: {
1870
+ type: 'boolean',
1871
+ readOnly: true
1872
+ },
1873
+ IsHideBySig: {
1874
+ type: 'boolean',
1875
+ readOnly: true
1876
+ },
1877
+ IsSpecialName: {
1878
+ type: 'boolean',
1879
+ readOnly: true
1880
+ },
1881
+ IsStatic: {
1882
+ type: 'boolean',
1883
+ readOnly: true
1884
+ },
1885
+ IsVirtual: {
1886
+ type: 'boolean',
1887
+ readOnly: true
1888
+ },
1889
+ IsAssembly: {
1890
+ type: 'boolean',
1891
+ readOnly: true
1892
+ },
1893
+ IsFamily: {
1894
+ type: 'boolean',
1895
+ readOnly: true
1896
+ },
1897
+ IsFamilyAndAssembly: {
1898
+ type: 'boolean',
1899
+ readOnly: true
1900
+ },
1901
+ IsFamilyOrAssembly: {
1902
+ type: 'boolean',
1903
+ readOnly: true
1904
+ },
1905
+ IsPrivate: {
1906
+ type: 'boolean',
1907
+ readOnly: true
1908
+ },
1909
+ IsPublic: {
1910
+ type: 'boolean',
1911
+ readOnly: true
1912
+ },
1913
+ IsConstructedGenericMethod: {
1914
+ type: 'boolean',
1915
+ readOnly: true
1916
+ },
1917
+ IsGenericMethod: {
1918
+ type: 'boolean',
1919
+ readOnly: true
1920
+ },
1921
+ IsGenericMethodDefinition: {
1922
+ type: 'boolean',
1923
+ readOnly: true
1924
+ },
1925
+ ContainsGenericParameters: {
1926
+ type: 'boolean',
1927
+ readOnly: true
1928
+ },
1929
+ MethodHandle: {
1930
+ '$ref': '#/components/schemas/RuntimeMethodHandle'
1931
+ },
1932
+ IsSecurityCritical: {
1933
+ type: 'boolean',
1934
+ readOnly: true
1935
+ },
1936
+ IsSecuritySafeCritical: {
1937
+ type: 'boolean',
1938
+ readOnly: true
1939
+ },
1940
+ IsSecurityTransparent: {
1941
+ type: 'boolean',
1942
+ readOnly: true
1943
+ },
1944
+ MemberType: {
1945
+ '$ref': '#/components/schemas/MemberTypes'
1946
+ },
1947
+ ReturnParameter: {
1948
+ '$ref': '#/components/schemas/ParameterInfo'
1949
+ },
1950
+ ReturnType: {
1951
+ '$ref': '#/components/schemas/Type'
1952
+ },
1953
+ ReturnTypeCustomAttributes: {
1954
+ '$ref': '#/components/schemas/ICustomAttributeProvider'
1955
+ }
1956
+ },
1957
+ additionalProperties: false
1958
+ } as const;
1959
+
1960
+ export const $Module = {
1961
+ type: 'object',
1962
+ properties: {
1963
+ Assembly: {
1964
+ '$ref': '#/components/schemas/Assembly'
1965
+ },
1966
+ FullyQualifiedName: {
1967
+ type: 'string',
1968
+ nullable: true,
1969
+ readOnly: true
1970
+ },
1971
+ Name: {
1972
+ type: 'string',
1973
+ nullable: true,
1974
+ readOnly: true
1975
+ },
1976
+ MDStreamVersion: {
1977
+ type: 'integer',
1978
+ format: 'int32',
1979
+ readOnly: true
1980
+ },
1981
+ ModuleVersionId: {
1982
+ type: 'string',
1983
+ format: 'uuid',
1984
+ readOnly: true
1985
+ },
1986
+ ScopeName: {
1987
+ type: 'string',
1988
+ nullable: true,
1989
+ readOnly: true
1990
+ },
1991
+ ModuleHandle: {
1992
+ '$ref': '#/components/schemas/ModuleHandle'
1993
+ },
1994
+ CustomAttributes: {
1995
+ type: 'array',
1996
+ items: {
1997
+ '$ref': '#/components/schemas/CustomAttributeData'
1998
+ },
1999
+ nullable: true,
2000
+ readOnly: true
2001
+ },
2002
+ MetadataToken: {
2003
+ type: 'integer',
2004
+ format: 'int32',
2005
+ readOnly: true
2006
+ }
2007
+ },
2008
+ additionalProperties: false
2009
+ } as const;
2010
+
2011
+ export const $ModuleHandle = {
2012
+ type: 'object',
2013
+ properties: {
2014
+ MDStreamVersion: {
2015
+ type: 'integer',
2016
+ format: 'int32',
2017
+ readOnly: true
2018
+ }
2019
+ },
2020
+ additionalProperties: false
2021
+ } as const;
2022
+
2023
+ export const $NotificationDto = {
2024
+ type: 'object',
2025
+ properties: {
2026
+ ID: {
2027
+ type: 'integer',
2028
+ format: 'int64'
2029
+ },
2030
+ Type: {
2031
+ '$ref': '#/components/schemas/NotificationType'
2032
+ },
2033
+ Title: {
2034
+ type: 'string',
2035
+ nullable: true
2036
+ },
2037
+ Message: {
2038
+ type: 'string',
2039
+ nullable: true
2040
+ },
2041
+ Exception: {
2042
+ type: 'string',
2043
+ nullable: true
2044
+ },
2045
+ BackupID: {
2046
+ type: 'string',
2047
+ nullable: true
2048
+ },
2049
+ Action: {
2050
+ type: 'string',
2051
+ nullable: true
2052
+ },
2053
+ Timestamp: {
2054
+ type: 'string',
2055
+ format: 'date-time'
2056
+ },
2057
+ LogEntryID: {
2058
+ type: 'string',
2059
+ nullable: true
2060
+ },
2061
+ MessageID: {
2062
+ type: 'string',
2063
+ nullable: true
2064
+ },
2065
+ MessageLogTag: {
2066
+ type: 'string',
2067
+ nullable: true
2068
+ }
2069
+ },
2070
+ additionalProperties: false
2071
+ } as const;
2072
+
2073
+ export const $NotificationType = {
2074
+ enum: ['Information', 'Warning', 'Error'],
2075
+ type: 'string'
2076
+ } as const;
2077
+
2078
+ export const $ParameterAttributes = {
2079
+ enum: ['None', 'In', 'Out', 'Lcid', 'Retval', 'Optional', 'HasDefault', 'HasFieldMarshal', 'Reserved3', 'Reserved4', 'ReservedMask'],
2080
+ type: 'string'
2081
+ } as const;
2082
+
2083
+ export const $ParameterInfo = {
2084
+ type: 'object',
2085
+ properties: {
2086
+ Attributes: {
2087
+ '$ref': '#/components/schemas/ParameterAttributes'
2088
+ },
2089
+ Member: {
2090
+ '$ref': '#/components/schemas/MemberInfo'
2091
+ },
2092
+ Name: {
2093
+ type: 'string',
2094
+ nullable: true,
2095
+ readOnly: true
2096
+ },
2097
+ ParameterType: {
2098
+ '$ref': '#/components/schemas/Type'
2099
+ },
2100
+ Position: {
2101
+ type: 'integer',
2102
+ format: 'int32',
2103
+ readOnly: true
2104
+ },
2105
+ IsIn: {
2106
+ type: 'boolean',
2107
+ readOnly: true
2108
+ },
2109
+ IsLcid: {
2110
+ type: 'boolean',
2111
+ readOnly: true
2112
+ },
2113
+ IsOptional: {
2114
+ type: 'boolean',
2115
+ readOnly: true
2116
+ },
2117
+ IsOut: {
2118
+ type: 'boolean',
2119
+ readOnly: true
2120
+ },
2121
+ IsRetval: {
2122
+ type: 'boolean',
2123
+ readOnly: true
2124
+ },
2125
+ DefaultValue: {
2126
+ nullable: true,
2127
+ readOnly: true
2128
+ },
2129
+ RawDefaultValue: {
2130
+ nullable: true,
2131
+ readOnly: true
2132
+ },
2133
+ HasDefaultValue: {
2134
+ type: 'boolean',
2135
+ readOnly: true
2136
+ },
2137
+ CustomAttributes: {
2138
+ type: 'array',
2139
+ items: {
2140
+ '$ref': '#/components/schemas/CustomAttributeData'
2141
+ },
2142
+ nullable: true,
2143
+ readOnly: true
2144
+ },
2145
+ MetadataToken: {
2146
+ type: 'integer',
2147
+ format: 'int32',
2148
+ readOnly: true
2149
+ }
2150
+ },
2151
+ additionalProperties: false
2152
+ } as const;
2153
+
2154
+ export const $PropertyAttributes = {
2155
+ enum: ['None', 'SpecialName', 'RTSpecialName', 'HasDefault', 'Reserved2', 'Reserved3', 'Reserved4', 'ReservedMask'],
2156
+ type: 'string'
2157
+ } as const;
2158
+
2159
+ export const $PropertyInfo = {
2160
+ type: 'object',
2161
+ properties: {
2162
+ Name: {
2163
+ type: 'string',
2164
+ nullable: true,
2165
+ readOnly: true
2166
+ },
2167
+ DeclaringType: {
2168
+ '$ref': '#/components/schemas/Type'
2169
+ },
2170
+ ReflectedType: {
2171
+ '$ref': '#/components/schemas/Type'
2172
+ },
2173
+ Module: {
2174
+ '$ref': '#/components/schemas/Module'
2175
+ },
2176
+ CustomAttributes: {
2177
+ type: 'array',
2178
+ items: {
2179
+ '$ref': '#/components/schemas/CustomAttributeData'
2180
+ },
2181
+ nullable: true,
2182
+ readOnly: true
2183
+ },
2184
+ IsCollectible: {
2185
+ type: 'boolean',
2186
+ readOnly: true
2187
+ },
2188
+ MetadataToken: {
2189
+ type: 'integer',
2190
+ format: 'int32',
2191
+ readOnly: true
2192
+ },
2193
+ MemberType: {
2194
+ '$ref': '#/components/schemas/MemberTypes'
2195
+ },
2196
+ PropertyType: {
2197
+ '$ref': '#/components/schemas/Type'
2198
+ },
2199
+ Attributes: {
2200
+ '$ref': '#/components/schemas/PropertyAttributes'
2201
+ },
2202
+ IsSpecialName: {
2203
+ type: 'boolean',
2204
+ readOnly: true
2205
+ },
2206
+ CanRead: {
2207
+ type: 'boolean',
2208
+ readOnly: true
2209
+ },
2210
+ CanWrite: {
2211
+ type: 'boolean',
2212
+ readOnly: true
2213
+ },
2214
+ GetMethod: {
2215
+ '$ref': '#/components/schemas/MethodInfo'
2216
+ },
2217
+ SetMethod: {
2218
+ '$ref': '#/components/schemas/MethodInfo'
2219
+ }
2220
+ },
2221
+ additionalProperties: false
2222
+ } as const;
2223
+
2224
+ export const $RemoteControlStatusOutput = {
2225
+ type: 'object',
2226
+ properties: {
2227
+ CanEnable: {
2228
+ type: 'boolean'
2229
+ },
2230
+ IsEnabled: {
2231
+ type: 'boolean'
2232
+ },
2233
+ IsConnected: {
2234
+ type: 'boolean'
2235
+ },
2236
+ IsRegistering: {
2237
+ type: 'boolean'
2238
+ },
2239
+ IsRegisteringFaulted: {
2240
+ type: 'boolean'
2241
+ },
2242
+ IsRegisteringCompleted: {
2243
+ type: 'boolean'
2244
+ },
2245
+ RegistrationUrl: {
2246
+ type: 'string',
2247
+ nullable: true
2248
+ }
2249
+ },
2250
+ additionalProperties: false
2251
+ } as const;
2252
+
2253
+ export const $RemoteOperationInput = {
2254
+ type: 'object',
2255
+ properties: {
2256
+ path: {
2257
+ type: 'string',
2258
+ nullable: true
2259
+ }
2260
+ },
2261
+ additionalProperties: false
2262
+ } as const;
2263
+
2264
+ export const $RepairInputDto = {
2265
+ type: 'object',
2266
+ properties: {
2267
+ only_paths: {
2268
+ type: 'boolean',
2269
+ nullable: true
2270
+ },
2271
+ time: {
2272
+ type: 'string',
2273
+ nullable: true
2274
+ },
2275
+ version: {
2276
+ type: 'string',
2277
+ nullable: true
2278
+ },
2279
+ paths: {
2280
+ type: 'array',
2281
+ items: {
2282
+ type: 'string'
2283
+ },
2284
+ nullable: true
2285
+ }
2286
+ },
2287
+ additionalProperties: false
2288
+ } as const;
2289
+
2290
+ export const $RestoreInputDto = {
2291
+ type: 'object',
2292
+ properties: {
2293
+ paths: {
2294
+ type: 'array',
2295
+ items: {
2296
+ type: 'string'
2297
+ },
2298
+ nullable: true
2299
+ },
2300
+ passphrase: {
2301
+ type: 'string',
2302
+ nullable: true
2303
+ },
2304
+ time: {
2305
+ type: 'string',
2306
+ nullable: true
2307
+ },
2308
+ restore_path: {
2309
+ type: 'string',
2310
+ nullable: true
2311
+ },
2312
+ overwrite: {
2313
+ type: 'boolean',
2314
+ nullable: true
2315
+ },
2316
+ permissions: {
2317
+ type: 'boolean',
2318
+ nullable: true
2319
+ },
2320
+ skip_metadata: {
2321
+ type: 'boolean',
2322
+ nullable: true
2323
+ }
2324
+ },
2325
+ additionalProperties: false
2326
+ } as const;
2327
+
2328
+ export const $RuntimeFieldHandle = {
2329
+ type: 'object',
2330
+ properties: {
2331
+ Value: {
2332
+ '$ref': '#/components/schemas/IntPtr'
2333
+ }
2334
+ },
2335
+ additionalProperties: false
2336
+ } as const;
2337
+
2338
+ export const $RuntimeMethodHandle = {
2339
+ type: 'object',
2340
+ properties: {
2341
+ Value: {
2342
+ '$ref': '#/components/schemas/IntPtr'
2343
+ }
2344
+ },
2345
+ additionalProperties: false
2346
+ } as const;
2347
+
2348
+ export const $RuntimeTypeHandle = {
2349
+ type: 'object',
2350
+ properties: {
2351
+ Value: {
2352
+ '$ref': '#/components/schemas/IntPtr'
2353
+ }
2354
+ },
2355
+ additionalProperties: false
2356
+ } as const;
2357
+
2358
+ export const $ScheduleDto = {
2359
+ type: 'object',
2360
+ properties: {
2361
+ ID: {
2362
+ type: 'integer',
2363
+ format: 'int64'
2364
+ },
2365
+ Tags: {
2366
+ type: 'array',
2367
+ items: {
2368
+ type: 'string'
2369
+ },
2370
+ nullable: true
2371
+ },
2372
+ Time: {
2373
+ type: 'string',
2374
+ format: 'date-time'
2375
+ },
2376
+ Repeat: {
2377
+ type: 'string',
2378
+ nullable: true
2379
+ },
2380
+ LastRun: {
2381
+ type: 'string',
2382
+ format: 'date-time'
2383
+ },
2384
+ Rule: {
2385
+ type: 'string',
2386
+ nullable: true
2387
+ },
2388
+ AllowedDays: {
2389
+ type: 'array',
2390
+ items: {
2391
+ '$ref': '#/components/schemas/DayOfWeek'
2392
+ },
2393
+ nullable: true
2394
+ }
2395
+ },
2396
+ additionalProperties: false
2397
+ } as const;
2398
+
2399
+ export const $ScheduleInputDto = {
2400
+ type: 'object',
2401
+ properties: {
2402
+ ID: {
2403
+ type: 'integer',
2404
+ format: 'int64'
2405
+ },
2406
+ Tags: {
2407
+ type: 'array',
2408
+ items: {
2409
+ type: 'string'
2410
+ },
2411
+ nullable: true
2412
+ },
2413
+ Time: {
2414
+ type: 'string',
2415
+ format: 'date-time',
2416
+ nullable: true
2417
+ },
2418
+ Repeat: {
2419
+ type: 'string',
2420
+ nullable: true
2421
+ },
2422
+ LastRun: {
2423
+ type: 'string',
2424
+ format: 'date-time',
2425
+ nullable: true
2426
+ },
2427
+ Rule: {
2428
+ type: 'string',
2429
+ nullable: true
2430
+ },
2431
+ AllowedDays: {
2432
+ type: 'array',
2433
+ items: {
2434
+ '$ref': '#/components/schemas/DayOfWeek'
2435
+ },
2436
+ nullable: true
2437
+ }
2438
+ },
2439
+ additionalProperties: false
2440
+ } as const;
2441
+
2442
+ export const $SecurityRuleSet = {
2443
+ enum: ['None', 'Level1', 'Level2'],
2444
+ type: 'string'
2445
+ } as const;
2446
+
2447
+ export const $ServerStatusDto = {
2448
+ type: 'object',
2449
+ properties: {
2450
+ ActiveTask: {
2451
+ '$ref': '#/components/schemas/Int64StringTuple'
2452
+ },
2453
+ ProgramState: {
2454
+ '$ref': '#/components/schemas/LiveControlState'
2455
+ },
2456
+ SchedulerQueueIds: {
2457
+ type: 'array',
2458
+ items: {
2459
+ '$ref': '#/components/schemas/Int64StringTuple'
2460
+ },
2461
+ nullable: true
2462
+ },
2463
+ ProposedSchedule: {
2464
+ type: 'array',
2465
+ items: {
2466
+ '$ref': '#/components/schemas/StringDateTimeTuple'
2467
+ },
2468
+ nullable: true
2469
+ },
2470
+ HasWarning: {
2471
+ type: 'boolean'
2472
+ },
2473
+ HasError: {
2474
+ type: 'boolean'
2475
+ },
2476
+ SuggestedStatusIcon: {
2477
+ '$ref': '#/components/schemas/SuggestedStatusIcon'
2478
+ },
2479
+ EstimatedPauseEnd: {
2480
+ type: 'string',
2481
+ format: 'date-time'
2482
+ },
2483
+ LastEventID: {
2484
+ type: 'integer',
2485
+ format: 'int64'
2486
+ },
2487
+ LastDataUpdateID: {
2488
+ type: 'integer',
2489
+ format: 'int64'
2490
+ },
2491
+ LastNotificationUpdateID: {
2492
+ type: 'integer',
2493
+ format: 'int64'
2494
+ },
2495
+ UpdatedVersion: {
2496
+ type: 'string',
2497
+ nullable: true
2498
+ },
2499
+ UpdaterState: {
2500
+ '$ref': '#/components/schemas/UpdatePollerStates'
2501
+ },
2502
+ UpdateDownloadLink: {
2503
+ type: 'string',
2504
+ nullable: true
2505
+ },
2506
+ UpdateDownloadProgress: {
2507
+ type: 'number',
2508
+ format: 'double'
2509
+ }
2510
+ },
2511
+ additionalProperties: false
2512
+ } as const;
2513
+
2514
+ export const $SettingDto = {
2515
+ type: 'object',
2516
+ properties: {
2517
+ Filter: {
2518
+ type: 'string',
2519
+ nullable: true
2520
+ },
2521
+ Name: {
2522
+ type: 'string',
2523
+ nullable: true
2524
+ },
2525
+ Value: {
2526
+ type: 'string',
2527
+ nullable: true
2528
+ },
2529
+ Argument: {
2530
+ '$ref': '#/components/schemas/ICommandLineArgument'
2531
+ }
2532
+ },
2533
+ additionalProperties: false
2534
+ } as const;
2535
+
2536
+ export const $SettingInputDto = {
2537
+ type: 'object',
2538
+ properties: {
2539
+ Filter: {
2540
+ type: 'string',
2541
+ nullable: true
2542
+ },
2543
+ Name: {
2544
+ type: 'string',
2545
+ nullable: true
2546
+ },
2547
+ Value: {
2548
+ type: 'string',
2549
+ nullable: true
2550
+ }
2551
+ },
2552
+ additionalProperties: false
2553
+ } as const;
2554
+
2555
+ export const $SigninInputDto = {
2556
+ type: 'object',
2557
+ properties: {
2558
+ SigninToken: {
2559
+ type: 'string',
2560
+ nullable: true
2561
+ },
2562
+ RememberMe: {
2563
+ type: 'boolean',
2564
+ nullable: true
2565
+ }
2566
+ },
2567
+ additionalProperties: false
2568
+ } as const;
2569
+
2570
+ export const $SigninTokenOutputDto = {
2571
+ type: 'object',
2572
+ properties: {
2573
+ Token: {
2574
+ type: 'string',
2575
+ nullable: true
2576
+ }
2577
+ },
2578
+ additionalProperties: false
2579
+ } as const;
2580
+
2581
+ export const $SingleOperationTokenOutputDto = {
2582
+ type: 'object',
2583
+ properties: {
2584
+ Token: {
2585
+ type: 'string',
2586
+ nullable: true
2587
+ }
2588
+ },
2589
+ additionalProperties: false
2590
+ } as const;
2591
+
2592
+ export const $SolveCaptchaInputDto = {
2593
+ type: 'object',
2594
+ properties: {
2595
+ target: {
2596
+ type: 'string',
2597
+ nullable: true
2598
+ },
2599
+ answer: {
2600
+ type: 'string',
2601
+ nullable: true
2602
+ }
2603
+ },
2604
+ additionalProperties: false
2605
+ } as const;
2606
+
2607
+ export const $SpecialFolderDto = {
2608
+ type: 'object',
2609
+ properties: {
2610
+ ID: {
2611
+ type: 'string',
2612
+ nullable: true
2613
+ },
2614
+ Path: {
2615
+ type: 'string',
2616
+ nullable: true
2617
+ }
2618
+ },
2619
+ additionalProperties: false
2620
+ } as const;
2621
+
2622
+ export const $StartRegistrationInput = {
2623
+ type: 'object',
2624
+ properties: {
2625
+ RegistrationUrl: {
2626
+ type: 'string',
2627
+ nullable: true
2628
+ }
2629
+ },
2630
+ additionalProperties: false
2631
+ } as const;
2632
+
2633
+ export const $StringDateTimeTuple = {
2634
+ type: 'object',
2635
+ properties: {
2636
+ Item1: {
2637
+ type: 'string',
2638
+ nullable: true
2639
+ },
2640
+ Item2: {
2641
+ type: 'string',
2642
+ format: 'date-time'
2643
+ }
2644
+ },
2645
+ additionalProperties: false
2646
+ } as const;
2647
+
2648
+ export const $StructLayoutAttribute = {
2649
+ type: 'object',
2650
+ properties: {
2651
+ TypeId: {
2652
+ nullable: true,
2653
+ readOnly: true
2654
+ },
2655
+ Value: {
2656
+ '$ref': '#/components/schemas/LayoutKind'
2657
+ }
2658
+ },
2659
+ additionalProperties: false
2660
+ } as const;
2661
+
2662
+ export const $SuggestedStatusIcon = {
2663
+ enum: ['Ready', 'ReadyWarning', 'ReadyError', 'Paused', 'Active', 'ActivePaused'],
2664
+ type: 'string'
2665
+ } as const;
2666
+
2667
+ export const $SystemInfoDto = {
2668
+ type: 'object',
2669
+ properties: {
2670
+ APIVersion: {
2671
+ type: 'integer',
2672
+ format: 'int32'
2673
+ },
2674
+ PasswordPlaceholder: {
2675
+ type: 'string',
2676
+ nullable: true
2677
+ },
2678
+ ServerVersion: {
2679
+ type: 'string',
2680
+ nullable: true
2681
+ },
2682
+ ServerVersionName: {
2683
+ type: 'string',
2684
+ nullable: true
2685
+ },
2686
+ ServerVersionType: {
2687
+ type: 'string',
2688
+ nullable: true
2689
+ },
2690
+ RemoteControlRegistrationUrl: {
2691
+ type: 'string',
2692
+ nullable: true
2693
+ },
2694
+ StartedBy: {
2695
+ type: 'string',
2696
+ nullable: true
2697
+ },
2698
+ DefaultUpdateChannel: {
2699
+ type: 'string',
2700
+ nullable: true
2701
+ },
2702
+ DefaultUsageReportLevel: {
2703
+ type: 'string',
2704
+ nullable: true
2705
+ },
2706
+ ServerTime: {
2707
+ type: 'string',
2708
+ format: 'date-time'
2709
+ },
2710
+ OSType: {
2711
+ type: 'string',
2712
+ nullable: true
2713
+ },
2714
+ DirectorySeparator: {
2715
+ type: 'string'
2716
+ },
2717
+ PathSeparator: {
2718
+ type: 'string'
2719
+ },
2720
+ CaseSensitiveFilesystem: {
2721
+ type: 'boolean'
2722
+ },
2723
+ MachineName: {
2724
+ type: 'string',
2725
+ nullable: true
2726
+ },
2727
+ PackageTypeId: {
2728
+ type: 'string',
2729
+ nullable: true
2730
+ },
2731
+ UserName: {
2732
+ type: 'string',
2733
+ nullable: true
2734
+ },
2735
+ NewLine: {
2736
+ type: 'string',
2737
+ nullable: true
2738
+ },
2739
+ CLRVersion: {
2740
+ type: 'string',
2741
+ nullable: true
2742
+ },
2743
+ CLROSInfo: {
2744
+ '$ref': '#/components/schemas/CLROSInfoDto'
2745
+ },
2746
+ Options: {
2747
+ type: 'array',
2748
+ items: {
2749
+ '$ref': '#/components/schemas/ICommandLineArgument'
2750
+ },
2751
+ nullable: true
2752
+ },
2753
+ CompressionModules: {
2754
+ type: 'array',
2755
+ items: {
2756
+ '$ref': '#/components/schemas/IDynamicModule'
2757
+ },
2758
+ nullable: true
2759
+ },
2760
+ EncryptionModules: {
2761
+ type: 'array',
2762
+ items: {
2763
+ '$ref': '#/components/schemas/IDynamicModule'
2764
+ },
2765
+ nullable: true
2766
+ },
2767
+ BackendModules: {
2768
+ type: 'array',
2769
+ items: {
2770
+ '$ref': '#/components/schemas/IDynamicModule'
2771
+ },
2772
+ nullable: true
2773
+ },
2774
+ GenericModules: {
2775
+ type: 'array',
2776
+ items: {
2777
+ '$ref': '#/components/schemas/IDynamicModule'
2778
+ },
2779
+ nullable: true
2780
+ },
2781
+ WebModules: {
2782
+ type: 'array',
2783
+ items: {
2784
+ '$ref': '#/components/schemas/IDynamicModule'
2785
+ },
2786
+ nullable: true
2787
+ },
2788
+ ConnectionModules: {
2789
+ type: 'array',
2790
+ items: {
2791
+ '$ref': '#/components/schemas/IDynamicModule'
2792
+ },
2793
+ nullable: true
2794
+ },
2795
+ ServerModules: {
2796
+ type: 'array',
2797
+ items: {},
2798
+ nullable: true
2799
+ },
2800
+ UsingAlternateUpdateURLs: {
2801
+ type: 'boolean'
2802
+ },
2803
+ LogLevels: {
2804
+ type: 'array',
2805
+ items: {
2806
+ type: 'string'
2807
+ },
2808
+ nullable: true
2809
+ },
2810
+ SpecialFolders: {
2811
+ type: 'array',
2812
+ items: {
2813
+ '$ref': '#/components/schemas/SpecialFolderDto'
2814
+ },
2815
+ nullable: true
2816
+ },
2817
+ BrowserLocale: {
2818
+ '$ref': '#/components/schemas/LocaleDto'
2819
+ },
2820
+ SupportedLocales: {
2821
+ type: 'array',
2822
+ items: {
2823
+ '$ref': '#/components/schemas/LocaleDto'
2824
+ },
2825
+ nullable: true
2826
+ },
2827
+ BrowserLocaleSupported: {
2828
+ type: 'boolean'
2829
+ }
2830
+ },
2831
+ additionalProperties: false
2832
+ } as const;
2833
+
2834
+ export const $TaskStartedDto = {
2835
+ type: 'object',
2836
+ properties: {
2837
+ Status: {
2838
+ type: 'string',
2839
+ nullable: true
2840
+ },
2841
+ ID: {
2842
+ type: 'integer',
2843
+ format: 'int64'
2844
+ }
2845
+ },
2846
+ additionalProperties: false
2847
+ } as const;
2848
+
2849
+ export const $TreeNodeDto = {
2850
+ type: 'object',
2851
+ properties: {
2852
+ text: {
2853
+ type: 'string',
2854
+ nullable: true
2855
+ },
2856
+ id: {
2857
+ type: 'string',
2858
+ nullable: true
2859
+ },
2860
+ cls: {
2861
+ type: 'string',
2862
+ nullable: true
2863
+ },
2864
+ iconCls: {
2865
+ type: 'string',
2866
+ nullable: true
2867
+ },
2868
+ check: {
2869
+ type: 'boolean'
2870
+ },
2871
+ leaf: {
2872
+ type: 'boolean'
2873
+ },
2874
+ resolvedpath: {
2875
+ type: 'string',
2876
+ nullable: true
2877
+ },
2878
+ hidden: {
2879
+ type: 'boolean'
2880
+ },
2881
+ systemFile: {
2882
+ type: 'boolean'
2883
+ },
2884
+ temporary: {
2885
+ type: 'boolean'
2886
+ },
2887
+ symlink: {
2888
+ type: 'boolean'
2889
+ },
2890
+ fileSize: {
2891
+ type: 'integer',
2892
+ format: 'int64'
2893
+ }
2894
+ },
2895
+ additionalProperties: false
2896
+ } as const;
2897
+
2898
+ export const $Type = {
2899
+ type: 'object',
2900
+ properties: {
2901
+ Name: {
2902
+ type: 'string',
2903
+ nullable: true,
2904
+ readOnly: true
2905
+ },
2906
+ CustomAttributes: {
2907
+ type: 'array',
2908
+ items: {
2909
+ '$ref': '#/components/schemas/CustomAttributeData'
2910
+ },
2911
+ nullable: true,
2912
+ readOnly: true
2913
+ },
2914
+ IsCollectible: {
2915
+ type: 'boolean',
2916
+ readOnly: true
2917
+ },
2918
+ MetadataToken: {
2919
+ type: 'integer',
2920
+ format: 'int32',
2921
+ readOnly: true
2922
+ },
2923
+ IsInterface: {
2924
+ type: 'boolean',
2925
+ readOnly: true
2926
+ },
2927
+ MemberType: {
2928
+ '$ref': '#/components/schemas/MemberTypes'
2929
+ },
2930
+ Namespace: {
2931
+ type: 'string',
2932
+ nullable: true,
2933
+ readOnly: true
2934
+ },
2935
+ AssemblyQualifiedName: {
2936
+ type: 'string',
2937
+ nullable: true,
2938
+ readOnly: true
2939
+ },
2940
+ FullName: {
2941
+ type: 'string',
2942
+ nullable: true,
2943
+ readOnly: true
2944
+ },
2945
+ Assembly: {
2946
+ '$ref': '#/components/schemas/Assembly'
2947
+ },
2948
+ Module: {
2949
+ '$ref': '#/components/schemas/Module'
2950
+ },
2951
+ IsNested: {
2952
+ type: 'boolean',
2953
+ readOnly: true
2954
+ },
2955
+ DeclaringType: {
2956
+ '$ref': '#/components/schemas/Type'
2957
+ },
2958
+ DeclaringMethod: {
2959
+ '$ref': '#/components/schemas/MethodBase'
2960
+ },
2961
+ ReflectedType: {
2962
+ '$ref': '#/components/schemas/Type'
2963
+ },
2964
+ UnderlyingSystemType: {
2965
+ '$ref': '#/components/schemas/Type'
2966
+ },
2967
+ IsTypeDefinition: {
2968
+ type: 'boolean',
2969
+ readOnly: true
2970
+ },
2971
+ IsArray: {
2972
+ type: 'boolean',
2973
+ readOnly: true
2974
+ },
2975
+ IsByRef: {
2976
+ type: 'boolean',
2977
+ readOnly: true
2978
+ },
2979
+ IsPointer: {
2980
+ type: 'boolean',
2981
+ readOnly: true
2982
+ },
2983
+ IsConstructedGenericType: {
2984
+ type: 'boolean',
2985
+ readOnly: true
2986
+ },
2987
+ IsGenericParameter: {
2988
+ type: 'boolean',
2989
+ readOnly: true
2990
+ },
2991
+ IsGenericTypeParameter: {
2992
+ type: 'boolean',
2993
+ readOnly: true
2994
+ },
2995
+ IsGenericMethodParameter: {
2996
+ type: 'boolean',
2997
+ readOnly: true
2998
+ },
2999
+ IsGenericType: {
3000
+ type: 'boolean',
3001
+ readOnly: true
3002
+ },
3003
+ IsGenericTypeDefinition: {
3004
+ type: 'boolean',
3005
+ readOnly: true
3006
+ },
3007
+ IsSZArray: {
3008
+ type: 'boolean',
3009
+ readOnly: true
3010
+ },
3011
+ IsVariableBoundArray: {
3012
+ type: 'boolean',
3013
+ readOnly: true
3014
+ },
3015
+ IsByRefLike: {
3016
+ type: 'boolean',
3017
+ readOnly: true
3018
+ },
3019
+ IsFunctionPointer: {
3020
+ type: 'boolean',
3021
+ readOnly: true
3022
+ },
3023
+ IsUnmanagedFunctionPointer: {
3024
+ type: 'boolean',
3025
+ readOnly: true
3026
+ },
3027
+ HasElementType: {
3028
+ type: 'boolean',
3029
+ readOnly: true
3030
+ },
3031
+ GenericTypeArguments: {
3032
+ type: 'array',
3033
+ items: {
3034
+ '$ref': '#/components/schemas/Type'
3035
+ },
3036
+ nullable: true,
3037
+ readOnly: true
3038
+ },
3039
+ GenericParameterPosition: {
3040
+ type: 'integer',
3041
+ format: 'int32',
3042
+ readOnly: true
3043
+ },
3044
+ GenericParameterAttributes: {
3045
+ '$ref': '#/components/schemas/GenericParameterAttributes'
3046
+ },
3047
+ Attributes: {
3048
+ '$ref': '#/components/schemas/TypeAttributes'
3049
+ },
3050
+ IsAbstract: {
3051
+ type: 'boolean',
3052
+ readOnly: true
3053
+ },
3054
+ IsImport: {
3055
+ type: 'boolean',
3056
+ readOnly: true
3057
+ },
3058
+ IsSealed: {
3059
+ type: 'boolean',
3060
+ readOnly: true
3061
+ },
3062
+ IsSpecialName: {
3063
+ type: 'boolean',
3064
+ readOnly: true
3065
+ },
3066
+ IsClass: {
3067
+ type: 'boolean',
3068
+ readOnly: true
3069
+ },
3070
+ IsNestedAssembly: {
3071
+ type: 'boolean',
3072
+ readOnly: true
3073
+ },
3074
+ IsNestedFamANDAssem: {
3075
+ type: 'boolean',
3076
+ readOnly: true
3077
+ },
3078
+ IsNestedFamily: {
3079
+ type: 'boolean',
3080
+ readOnly: true
3081
+ },
3082
+ IsNestedFamORAssem: {
3083
+ type: 'boolean',
3084
+ readOnly: true
3085
+ },
3086
+ IsNestedPrivate: {
3087
+ type: 'boolean',
3088
+ readOnly: true
3089
+ },
3090
+ IsNestedPublic: {
3091
+ type: 'boolean',
3092
+ readOnly: true
3093
+ },
3094
+ IsNotPublic: {
3095
+ type: 'boolean',
3096
+ readOnly: true
3097
+ },
3098
+ IsPublic: {
3099
+ type: 'boolean',
3100
+ readOnly: true
3101
+ },
3102
+ IsAutoLayout: {
3103
+ type: 'boolean',
3104
+ readOnly: true
3105
+ },
3106
+ IsExplicitLayout: {
3107
+ type: 'boolean',
3108
+ readOnly: true
3109
+ },
3110
+ IsLayoutSequential: {
3111
+ type: 'boolean',
3112
+ readOnly: true
3113
+ },
3114
+ IsAnsiClass: {
3115
+ type: 'boolean',
3116
+ readOnly: true
3117
+ },
3118
+ IsAutoClass: {
3119
+ type: 'boolean',
3120
+ readOnly: true
3121
+ },
3122
+ IsUnicodeClass: {
3123
+ type: 'boolean',
3124
+ readOnly: true
3125
+ },
3126
+ IsCOMObject: {
3127
+ type: 'boolean',
3128
+ readOnly: true
3129
+ },
3130
+ IsContextful: {
3131
+ type: 'boolean',
3132
+ readOnly: true
3133
+ },
3134
+ IsEnum: {
3135
+ type: 'boolean',
3136
+ readOnly: true
3137
+ },
3138
+ IsMarshalByRef: {
3139
+ type: 'boolean',
3140
+ readOnly: true
3141
+ },
3142
+ IsPrimitive: {
3143
+ type: 'boolean',
3144
+ readOnly: true
3145
+ },
3146
+ IsValueType: {
3147
+ type: 'boolean',
3148
+ readOnly: true
3149
+ },
3150
+ IsSignatureType: {
3151
+ type: 'boolean',
3152
+ readOnly: true
3153
+ },
3154
+ IsSecurityCritical: {
3155
+ type: 'boolean',
3156
+ readOnly: true
3157
+ },
3158
+ IsSecuritySafeCritical: {
3159
+ type: 'boolean',
3160
+ readOnly: true
3161
+ },
3162
+ IsSecurityTransparent: {
3163
+ type: 'boolean',
3164
+ readOnly: true
3165
+ },
3166
+ StructLayoutAttribute: {
3167
+ '$ref': '#/components/schemas/StructLayoutAttribute'
3168
+ },
3169
+ TypeInitializer: {
3170
+ '$ref': '#/components/schemas/ConstructorInfo'
3171
+ },
3172
+ TypeHandle: {
3173
+ '$ref': '#/components/schemas/RuntimeTypeHandle'
3174
+ },
3175
+ GUID: {
3176
+ type: 'string',
3177
+ format: 'uuid',
3178
+ readOnly: true
3179
+ },
3180
+ BaseType: {
3181
+ '$ref': '#/components/schemas/Type'
3182
+ },
3183
+ IsSerializable: {
3184
+ type: 'boolean',
3185
+ readOnly: true,
3186
+ deprecated: true
3187
+ },
3188
+ ContainsGenericParameters: {
3189
+ type: 'boolean',
3190
+ readOnly: true
3191
+ },
3192
+ IsVisible: {
3193
+ type: 'boolean',
3194
+ readOnly: true
3195
+ }
3196
+ },
3197
+ additionalProperties: false
3198
+ } as const;
3199
+
3200
+ export const $TypeAttributes = {
3201
+ enum: ['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'],
3202
+ type: 'string'
3203
+ } as const;
3204
+
3205
+ export const $TypeInfo = {
3206
+ type: 'object',
3207
+ properties: {
3208
+ Name: {
3209
+ type: 'string',
3210
+ nullable: true,
3211
+ readOnly: true
3212
+ },
3213
+ CustomAttributes: {
3214
+ type: 'array',
3215
+ items: {
3216
+ '$ref': '#/components/schemas/CustomAttributeData'
3217
+ },
3218
+ nullable: true,
3219
+ readOnly: true
3220
+ },
3221
+ IsCollectible: {
3222
+ type: 'boolean',
3223
+ readOnly: true
3224
+ },
3225
+ MetadataToken: {
3226
+ type: 'integer',
3227
+ format: 'int32',
3228
+ readOnly: true
3229
+ },
3230
+ IsInterface: {
3231
+ type: 'boolean',
3232
+ readOnly: true
3233
+ },
3234
+ MemberType: {
3235
+ '$ref': '#/components/schemas/MemberTypes'
3236
+ },
3237
+ Namespace: {
3238
+ type: 'string',
3239
+ nullable: true,
3240
+ readOnly: true
3241
+ },
3242
+ AssemblyQualifiedName: {
3243
+ type: 'string',
3244
+ nullable: true,
3245
+ readOnly: true
3246
+ },
3247
+ FullName: {
3248
+ type: 'string',
3249
+ nullable: true,
3250
+ readOnly: true
3251
+ },
3252
+ Assembly: {
3253
+ '$ref': '#/components/schemas/Assembly'
3254
+ },
3255
+ Module: {
3256
+ '$ref': '#/components/schemas/Module'
3257
+ },
3258
+ IsNested: {
3259
+ type: 'boolean',
3260
+ readOnly: true
3261
+ },
3262
+ DeclaringType: {
3263
+ '$ref': '#/components/schemas/Type'
3264
+ },
3265
+ DeclaringMethod: {
3266
+ '$ref': '#/components/schemas/MethodBase'
3267
+ },
3268
+ ReflectedType: {
3269
+ '$ref': '#/components/schemas/Type'
3270
+ },
3271
+ UnderlyingSystemType: {
3272
+ '$ref': '#/components/schemas/Type'
3273
+ },
3274
+ IsTypeDefinition: {
3275
+ type: 'boolean',
3276
+ readOnly: true
3277
+ },
3278
+ IsArray: {
3279
+ type: 'boolean',
3280
+ readOnly: true
3281
+ },
3282
+ IsByRef: {
3283
+ type: 'boolean',
3284
+ readOnly: true
3285
+ },
3286
+ IsPointer: {
3287
+ type: 'boolean',
3288
+ readOnly: true
3289
+ },
3290
+ IsConstructedGenericType: {
3291
+ type: 'boolean',
3292
+ readOnly: true
3293
+ },
3294
+ IsGenericParameter: {
3295
+ type: 'boolean',
3296
+ readOnly: true
3297
+ },
3298
+ IsGenericTypeParameter: {
3299
+ type: 'boolean',
3300
+ readOnly: true
3301
+ },
3302
+ IsGenericMethodParameter: {
3303
+ type: 'boolean',
3304
+ readOnly: true
3305
+ },
3306
+ IsGenericType: {
3307
+ type: 'boolean',
3308
+ readOnly: true
3309
+ },
3310
+ IsGenericTypeDefinition: {
3311
+ type: 'boolean',
3312
+ readOnly: true
3313
+ },
3314
+ IsSZArray: {
3315
+ type: 'boolean',
3316
+ readOnly: true
3317
+ },
3318
+ IsVariableBoundArray: {
3319
+ type: 'boolean',
3320
+ readOnly: true
3321
+ },
3322
+ IsByRefLike: {
3323
+ type: 'boolean',
3324
+ readOnly: true
3325
+ },
3326
+ IsFunctionPointer: {
3327
+ type: 'boolean',
3328
+ readOnly: true
3329
+ },
3330
+ IsUnmanagedFunctionPointer: {
3331
+ type: 'boolean',
3332
+ readOnly: true
3333
+ },
3334
+ HasElementType: {
3335
+ type: 'boolean',
3336
+ readOnly: true
3337
+ },
3338
+ GenericTypeArguments: {
3339
+ type: 'array',
3340
+ items: {
3341
+ '$ref': '#/components/schemas/Type'
3342
+ },
3343
+ nullable: true,
3344
+ readOnly: true
3345
+ },
3346
+ GenericParameterPosition: {
3347
+ type: 'integer',
3348
+ format: 'int32',
3349
+ readOnly: true
3350
+ },
3351
+ GenericParameterAttributes: {
3352
+ '$ref': '#/components/schemas/GenericParameterAttributes'
3353
+ },
3354
+ Attributes: {
3355
+ '$ref': '#/components/schemas/TypeAttributes'
3356
+ },
3357
+ IsAbstract: {
3358
+ type: 'boolean',
3359
+ readOnly: true
3360
+ },
3361
+ IsImport: {
3362
+ type: 'boolean',
3363
+ readOnly: true
3364
+ },
3365
+ IsSealed: {
3366
+ type: 'boolean',
3367
+ readOnly: true
3368
+ },
3369
+ IsSpecialName: {
3370
+ type: 'boolean',
3371
+ readOnly: true
3372
+ },
3373
+ IsClass: {
3374
+ type: 'boolean',
3375
+ readOnly: true
3376
+ },
3377
+ IsNestedAssembly: {
3378
+ type: 'boolean',
3379
+ readOnly: true
3380
+ },
3381
+ IsNestedFamANDAssem: {
3382
+ type: 'boolean',
3383
+ readOnly: true
3384
+ },
3385
+ IsNestedFamily: {
3386
+ type: 'boolean',
3387
+ readOnly: true
3388
+ },
3389
+ IsNestedFamORAssem: {
3390
+ type: 'boolean',
3391
+ readOnly: true
3392
+ },
3393
+ IsNestedPrivate: {
3394
+ type: 'boolean',
3395
+ readOnly: true
3396
+ },
3397
+ IsNestedPublic: {
3398
+ type: 'boolean',
3399
+ readOnly: true
3400
+ },
3401
+ IsNotPublic: {
3402
+ type: 'boolean',
3403
+ readOnly: true
3404
+ },
3405
+ IsPublic: {
3406
+ type: 'boolean',
3407
+ readOnly: true
3408
+ },
3409
+ IsAutoLayout: {
3410
+ type: 'boolean',
3411
+ readOnly: true
3412
+ },
3413
+ IsExplicitLayout: {
3414
+ type: 'boolean',
3415
+ readOnly: true
3416
+ },
3417
+ IsLayoutSequential: {
3418
+ type: 'boolean',
3419
+ readOnly: true
3420
+ },
3421
+ IsAnsiClass: {
3422
+ type: 'boolean',
3423
+ readOnly: true
3424
+ },
3425
+ IsAutoClass: {
3426
+ type: 'boolean',
3427
+ readOnly: true
3428
+ },
3429
+ IsUnicodeClass: {
3430
+ type: 'boolean',
3431
+ readOnly: true
3432
+ },
3433
+ IsCOMObject: {
3434
+ type: 'boolean',
3435
+ readOnly: true
3436
+ },
3437
+ IsContextful: {
3438
+ type: 'boolean',
3439
+ readOnly: true
3440
+ },
3441
+ IsEnum: {
3442
+ type: 'boolean',
3443
+ readOnly: true
3444
+ },
3445
+ IsMarshalByRef: {
3446
+ type: 'boolean',
3447
+ readOnly: true
3448
+ },
3449
+ IsPrimitive: {
3450
+ type: 'boolean',
3451
+ readOnly: true
3452
+ },
3453
+ IsValueType: {
3454
+ type: 'boolean',
3455
+ readOnly: true
3456
+ },
3457
+ IsSignatureType: {
3458
+ type: 'boolean',
3459
+ readOnly: true
3460
+ },
3461
+ IsSecurityCritical: {
3462
+ type: 'boolean',
3463
+ readOnly: true
3464
+ },
3465
+ IsSecuritySafeCritical: {
3466
+ type: 'boolean',
3467
+ readOnly: true
3468
+ },
3469
+ IsSecurityTransparent: {
3470
+ type: 'boolean',
3471
+ readOnly: true
3472
+ },
3473
+ StructLayoutAttribute: {
3474
+ '$ref': '#/components/schemas/StructLayoutAttribute'
3475
+ },
3476
+ TypeInitializer: {
3477
+ '$ref': '#/components/schemas/ConstructorInfo'
3478
+ },
3479
+ TypeHandle: {
3480
+ '$ref': '#/components/schemas/RuntimeTypeHandle'
3481
+ },
3482
+ GUID: {
3483
+ type: 'string',
3484
+ format: 'uuid',
3485
+ readOnly: true
3486
+ },
3487
+ BaseType: {
3488
+ '$ref': '#/components/schemas/Type'
3489
+ },
3490
+ IsSerializable: {
3491
+ type: 'boolean',
3492
+ readOnly: true,
3493
+ deprecated: true
3494
+ },
3495
+ ContainsGenericParameters: {
3496
+ type: 'boolean',
3497
+ readOnly: true
3498
+ },
3499
+ IsVisible: {
3500
+ type: 'boolean',
3501
+ readOnly: true
3502
+ },
3503
+ GenericTypeParameters: {
3504
+ type: 'array',
3505
+ items: {
3506
+ '$ref': '#/components/schemas/Type'
3507
+ },
3508
+ nullable: true,
3509
+ readOnly: true
3510
+ },
3511
+ DeclaredConstructors: {
3512
+ type: 'array',
3513
+ items: {
3514
+ '$ref': '#/components/schemas/ConstructorInfo'
3515
+ },
3516
+ nullable: true,
3517
+ readOnly: true
3518
+ },
3519
+ DeclaredEvents: {
3520
+ type: 'array',
3521
+ items: {
3522
+ '$ref': '#/components/schemas/EventInfo'
3523
+ },
3524
+ nullable: true,
3525
+ readOnly: true
3526
+ },
3527
+ DeclaredFields: {
3528
+ type: 'array',
3529
+ items: {
3530
+ '$ref': '#/components/schemas/FieldInfo'
3531
+ },
3532
+ nullable: true,
3533
+ readOnly: true
3534
+ },
3535
+ DeclaredMembers: {
3536
+ type: 'array',
3537
+ items: {
3538
+ '$ref': '#/components/schemas/MemberInfo'
3539
+ },
3540
+ nullable: true,
3541
+ readOnly: true
3542
+ },
3543
+ DeclaredMethods: {
3544
+ type: 'array',
3545
+ items: {
3546
+ '$ref': '#/components/schemas/MethodInfo'
3547
+ },
3548
+ nullable: true,
3549
+ readOnly: true
3550
+ },
3551
+ DeclaredNestedTypes: {
3552
+ type: 'array',
3553
+ items: {
3554
+ '$ref': '#/components/schemas/TypeInfo'
3555
+ },
3556
+ nullable: true,
3557
+ readOnly: true
3558
+ },
3559
+ DeclaredProperties: {
3560
+ type: 'array',
3561
+ items: {
3562
+ '$ref': '#/components/schemas/PropertyInfo'
3563
+ },
3564
+ nullable: true,
3565
+ readOnly: true
3566
+ },
3567
+ ImplementedInterfaces: {
3568
+ type: 'array',
3569
+ items: {
3570
+ '$ref': '#/components/schemas/Type'
3571
+ },
3572
+ nullable: true,
3573
+ readOnly: true
3574
+ }
3575
+ },
3576
+ additionalProperties: false
3577
+ } as const;
3578
+
3579
+ export const $UpdateDbPathInputDto = {
3580
+ type: 'object',
3581
+ properties: {
3582
+ path: {
3583
+ type: 'string',
3584
+ nullable: true
3585
+ }
3586
+ },
3587
+ additionalProperties: false
3588
+ } as const;
3589
+
3590
+ export const $UpdatePollerStates = {
3591
+ enum: ['Waiting', 'Checking', 'Downloading'],
3592
+ type: 'string'
3593
+ } as const;
3594
+
3595
+ export const $WebModuleOutputDto = {
3596
+ type: 'object',
3597
+ properties: {
3598
+ Status: {
3599
+ type: 'string',
3600
+ nullable: true
3601
+ },
3602
+ Result: {
3603
+ type: 'object',
3604
+ additionalProperties: {
3605
+ type: 'string'
3606
+ },
3607
+ nullable: true
3608
+ }
3609
+ },
3610
+ additionalProperties: false
3611
+ } as const;