tabby-sync-selective 1.1.0

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 (46) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +48 -0
  3. package/dist/index.js +2 -0
  4. package/dist/index.js.LICENSE.txt +7479 -0
  5. package/dist/src/components/change-logs/change-logs.component.d.ts +8 -0
  6. package/dist/src/components/checkbox.component.d.ts +13 -0
  7. package/dist/src/components/cloud-sync-settings.component.d.ts +317 -0
  8. package/dist/src/components/feeback-form/feeback.component.d.ts +36 -0
  9. package/dist/src/components/master-password/master-password.component.d.ts +8 -0
  10. package/dist/src/components/sub-components/about/about.component.d.ts +17 -0
  11. package/dist/src/components/sub-components/amazon/amazon-settings.component.d.ts +350 -0
  12. package/dist/src/components/sub-components/built-in/builtin-settings.component.d.ts +215 -0
  13. package/dist/src/components/sub-components/check-for-updates/check-for-updates.component.d.ts +26 -0
  14. package/dist/src/components/sub-components/dropbox/dropbox-settings.component.d.ts +348 -0
  15. package/dist/src/components/sub-components/ftp/ftp-settings.component.d.ts +351 -0
  16. package/dist/src/components/sub-components/gist/gist-settings.component.d.ts +352 -0
  17. package/dist/src/components/sub-components/plugin-logs/plugin-logs.component.d.ts +21 -0
  18. package/dist/src/components/sub-components/webdav/webdav-settings.component.d.ts +349 -0
  19. package/dist/src/components/support-us/support-us.component.d.ts +14 -0
  20. package/dist/src/components/sync-sections-dialog/sync-sections-dialog.component.d.ts +131 -0
  21. package/dist/src/components/toggle.component.d.ts +4 -0
  22. package/dist/src/data/lang.d.ts +119 -0
  23. package/dist/src/data/mockdata.json +7 -0
  24. package/dist/src/data/s3-data.d.ts +15 -0
  25. package/dist/src/data/setting-items.d.ts +197 -0
  26. package/dist/src/index.d.ts +15 -0
  27. package/dist/src/interface/index.d.ts +33 -0
  28. package/dist/src/services/dev-constants.d.ts +4 -0
  29. package/dist/src/services/sync-sections-dialog.service.d.ts +9 -0
  30. package/dist/src/services/tabby-sync-upgrade.d.ts +7 -0
  31. package/dist/src/settings.d.ts +7 -0
  32. package/dist/src/utils/CloudSyncSettingsHelper.d.ts +8 -0
  33. package/dist/src/utils/Logger.d.ts +9 -0
  34. package/dist/src/utils/cloud-components/AmazonS3.d.ts +30 -0
  35. package/dist/src/utils/cloud-components/Dropbox.d.ts +17 -0
  36. package/dist/src/utils/cloud-components/FTP.d.ts +15 -0
  37. package/dist/src/utils/cloud-components/WebDav.d.ts +13 -0
  38. package/dist/src/utils/cloud-components/gist.d.ts +12 -0
  39. package/dist/src/utils/cloud-components/gists/gists.d.ts +10 -0
  40. package/dist/src/utils/cloud-components/gists/gitee.d.ts +12 -0
  41. package/dist/src/utils/cloud-components/gists/github.d.ts +12 -0
  42. package/dist/src/utils/cloud-components/gists/gitlab.d.ts +12 -0
  43. package/dist/src/utils/config-merge.d.ts +40 -0
  44. package/dist/src/utils/dev-mock-data.d.ts +6 -0
  45. package/dist/src/utils/settings-helper.d.ts +49 -0
  46. package/package.json +101 -0
@@ -0,0 +1,348 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { ConfigService, PlatformService } from 'terminus-core';
3
+ import { ToastrService } from 'ngx-toastr';
4
+ export declare class CloudSyncDropboxSettingsComponent implements OnInit {
5
+ private config;
6
+ private platform;
7
+ private toast;
8
+ resetFormMessages: EventEmitter<unknown>;
9
+ setFormMessage: EventEmitter<unknown>;
10
+ private dropboxServiceEmitter;
11
+ private dbx;
12
+ translate: {
13
+ lang: {
14
+ common: {
15
+ menu_title: string;
16
+ verifyConfigString: string;
17
+ config_inject_header: string;
18
+ errors: {
19
+ invalidServerConfig: string;
20
+ };
21
+ };
22
+ form: {
23
+ error: {
24
+ required_all: string;
25
+ };
26
+ };
27
+ settings: {
28
+ title: string;
29
+ sub_title: string;
30
+ service_label: string;
31
+ amazon: {
32
+ connected: string;
33
+ save_settings_failed: string;
34
+ save_settings_success: string;
35
+ };
36
+ error_connection_timeout: string;
37
+ };
38
+ sync: {
39
+ loading_config: string;
40
+ sync_confirmation: string;
41
+ setting_valid: string;
42
+ error_setting_save_file: string;
43
+ error_connection: string;
44
+ error_invalid_setting: string;
45
+ error_invalid_setting_2: string;
46
+ error_save_setting: string;
47
+ need_to_save_config: string;
48
+ sync_success: string;
49
+ sync_error: string;
50
+ sync_server_failed: string;
51
+ sync_enabled: string;
52
+ sync_disabled: string;
53
+ confirm_remove_setting: string;
54
+ remove_setting_success: string;
55
+ remove_setting_error: string;
56
+ setting_changes_saved: string;
57
+ sync_sections_saved: string;
58
+ sync_mode_full: string;
59
+ sync_mode_platform_safe: string;
60
+ sync_mode_custom: string;
61
+ sync_mode_selective: string;
62
+ sync_sections_title: string;
63
+ sync_sections_hint: string;
64
+ manual_sync_title: string;
65
+ manual_sync_confirm: string;
66
+ };
67
+ log: {
68
+ invalid_cloud_settings: string;
69
+ read_cloud_settings: string;
70
+ error_upload_settings: string;
71
+ error_test_connection: string;
72
+ };
73
+ s3: {
74
+ title: string;
75
+ title_blackblaze: string;
76
+ app_id_placeholder: string;
77
+ app_secret_placeholder: string;
78
+ blackblaze_key_placeholder: string;
79
+ blackblaze_app_key_placeholder: string;
80
+ bucket_placeholder: string;
81
+ region_placeholder: string;
82
+ blackblaze_bucket_placeholder: string;
83
+ endpoint_placeholder: string;
84
+ location_placeholder: string;
85
+ };
86
+ ftp: {
87
+ title: string;
88
+ host_placeholder: string;
89
+ location_placeholder: string;
90
+ username_placeholder: string;
91
+ password_placeholder: string;
92
+ port_placeholder: string;
93
+ };
94
+ webdav: {
95
+ title: string;
96
+ host_placeholder: string;
97
+ username_placeholder: string;
98
+ password_placeholder: string;
99
+ port_placeholder: string;
100
+ location_placeholder: string;
101
+ };
102
+ gist: {
103
+ title: string;
104
+ name: string;
105
+ id: string;
106
+ token: string;
107
+ invalid_provider: string;
108
+ enter_id: string;
109
+ error_create_gist: string;
110
+ };
111
+ buttons: {
112
+ sync_from_cloud: string;
113
+ sync_from_local: string;
114
+ check_update: string;
115
+ yes: string;
116
+ cancel: string;
117
+ no: string;
118
+ ok: string;
119
+ view: string;
120
+ test_connection: string;
121
+ processing: string;
122
+ save_settings: string;
123
+ upload_settings: string;
124
+ cloud_syncing_progress: string;
125
+ remove_saved_setting: string;
126
+ };
127
+ };
128
+ trans: (key: string) => string;
129
+ };
130
+ presetData: {
131
+ defaultSyncInterval: number;
132
+ tabbySettingsFilename: string;
133
+ storedSettingsFilename: string;
134
+ cloudSettingsFilename: string;
135
+ syncHashFilename: string;
136
+ tabbyLocalEncryptedFile: string;
137
+ values: {
138
+ BUILT_IN: string;
139
+ S3: string;
140
+ WASABI: string;
141
+ DIGITAL_OCEAN: string;
142
+ BLACKBLAZE: string;
143
+ S3_COMPATIBLE: string;
144
+ WEBDAV: string;
145
+ FTP: string;
146
+ GIST: string;
147
+ DROPBOX: string;
148
+ };
149
+ amazonEndpoints: {
150
+ WASABI: string;
151
+ DIGITAL_OCEAN: string;
152
+ BLACKBLAZE: string;
153
+ S3_COMPATIBLE: string;
154
+ };
155
+ serviceProvidersList: {
156
+ name: string;
157
+ value: string;
158
+ }[];
159
+ BuiltinLoginMode: {
160
+ LOGIN: string;
161
+ RESET_PASSWORD: string;
162
+ };
163
+ availablePluginVersions: string[];
164
+ formData: {
165
+ [x: string]: {
166
+ email: string;
167
+ password: string;
168
+ reset_password_email: string;
169
+ appId?: undefined;
170
+ appSecret?: undefined;
171
+ location?: undefined;
172
+ bucket?: undefined;
173
+ region?: undefined;
174
+ endpointUrl?: undefined;
175
+ host?: undefined;
176
+ username?: undefined;
177
+ port?: undefined;
178
+ protocol?: undefined;
179
+ type?: undefined;
180
+ name?: undefined;
181
+ accessToken?: undefined;
182
+ id?: undefined;
183
+ apiKey?: undefined;
184
+ apiSecret?: undefined;
185
+ } | {
186
+ appId: string;
187
+ appSecret: string;
188
+ location: string;
189
+ bucket: string;
190
+ region: string;
191
+ email?: undefined;
192
+ password?: undefined;
193
+ reset_password_email?: undefined;
194
+ endpointUrl?: undefined;
195
+ host?: undefined;
196
+ username?: undefined;
197
+ port?: undefined;
198
+ protocol?: undefined;
199
+ type?: undefined;
200
+ name?: undefined;
201
+ accessToken?: undefined;
202
+ id?: undefined;
203
+ apiKey?: undefined;
204
+ apiSecret?: undefined;
205
+ } | {
206
+ endpointUrl: string;
207
+ appId: string;
208
+ appSecret: string;
209
+ location: string;
210
+ bucket: string;
211
+ region: string;
212
+ email?: undefined;
213
+ password?: undefined;
214
+ reset_password_email?: undefined;
215
+ host?: undefined;
216
+ username?: undefined;
217
+ port?: undefined;
218
+ protocol?: undefined;
219
+ type?: undefined;
220
+ name?: undefined;
221
+ accessToken?: undefined;
222
+ id?: undefined;
223
+ apiKey?: undefined;
224
+ apiSecret?: undefined;
225
+ } | {
226
+ host: string;
227
+ username: string;
228
+ password: string;
229
+ location: string;
230
+ port: string;
231
+ email?: undefined;
232
+ reset_password_email?: undefined;
233
+ appId?: undefined;
234
+ appSecret?: undefined;
235
+ bucket?: undefined;
236
+ region?: undefined;
237
+ endpointUrl?: undefined;
238
+ protocol?: undefined;
239
+ type?: undefined;
240
+ name?: undefined;
241
+ accessToken?: undefined;
242
+ id?: undefined;
243
+ apiKey?: undefined;
244
+ apiSecret?: undefined;
245
+ } | {
246
+ protocol: string;
247
+ host: string;
248
+ username: string;
249
+ password: string;
250
+ location: string;
251
+ port: number;
252
+ email?: undefined;
253
+ reset_password_email?: undefined;
254
+ appId?: undefined;
255
+ appSecret?: undefined;
256
+ bucket?: undefined;
257
+ region?: undefined;
258
+ endpointUrl?: undefined;
259
+ type?: undefined;
260
+ name?: undefined;
261
+ accessToken?: undefined;
262
+ id?: undefined;
263
+ apiKey?: undefined;
264
+ apiSecret?: undefined;
265
+ } | {
266
+ type: string;
267
+ name: string;
268
+ accessToken: string;
269
+ id: string;
270
+ email?: undefined;
271
+ password?: undefined;
272
+ reset_password_email?: undefined;
273
+ appId?: undefined;
274
+ appSecret?: undefined;
275
+ location?: undefined;
276
+ bucket?: undefined;
277
+ region?: undefined;
278
+ endpointUrl?: undefined;
279
+ host?: undefined;
280
+ username?: undefined;
281
+ port?: undefined;
282
+ protocol?: undefined;
283
+ apiKey?: undefined;
284
+ apiSecret?: undefined;
285
+ } | {
286
+ apiKey: string;
287
+ apiSecret: string;
288
+ email?: undefined;
289
+ password?: undefined;
290
+ reset_password_email?: undefined;
291
+ appId?: undefined;
292
+ appSecret?: undefined;
293
+ location?: undefined;
294
+ bucket?: undefined;
295
+ region?: undefined;
296
+ endpointUrl?: undefined;
297
+ host?: undefined;
298
+ username?: undefined;
299
+ port?: undefined;
300
+ protocol?: undefined;
301
+ type?: undefined;
302
+ name?: undefined;
303
+ accessToken?: undefined;
304
+ id?: undefined;
305
+ };
306
+ };
307
+ external_urls: {
308
+ ApiUrl: string;
309
+ BlackBlazeHelp: string;
310
+ checkForUpdateUrl: string;
311
+ };
312
+ isCloudStorageS3Compatibility(provider: string): boolean;
313
+ gistUrls: {
314
+ viewItems: {
315
+ github: string;
316
+ gitee: string;
317
+ gitlab: string;
318
+ };
319
+ github: string;
320
+ gitee: string;
321
+ gitlab: string;
322
+ };
323
+ donationUrl: string;
324
+ pluginUrl: string;
325
+ };
326
+ connectedData: {
327
+ isConnected: boolean;
328
+ accessToken: string;
329
+ location: string;
330
+ refreshToken: string;
331
+ email: string;
332
+ lastErrorMessage: string;
333
+ };
334
+ isConnecting: boolean;
335
+ isFormProcessing: boolean;
336
+ isSettingSaved: boolean;
337
+ isSaveSettingErrored: boolean;
338
+ callbackUrl: string;
339
+ constructor(config: ConfigService, platform: PlatformService, toast: ToastrService);
340
+ ngOnInit(): void;
341
+ connect(): Promise<void>;
342
+ handleAuthCallback(): void;
343
+ saveSettings(): Promise<void>;
344
+ disconnect(): void;
345
+ disconnectSettings(): Promise<void>;
346
+ cancelConnect(): void;
347
+ pasteFromClipboard(): Promise<void>;
348
+ }
@@ -0,0 +1,351 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { ConfigService, PlatformService } from 'terminus-core';
3
+ import { ToastrService } from 'ngx-toastr';
4
+ interface formData {
5
+ protocol: string;
6
+ host: string;
7
+ username: string;
8
+ password: string;
9
+ location: string;
10
+ port: string;
11
+ }
12
+ export declare class CloudSyncFtpSettingsComponent implements OnInit {
13
+ private config;
14
+ private platform;
15
+ private toast;
16
+ resetFormMessages: EventEmitter<unknown>;
17
+ setFormMessage: EventEmitter<unknown>;
18
+ translate: {
19
+ lang: {
20
+ common: {
21
+ menu_title: string;
22
+ verifyConfigString: string;
23
+ config_inject_header: string;
24
+ errors: {
25
+ invalidServerConfig: string;
26
+ };
27
+ };
28
+ form: {
29
+ error: {
30
+ required_all: string;
31
+ };
32
+ };
33
+ settings: {
34
+ title: string;
35
+ sub_title: string;
36
+ service_label: string;
37
+ amazon: {
38
+ connected: string;
39
+ save_settings_failed: string;
40
+ save_settings_success: string;
41
+ };
42
+ error_connection_timeout: string;
43
+ };
44
+ sync: {
45
+ loading_config: string;
46
+ sync_confirmation: string;
47
+ setting_valid: string;
48
+ error_setting_save_file: string;
49
+ error_connection: string;
50
+ error_invalid_setting: string;
51
+ error_invalid_setting_2: string;
52
+ error_save_setting: string;
53
+ need_to_save_config: string;
54
+ sync_success: string;
55
+ sync_error: string;
56
+ sync_server_failed: string;
57
+ sync_enabled: string;
58
+ sync_disabled: string;
59
+ confirm_remove_setting: string;
60
+ remove_setting_success: string;
61
+ remove_setting_error: string;
62
+ setting_changes_saved: string;
63
+ sync_sections_saved: string;
64
+ sync_mode_full: string;
65
+ sync_mode_platform_safe: string;
66
+ sync_mode_custom: string;
67
+ sync_mode_selective: string;
68
+ sync_sections_title: string;
69
+ sync_sections_hint: string;
70
+ manual_sync_title: string;
71
+ manual_sync_confirm: string;
72
+ };
73
+ log: {
74
+ invalid_cloud_settings: string;
75
+ read_cloud_settings: string;
76
+ error_upload_settings: string;
77
+ error_test_connection: string;
78
+ };
79
+ s3: {
80
+ title: string;
81
+ title_blackblaze: string;
82
+ app_id_placeholder: string;
83
+ app_secret_placeholder: string;
84
+ blackblaze_key_placeholder: string;
85
+ blackblaze_app_key_placeholder: string;
86
+ bucket_placeholder: string;
87
+ region_placeholder: string;
88
+ blackblaze_bucket_placeholder: string;
89
+ endpoint_placeholder: string;
90
+ location_placeholder: string;
91
+ };
92
+ ftp: {
93
+ title: string;
94
+ host_placeholder: string;
95
+ location_placeholder: string;
96
+ username_placeholder: string;
97
+ password_placeholder: string;
98
+ port_placeholder: string;
99
+ };
100
+ webdav: {
101
+ title: string;
102
+ host_placeholder: string;
103
+ username_placeholder: string;
104
+ password_placeholder: string;
105
+ port_placeholder: string;
106
+ location_placeholder: string;
107
+ };
108
+ gist: {
109
+ title: string;
110
+ name: string;
111
+ id: string;
112
+ token: string;
113
+ invalid_provider: string;
114
+ enter_id: string;
115
+ error_create_gist: string;
116
+ };
117
+ buttons: {
118
+ sync_from_cloud: string;
119
+ sync_from_local: string;
120
+ check_update: string;
121
+ yes: string;
122
+ cancel: string;
123
+ no: string;
124
+ ok: string;
125
+ view: string;
126
+ test_connection: string;
127
+ processing: string;
128
+ save_settings: string;
129
+ upload_settings: string;
130
+ cloud_syncing_progress: string;
131
+ remove_saved_setting: string;
132
+ };
133
+ };
134
+ trans: (key: string) => string;
135
+ };
136
+ presetData: {
137
+ defaultSyncInterval: number;
138
+ tabbySettingsFilename: string;
139
+ storedSettingsFilename: string;
140
+ cloudSettingsFilename: string;
141
+ syncHashFilename: string;
142
+ tabbyLocalEncryptedFile: string;
143
+ values: {
144
+ BUILT_IN: string;
145
+ S3: string;
146
+ WASABI: string;
147
+ DIGITAL_OCEAN: string;
148
+ BLACKBLAZE: string;
149
+ S3_COMPATIBLE: string;
150
+ WEBDAV: string;
151
+ FTP: string;
152
+ GIST: string;
153
+ DROPBOX: string;
154
+ };
155
+ amazonEndpoints: {
156
+ WASABI: string;
157
+ DIGITAL_OCEAN: string;
158
+ BLACKBLAZE: string;
159
+ S3_COMPATIBLE: string;
160
+ };
161
+ serviceProvidersList: {
162
+ name: string;
163
+ value: string;
164
+ }[];
165
+ BuiltinLoginMode: {
166
+ LOGIN: string;
167
+ RESET_PASSWORD: string;
168
+ };
169
+ availablePluginVersions: string[];
170
+ formData: {
171
+ [x: string]: {
172
+ email: string;
173
+ password: string;
174
+ reset_password_email: string;
175
+ appId?: undefined;
176
+ appSecret?: undefined;
177
+ location?: undefined;
178
+ bucket?: undefined;
179
+ region?: undefined;
180
+ endpointUrl?: undefined;
181
+ host?: undefined;
182
+ username?: undefined;
183
+ port?: undefined;
184
+ protocol?: undefined;
185
+ type?: undefined;
186
+ name?: undefined;
187
+ accessToken?: undefined;
188
+ id?: undefined;
189
+ apiKey?: undefined;
190
+ apiSecret?: undefined;
191
+ } | {
192
+ appId: string;
193
+ appSecret: string;
194
+ location: string;
195
+ bucket: string;
196
+ region: string;
197
+ email?: undefined;
198
+ password?: undefined;
199
+ reset_password_email?: undefined;
200
+ endpointUrl?: undefined;
201
+ host?: undefined;
202
+ username?: undefined;
203
+ port?: undefined;
204
+ protocol?: undefined;
205
+ type?: undefined;
206
+ name?: undefined;
207
+ accessToken?: undefined;
208
+ id?: undefined;
209
+ apiKey?: undefined;
210
+ apiSecret?: undefined;
211
+ } | {
212
+ endpointUrl: string;
213
+ appId: string;
214
+ appSecret: string;
215
+ location: string;
216
+ bucket: string;
217
+ region: string;
218
+ email?: undefined;
219
+ password?: undefined;
220
+ reset_password_email?: undefined;
221
+ host?: undefined;
222
+ username?: undefined;
223
+ port?: undefined;
224
+ protocol?: undefined;
225
+ type?: undefined;
226
+ name?: undefined;
227
+ accessToken?: undefined;
228
+ id?: undefined;
229
+ apiKey?: undefined;
230
+ apiSecret?: undefined;
231
+ } | {
232
+ host: string;
233
+ username: string;
234
+ password: string;
235
+ location: string;
236
+ port: string;
237
+ email?: undefined;
238
+ reset_password_email?: undefined;
239
+ appId?: undefined;
240
+ appSecret?: undefined;
241
+ bucket?: undefined;
242
+ region?: undefined;
243
+ endpointUrl?: undefined;
244
+ protocol?: undefined;
245
+ type?: undefined;
246
+ name?: undefined;
247
+ accessToken?: undefined;
248
+ id?: undefined;
249
+ apiKey?: undefined;
250
+ apiSecret?: undefined;
251
+ } | {
252
+ protocol: string;
253
+ host: string;
254
+ username: string;
255
+ password: string;
256
+ location: string;
257
+ port: number;
258
+ email?: undefined;
259
+ reset_password_email?: undefined;
260
+ appId?: undefined;
261
+ appSecret?: undefined;
262
+ bucket?: undefined;
263
+ region?: undefined;
264
+ endpointUrl?: undefined;
265
+ type?: undefined;
266
+ name?: undefined;
267
+ accessToken?: undefined;
268
+ id?: undefined;
269
+ apiKey?: undefined;
270
+ apiSecret?: undefined;
271
+ } | {
272
+ type: string;
273
+ name: string;
274
+ accessToken: string;
275
+ id: string;
276
+ email?: undefined;
277
+ password?: undefined;
278
+ reset_password_email?: undefined;
279
+ appId?: undefined;
280
+ appSecret?: undefined;
281
+ location?: undefined;
282
+ bucket?: undefined;
283
+ region?: undefined;
284
+ endpointUrl?: undefined;
285
+ host?: undefined;
286
+ username?: undefined;
287
+ port?: undefined;
288
+ protocol?: undefined;
289
+ apiKey?: undefined;
290
+ apiSecret?: undefined;
291
+ } | {
292
+ apiKey: string;
293
+ apiSecret: string;
294
+ email?: undefined;
295
+ password?: undefined;
296
+ reset_password_email?: undefined;
297
+ appId?: undefined;
298
+ appSecret?: undefined;
299
+ location?: undefined;
300
+ bucket?: undefined;
301
+ region?: undefined;
302
+ endpointUrl?: undefined;
303
+ host?: undefined;
304
+ username?: undefined;
305
+ port?: undefined;
306
+ protocol?: undefined;
307
+ type?: undefined;
308
+ name?: undefined;
309
+ accessToken?: undefined;
310
+ id?: undefined;
311
+ };
312
+ };
313
+ external_urls: {
314
+ ApiUrl: string;
315
+ BlackBlazeHelp: string;
316
+ checkForUpdateUrl: string;
317
+ };
318
+ isCloudStorageS3Compatibility(provider: string): boolean;
319
+ gistUrls: {
320
+ viewItems: {
321
+ github: string;
322
+ gitee: string;
323
+ gitlab: string;
324
+ };
325
+ github: string;
326
+ gitee: string;
327
+ gitlab: string;
328
+ };
329
+ donationUrl: string;
330
+ pluginUrl: string;
331
+ };
332
+ isPreloadingSavedConfig: boolean;
333
+ isSettingSaved: boolean;
334
+ isCheckLoginSuccess: boolean;
335
+ isSyncingProgress: boolean;
336
+ isFormProcessing: boolean;
337
+ passwordFieldType: string;
338
+ protocol: {
339
+ value: string;
340
+ name: string;
341
+ }[];
342
+ form: formData;
343
+ constructor(config: ConfigService, platform: PlatformService, toast: ToastrService);
344
+ ngOnInit(): void;
345
+ toggleViewPassword(): void;
346
+ testConnection(): Promise<void>;
347
+ saveSettings(): Promise<void>;
348
+ cancelSaveSettings(): void;
349
+ removeSavedSettings(): Promise<void>;
350
+ }
351
+ export {};