@lasuillard/raindrop-client 0.8.2 → 0.9.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.
- package/README.md +1 -1
- package/dist/index.d.mts +79 -3169
- package/dist/index.d.ts +79 -3169
- package/dist/index.js +106 -135
- package/dist/index.mjs +106 -135
- package/package.json +11 -10
package/dist/index.d.ts
CHANGED
|
@@ -12,11 +12,23 @@ import { AxiosInstance, RawAxiosRequestConfig, AxiosPromise, AxiosRequestConfig,
|
|
|
12
12
|
* https://openapi-generator.tech
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
|
+
interface AWSv4Configuration {
|
|
16
|
+
options?: {
|
|
17
|
+
region?: string;
|
|
18
|
+
service?: string;
|
|
19
|
+
};
|
|
20
|
+
credentials?: {
|
|
21
|
+
accessKeyId?: string;
|
|
22
|
+
secretAccessKey?: string;
|
|
23
|
+
sessionToken?: string;
|
|
24
|
+
};
|
|
25
|
+
}
|
|
15
26
|
interface ConfigurationParameters {
|
|
16
27
|
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
17
28
|
username?: string;
|
|
18
29
|
password?: string;
|
|
19
30
|
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
31
|
+
awsv4?: AWSv4Configuration;
|
|
20
32
|
basePath?: string;
|
|
21
33
|
serverIndex?: number;
|
|
22
34
|
baseOptions?: any;
|
|
@@ -26,49 +38,43 @@ declare class Configuration {
|
|
|
26
38
|
/**
|
|
27
39
|
* parameter for apiKey security
|
|
28
40
|
* @param name security name
|
|
29
|
-
* @memberof Configuration
|
|
30
41
|
*/
|
|
31
42
|
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
32
43
|
/**
|
|
33
44
|
* parameter for basic security
|
|
34
|
-
*
|
|
35
|
-
* @type {string}
|
|
36
|
-
* @memberof Configuration
|
|
37
45
|
*/
|
|
38
46
|
username?: string;
|
|
39
47
|
/**
|
|
40
48
|
* parameter for basic security
|
|
41
|
-
*
|
|
42
|
-
* @type {string}
|
|
43
|
-
* @memberof Configuration
|
|
44
49
|
*/
|
|
45
50
|
password?: string;
|
|
46
51
|
/**
|
|
47
52
|
* parameter for oauth2 security
|
|
48
53
|
* @param name security name
|
|
49
54
|
* @param scopes oauth2 scope
|
|
50
|
-
* @memberof Configuration
|
|
51
55
|
*/
|
|
52
56
|
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
53
57
|
/**
|
|
54
|
-
*
|
|
55
|
-
*
|
|
56
|
-
* @
|
|
58
|
+
* parameter for aws4 signature security
|
|
59
|
+
* @param {Object} AWS4Signature - AWS4 Signature security
|
|
60
|
+
* @param {string} options.region - aws region
|
|
61
|
+
* @param {string} options.service - name of the service.
|
|
62
|
+
* @param {string} credentials.accessKeyId - aws access key id
|
|
63
|
+
* @param {string} credentials.secretAccessKey - aws access key
|
|
64
|
+
* @param {string} credentials.sessionToken - aws session token
|
|
57
65
|
* @memberof Configuration
|
|
58
66
|
*/
|
|
67
|
+
awsv4?: AWSv4Configuration;
|
|
68
|
+
/**
|
|
69
|
+
* override base path
|
|
70
|
+
*/
|
|
59
71
|
basePath?: string;
|
|
60
72
|
/**
|
|
61
73
|
* override server index
|
|
62
|
-
*
|
|
63
|
-
* @type {number}
|
|
64
|
-
* @memberof Configuration
|
|
65
74
|
*/
|
|
66
75
|
serverIndex?: number;
|
|
67
76
|
/**
|
|
68
77
|
* base options for axios calls
|
|
69
|
-
*
|
|
70
|
-
* @type {any}
|
|
71
|
-
* @memberof Configuration
|
|
72
78
|
*/
|
|
73
79
|
baseOptions?: any;
|
|
74
80
|
/**
|
|
@@ -105,20 +111,10 @@ declare class Configuration {
|
|
|
105
111
|
* Do not edit the class manually.
|
|
106
112
|
*/
|
|
107
113
|
|
|
108
|
-
/**
|
|
109
|
-
*
|
|
110
|
-
* @export
|
|
111
|
-
* @interface RequestArgs
|
|
112
|
-
*/
|
|
113
114
|
interface RequestArgs {
|
|
114
115
|
url: string;
|
|
115
116
|
options: RawAxiosRequestConfig;
|
|
116
117
|
}
|
|
117
|
-
/**
|
|
118
|
-
*
|
|
119
|
-
* @export
|
|
120
|
-
* @class BaseAPI
|
|
121
|
-
*/
|
|
122
118
|
declare class BaseAPI {
|
|
123
119
|
protected basePath: string;
|
|
124
120
|
protected axios: AxiosInstance;
|
|
@@ -126,3721 +122,744 @@ declare class BaseAPI {
|
|
|
126
122
|
constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
|
|
127
123
|
}
|
|
128
124
|
|
|
129
|
-
/**
|
|
130
|
-
*
|
|
131
|
-
* @export
|
|
132
|
-
* @interface AcceptInvitation200Response
|
|
133
|
-
*/
|
|
134
125
|
interface AcceptInvitation200Response {
|
|
135
|
-
/**
|
|
136
|
-
*
|
|
137
|
-
* @type {boolean}
|
|
138
|
-
* @memberof AcceptInvitation200Response
|
|
139
|
-
*/
|
|
140
126
|
'result'?: boolean;
|
|
141
|
-
/**
|
|
142
|
-
*
|
|
143
|
-
* @type {Role}
|
|
144
|
-
* @memberof AcceptInvitation200Response
|
|
145
|
-
*/
|
|
146
127
|
'role'?: Role;
|
|
147
128
|
}
|
|
148
|
-
/**
|
|
149
|
-
*
|
|
150
|
-
* @export
|
|
151
|
-
* @interface ChangeCollaboratorAccessLevelRequest
|
|
152
|
-
*/
|
|
153
129
|
interface ChangeCollaboratorAccessLevelRequest {
|
|
154
|
-
/**
|
|
155
|
-
*
|
|
156
|
-
* @type {Role}
|
|
157
|
-
* @memberof ChangeCollaboratorAccessLevelRequest
|
|
158
|
-
*/
|
|
159
130
|
'role'?: Role;
|
|
160
131
|
}
|
|
161
|
-
/**
|
|
162
|
-
*
|
|
163
|
-
* @export
|
|
164
|
-
* @interface CheckURLsExistRequest
|
|
165
|
-
*/
|
|
166
132
|
interface CheckURLsExistRequest {
|
|
167
|
-
/**
|
|
168
|
-
*
|
|
169
|
-
* @type {Array<string>}
|
|
170
|
-
* @memberof CheckURLsExistRequest
|
|
171
|
-
*/
|
|
172
133
|
'urls'?: Array<string>;
|
|
173
134
|
}
|
|
174
|
-
/**
|
|
175
|
-
*
|
|
176
|
-
* @export
|
|
177
|
-
* @interface CheckURLsExistResponse
|
|
178
|
-
*/
|
|
179
135
|
interface CheckURLsExistResponse {
|
|
180
|
-
/**
|
|
181
|
-
*
|
|
182
|
-
* @type {boolean}
|
|
183
|
-
* @memberof CheckURLsExistResponse
|
|
184
|
-
*/
|
|
185
136
|
'result': boolean;
|
|
186
|
-
/**
|
|
187
|
-
*
|
|
188
|
-
* @type {Array<number>}
|
|
189
|
-
* @memberof CheckURLsExistResponse
|
|
190
|
-
*/
|
|
191
137
|
'ids': Array<number>;
|
|
192
|
-
/**
|
|
193
|
-
*
|
|
194
|
-
* @type {Array<CheckURLsExistResponseDuplicatesInner>}
|
|
195
|
-
* @memberof CheckURLsExistResponse
|
|
196
|
-
*/
|
|
197
138
|
'duplicates': Array<CheckURLsExistResponseDuplicatesInner>;
|
|
198
|
-
/**
|
|
199
|
-
*
|
|
200
|
-
* @type {number}
|
|
201
|
-
* @memberof CheckURLsExistResponse
|
|
202
|
-
*/
|
|
203
139
|
'id': number;
|
|
204
140
|
}
|
|
205
|
-
/**
|
|
206
|
-
*
|
|
207
|
-
* @export
|
|
208
|
-
* @interface CheckURLsExistResponseDuplicatesInner
|
|
209
|
-
*/
|
|
210
141
|
interface CheckURLsExistResponseDuplicatesInner {
|
|
211
|
-
/**
|
|
212
|
-
*
|
|
213
|
-
* @type {number}
|
|
214
|
-
* @memberof CheckURLsExistResponseDuplicatesInner
|
|
215
|
-
*/
|
|
216
142
|
'_id': number;
|
|
217
|
-
/**
|
|
218
|
-
*
|
|
219
|
-
* @type {string}
|
|
220
|
-
* @memberof CheckURLsExistResponseDuplicatesInner
|
|
221
|
-
*/
|
|
222
143
|
'link': string;
|
|
223
144
|
}
|
|
224
|
-
/**
|
|
225
|
-
*
|
|
226
|
-
* @export
|
|
227
|
-
* @interface Collection
|
|
228
|
-
*/
|
|
229
145
|
interface Collection {
|
|
230
|
-
/**
|
|
231
|
-
*
|
|
232
|
-
* @type {number}
|
|
233
|
-
* @memberof Collection
|
|
234
|
-
*/
|
|
235
146
|
'_id': number;
|
|
236
|
-
/**
|
|
237
|
-
*
|
|
238
|
-
* @type {string}
|
|
239
|
-
* @memberof Collection
|
|
240
|
-
*/
|
|
241
147
|
'title': string;
|
|
242
|
-
/**
|
|
243
|
-
*
|
|
244
|
-
* @type {string}
|
|
245
|
-
* @memberof Collection
|
|
246
|
-
*/
|
|
247
148
|
'description': string;
|
|
248
|
-
/**
|
|
249
|
-
*
|
|
250
|
-
* @type {UserRef}
|
|
251
|
-
* @memberof Collection
|
|
252
|
-
*/
|
|
253
149
|
'user': UserRef;
|
|
254
|
-
/**
|
|
255
|
-
*
|
|
256
|
-
* @type {boolean}
|
|
257
|
-
* @memberof Collection
|
|
258
|
-
*/
|
|
259
150
|
'public': boolean;
|
|
260
|
-
/**
|
|
261
|
-
*
|
|
262
|
-
* @type {string}
|
|
263
|
-
* @memberof Collection
|
|
264
|
-
*/
|
|
265
151
|
'view': string;
|
|
266
|
-
/**
|
|
267
|
-
*
|
|
268
|
-
* @type {number}
|
|
269
|
-
* @memberof Collection
|
|
270
|
-
*/
|
|
271
152
|
'count': number;
|
|
272
|
-
/**
|
|
273
|
-
*
|
|
274
|
-
* @type {Array<string>}
|
|
275
|
-
* @memberof Collection
|
|
276
|
-
*/
|
|
277
153
|
'cover': Array<string>;
|
|
278
|
-
/**
|
|
279
|
-
*
|
|
280
|
-
* @type {number}
|
|
281
|
-
* @memberof Collection
|
|
282
|
-
*/
|
|
283
154
|
'sort': number;
|
|
284
|
-
/**
|
|
285
|
-
*
|
|
286
|
-
* @type {boolean}
|
|
287
|
-
* @memberof Collection
|
|
288
|
-
*/
|
|
289
155
|
'expanded': boolean;
|
|
290
|
-
/**
|
|
291
|
-
*
|
|
292
|
-
* @type {CreatorRef}
|
|
293
|
-
* @memberof Collection
|
|
294
|
-
*/
|
|
295
156
|
'creatorRef': CreatorRef;
|
|
296
|
-
/**
|
|
297
|
-
*
|
|
298
|
-
* @type {string}
|
|
299
|
-
* @memberof Collection
|
|
300
|
-
*/
|
|
301
157
|
'lastAction': string;
|
|
302
|
-
/**
|
|
303
|
-
*
|
|
304
|
-
* @type {string}
|
|
305
|
-
* @memberof Collection
|
|
306
|
-
*/
|
|
307
158
|
'created': string;
|
|
308
|
-
/**
|
|
309
|
-
*
|
|
310
|
-
* @type {string}
|
|
311
|
-
* @memberof Collection
|
|
312
|
-
*/
|
|
313
159
|
'lastUpdate': string;
|
|
314
|
-
/**
|
|
315
|
-
*
|
|
316
|
-
* @type {string}
|
|
317
|
-
* @memberof Collection
|
|
318
|
-
*/
|
|
319
160
|
'slug': string;
|
|
320
|
-
/**
|
|
321
|
-
*
|
|
322
|
-
* @type {string}
|
|
323
|
-
* @memberof Collection
|
|
324
|
-
*/
|
|
325
161
|
'color'?: string;
|
|
326
|
-
/**
|
|
327
|
-
*
|
|
328
|
-
* @type {CollectionAccess}
|
|
329
|
-
* @memberof Collection
|
|
330
|
-
*/
|
|
331
162
|
'access': CollectionAccess;
|
|
332
|
-
/**
|
|
333
|
-
*
|
|
334
|
-
* @type {boolean}
|
|
335
|
-
* @memberof Collection
|
|
336
|
-
*/
|
|
337
163
|
'author': boolean;
|
|
338
|
-
/**
|
|
339
|
-
*
|
|
340
|
-
* @type {object}
|
|
341
|
-
* @memberof Collection
|
|
342
|
-
*/
|
|
343
164
|
'parent': object | null;
|
|
344
165
|
}
|
|
345
|
-
/**
|
|
346
|
-
*
|
|
347
|
-
* @export
|
|
348
|
-
* @interface CollectionAccess
|
|
349
|
-
*/
|
|
350
166
|
interface CollectionAccess {
|
|
351
|
-
/**
|
|
352
|
-
*
|
|
353
|
-
* @type {boolean}
|
|
354
|
-
* @memberof CollectionAccess
|
|
355
|
-
*/
|
|
356
167
|
'draggable': boolean;
|
|
357
|
-
/**
|
|
358
|
-
*
|
|
359
|
-
* @type {number}
|
|
360
|
-
* @memberof CollectionAccess
|
|
361
|
-
*/
|
|
362
168
|
'for': number;
|
|
363
|
-
/**
|
|
364
|
-
*
|
|
365
|
-
* @type {number}
|
|
366
|
-
* @memberof CollectionAccess
|
|
367
|
-
*/
|
|
368
169
|
'level': number;
|
|
369
|
-
/**
|
|
370
|
-
*
|
|
371
|
-
* @type {boolean}
|
|
372
|
-
* @memberof CollectionAccess
|
|
373
|
-
*/
|
|
374
170
|
'root': boolean;
|
|
375
171
|
}
|
|
376
|
-
/**
|
|
377
|
-
*
|
|
378
|
-
* @export
|
|
379
|
-
* @interface CollectionRef
|
|
380
|
-
*/
|
|
381
172
|
interface CollectionRef {
|
|
382
|
-
/**
|
|
383
|
-
*
|
|
384
|
-
* @type {string}
|
|
385
|
-
* @memberof CollectionRef
|
|
386
|
-
*/
|
|
387
173
|
'$ref': CollectionRefRefEnum;
|
|
388
|
-
/**
|
|
389
|
-
*
|
|
390
|
-
* @type {number}
|
|
391
|
-
* @memberof CollectionRef
|
|
392
|
-
*/
|
|
393
174
|
'$id': number;
|
|
394
|
-
/**
|
|
395
|
-
*
|
|
396
|
-
* @type {number}
|
|
397
|
-
* @memberof CollectionRef
|
|
398
|
-
*/
|
|
399
175
|
'oid'?: number;
|
|
400
176
|
}
|
|
401
177
|
declare const CollectionRefRefEnum: {
|
|
402
178
|
readonly Collections: "collections";
|
|
403
179
|
};
|
|
404
180
|
type CollectionRefRefEnum = typeof CollectionRefRefEnum[keyof typeof CollectionRefRefEnum];
|
|
405
|
-
/**
|
|
406
|
-
*
|
|
407
|
-
* @export
|
|
408
|
-
* @interface CreateCollectionRequest
|
|
409
|
-
*/
|
|
410
181
|
interface CreateCollectionRequest {
|
|
411
|
-
/**
|
|
412
|
-
*
|
|
413
|
-
* @type {string}
|
|
414
|
-
* @memberof CreateCollectionRequest
|
|
415
|
-
*/
|
|
416
182
|
'view': string;
|
|
417
|
-
/**
|
|
418
|
-
*
|
|
419
|
-
* @type {string}
|
|
420
|
-
* @memberof CreateCollectionRequest
|
|
421
|
-
*/
|
|
422
183
|
'title': string;
|
|
423
|
-
/**
|
|
424
|
-
*
|
|
425
|
-
* @type {number}
|
|
426
|
-
* @memberof CreateCollectionRequest
|
|
427
|
-
*/
|
|
428
184
|
'sort': number;
|
|
429
|
-
/**
|
|
430
|
-
*
|
|
431
|
-
* @type {boolean}
|
|
432
|
-
* @memberof CreateCollectionRequest
|
|
433
|
-
*/
|
|
434
185
|
'public': boolean;
|
|
435
|
-
/**
|
|
436
|
-
*
|
|
437
|
-
* @type {CollectionRef}
|
|
438
|
-
* @memberof CreateCollectionRequest
|
|
439
|
-
*/
|
|
440
186
|
'parent'?: CollectionRef | null;
|
|
441
|
-
/**
|
|
442
|
-
*
|
|
443
|
-
* @type {Array<string>}
|
|
444
|
-
* @memberof CreateCollectionRequest
|
|
445
|
-
*/
|
|
446
187
|
'cover': Array<string>;
|
|
447
188
|
}
|
|
448
|
-
/**
|
|
449
|
-
*
|
|
450
|
-
* @export
|
|
451
|
-
* @interface CreateCollectionResponse
|
|
452
|
-
*/
|
|
453
189
|
interface CreateCollectionResponse {
|
|
454
|
-
/**
|
|
455
|
-
*
|
|
456
|
-
* @type {boolean}
|
|
457
|
-
* @memberof CreateCollectionResponse
|
|
458
|
-
*/
|
|
459
190
|
'result': boolean;
|
|
460
|
-
/**
|
|
461
|
-
*
|
|
462
|
-
* @type {CreateCollectionResponseItem}
|
|
463
|
-
* @memberof CreateCollectionResponse
|
|
464
|
-
*/
|
|
465
191
|
'item': CreateCollectionResponseItem;
|
|
466
192
|
}
|
|
467
|
-
/**
|
|
468
|
-
*
|
|
469
|
-
* @export
|
|
470
|
-
* @interface CreateCollectionResponseItem
|
|
471
|
-
*/
|
|
472
193
|
interface CreateCollectionResponseItem {
|
|
473
|
-
/**
|
|
474
|
-
*
|
|
475
|
-
* @type {number}
|
|
476
|
-
* @memberof CreateCollectionResponseItem
|
|
477
|
-
*/
|
|
478
194
|
'_id': number;
|
|
479
|
-
/**
|
|
480
|
-
*
|
|
481
|
-
* @type {string}
|
|
482
|
-
* @memberof CreateCollectionResponseItem
|
|
483
|
-
*/
|
|
484
195
|
'title': string;
|
|
485
|
-
/**
|
|
486
|
-
*
|
|
487
|
-
* @type {string}
|
|
488
|
-
* @memberof CreateCollectionResponseItem
|
|
489
|
-
*/
|
|
490
196
|
'description': string;
|
|
491
|
-
/**
|
|
492
|
-
*
|
|
493
|
-
* @type {UserRef}
|
|
494
|
-
* @memberof CreateCollectionResponseItem
|
|
495
|
-
*/
|
|
496
197
|
'user': UserRef;
|
|
497
|
-
/**
|
|
498
|
-
*
|
|
499
|
-
* @type {boolean}
|
|
500
|
-
* @memberof CreateCollectionResponseItem
|
|
501
|
-
*/
|
|
502
198
|
'public': boolean;
|
|
503
|
-
/**
|
|
504
|
-
*
|
|
505
|
-
* @type {string}
|
|
506
|
-
* @memberof CreateCollectionResponseItem
|
|
507
|
-
*/
|
|
508
199
|
'view': string;
|
|
509
|
-
/**
|
|
510
|
-
*
|
|
511
|
-
* @type {number}
|
|
512
|
-
* @memberof CreateCollectionResponseItem
|
|
513
|
-
*/
|
|
514
200
|
'count': number;
|
|
515
|
-
/**
|
|
516
|
-
*
|
|
517
|
-
* @type {Array<string>}
|
|
518
|
-
* @memberof CreateCollectionResponseItem
|
|
519
|
-
*/
|
|
520
201
|
'cover': Array<string>;
|
|
521
|
-
/**
|
|
522
|
-
*
|
|
523
|
-
* @type {number}
|
|
524
|
-
* @memberof CreateCollectionResponseItem
|
|
525
|
-
*/
|
|
526
202
|
'sort': number;
|
|
527
|
-
/**
|
|
528
|
-
*
|
|
529
|
-
* @type {boolean}
|
|
530
|
-
* @memberof CreateCollectionResponseItem
|
|
531
|
-
*/
|
|
532
203
|
'expanded': boolean;
|
|
533
|
-
/**
|
|
534
|
-
*
|
|
535
|
-
* @type {CreatorRef}
|
|
536
|
-
* @memberof CreateCollectionResponseItem
|
|
537
|
-
*/
|
|
538
204
|
'creatorRef': CreatorRef;
|
|
539
|
-
/**
|
|
540
|
-
*
|
|
541
|
-
* @type {string}
|
|
542
|
-
* @memberof CreateCollectionResponseItem
|
|
543
|
-
*/
|
|
544
205
|
'lastAction': string;
|
|
545
|
-
/**
|
|
546
|
-
*
|
|
547
|
-
* @type {string}
|
|
548
|
-
* @memberof CreateCollectionResponseItem
|
|
549
|
-
*/
|
|
550
206
|
'created': string;
|
|
551
|
-
/**
|
|
552
|
-
*
|
|
553
|
-
* @type {string}
|
|
554
|
-
* @memberof CreateCollectionResponseItem
|
|
555
|
-
*/
|
|
556
207
|
'lastUpdate': string;
|
|
557
|
-
/**
|
|
558
|
-
*
|
|
559
|
-
* @type {string}
|
|
560
|
-
* @memberof CreateCollectionResponseItem
|
|
561
|
-
*/
|
|
562
208
|
'slug': string;
|
|
563
|
-
/**
|
|
564
|
-
*
|
|
565
|
-
* @type {string}
|
|
566
|
-
* @memberof CreateCollectionResponseItem
|
|
567
|
-
*/
|
|
568
209
|
'color'?: string;
|
|
569
|
-
/**
|
|
570
|
-
*
|
|
571
|
-
* @type {CollectionAccess}
|
|
572
|
-
* @memberof CreateCollectionResponseItem
|
|
573
|
-
*/
|
|
574
210
|
'access': CollectionAccess;
|
|
575
|
-
/**
|
|
576
|
-
*
|
|
577
|
-
* @type {boolean}
|
|
578
|
-
* @memberof CreateCollectionResponseItem
|
|
579
|
-
*/
|
|
580
211
|
'author': boolean;
|
|
581
|
-
/**
|
|
582
|
-
*
|
|
583
|
-
* @type {object}
|
|
584
|
-
* @memberof CreateCollectionResponseItem
|
|
585
|
-
*/
|
|
586
212
|
'parent': object | null;
|
|
587
|
-
/**
|
|
588
|
-
*
|
|
589
|
-
* @type {number}
|
|
590
|
-
* @memberof CreateCollectionResponseItem
|
|
591
|
-
*/
|
|
592
213
|
'__v': number;
|
|
593
214
|
}
|
|
594
|
-
/**
|
|
595
|
-
*
|
|
596
|
-
* @export
|
|
597
|
-
* @interface CreateRaindropRequest
|
|
598
|
-
*/
|
|
599
215
|
interface CreateRaindropRequest {
|
|
600
|
-
/**
|
|
601
|
-
*
|
|
602
|
-
* @type {object}
|
|
603
|
-
* @memberof CreateRaindropRequest
|
|
604
|
-
*/
|
|
605
216
|
'pleaseParse'?: object;
|
|
606
|
-
/**
|
|
607
|
-
*
|
|
608
|
-
* @type {string}
|
|
609
|
-
* @memberof CreateRaindropRequest
|
|
610
|
-
*/
|
|
611
217
|
'created'?: string;
|
|
612
|
-
/**
|
|
613
|
-
*
|
|
614
|
-
* @type {string}
|
|
615
|
-
* @memberof CreateRaindropRequest
|
|
616
|
-
*/
|
|
617
218
|
'lastUpdate'?: string;
|
|
618
|
-
/**
|
|
619
|
-
*
|
|
620
|
-
* @type {number}
|
|
621
|
-
* @memberof CreateRaindropRequest
|
|
622
|
-
*/
|
|
623
219
|
'order'?: number;
|
|
624
|
-
/**
|
|
625
|
-
*
|
|
626
|
-
* @type {boolean}
|
|
627
|
-
* @memberof CreateRaindropRequest
|
|
628
|
-
*/
|
|
629
220
|
'important'?: boolean;
|
|
630
|
-
/**
|
|
631
|
-
*
|
|
632
|
-
* @type {Array<string>}
|
|
633
|
-
* @memberof CreateRaindropRequest
|
|
634
|
-
*/
|
|
635
221
|
'tags'?: Array<string>;
|
|
636
|
-
/**
|
|
637
|
-
*
|
|
638
|
-
* @type {Array<ParseURLResponseItemMediaInner>}
|
|
639
|
-
* @memberof CreateRaindropRequest
|
|
640
|
-
*/
|
|
641
222
|
'media'?: Array<ParseURLResponseItemMediaInner>;
|
|
642
|
-
/**
|
|
643
|
-
*
|
|
644
|
-
* @type {string}
|
|
645
|
-
* @memberof CreateRaindropRequest
|
|
646
|
-
*/
|
|
647
223
|
'cover'?: string;
|
|
648
|
-
/**
|
|
649
|
-
*
|
|
650
|
-
* @type {CreateRaindropRequestCollection}
|
|
651
|
-
* @memberof CreateRaindropRequest
|
|
652
|
-
*/
|
|
653
224
|
'collection'?: CreateRaindropRequestCollection;
|
|
654
|
-
/**
|
|
655
|
-
*
|
|
656
|
-
* @type {string}
|
|
657
|
-
* @memberof CreateRaindropRequest
|
|
658
|
-
*/
|
|
659
225
|
'type'?: string;
|
|
660
|
-
/**
|
|
661
|
-
*
|
|
662
|
-
* @type {string}
|
|
663
|
-
* @memberof CreateRaindropRequest
|
|
664
|
-
*/
|
|
665
226
|
'excerpt'?: string;
|
|
666
|
-
/**
|
|
667
|
-
*
|
|
668
|
-
* @type {string}
|
|
669
|
-
* @memberof CreateRaindropRequest
|
|
670
|
-
*/
|
|
671
227
|
'title'?: string;
|
|
672
|
-
/**
|
|
673
|
-
*
|
|
674
|
-
* @type {string}
|
|
675
|
-
* @memberof CreateRaindropRequest
|
|
676
|
-
*/
|
|
677
228
|
'link': string;
|
|
678
|
-
/**
|
|
679
|
-
*
|
|
680
|
-
* @type {Array<CreateRaindropRequestHighlightsInner>}
|
|
681
|
-
* @memberof CreateRaindropRequest
|
|
682
|
-
*/
|
|
683
229
|
'highlights'?: Array<CreateRaindropRequestHighlightsInner>;
|
|
684
|
-
/**
|
|
685
|
-
*
|
|
686
|
-
* @type {object}
|
|
687
|
-
* @memberof CreateRaindropRequest
|
|
688
|
-
*/
|
|
689
230
|
'reminder'?: object;
|
|
690
231
|
}
|
|
691
|
-
/**
|
|
692
|
-
*
|
|
693
|
-
* @export
|
|
694
|
-
* @interface CreateRaindropRequestCollection
|
|
695
|
-
*/
|
|
696
232
|
interface CreateRaindropRequestCollection {
|
|
697
|
-
/**
|
|
698
|
-
*
|
|
699
|
-
* @type {number}
|
|
700
|
-
* @memberof CreateRaindropRequestCollection
|
|
701
|
-
*/
|
|
702
233
|
'$id': number;
|
|
703
234
|
}
|
|
704
|
-
/**
|
|
705
|
-
*
|
|
706
|
-
* @export
|
|
707
|
-
* @interface CreateRaindropRequestHighlightsInner
|
|
708
|
-
*/
|
|
709
235
|
interface CreateRaindropRequestHighlightsInner {
|
|
710
|
-
/**
|
|
711
|
-
*
|
|
712
|
-
* @type {string}
|
|
713
|
-
* @memberof CreateRaindropRequestHighlightsInner
|
|
714
|
-
*/
|
|
715
236
|
'text': string;
|
|
716
|
-
/**
|
|
717
|
-
*
|
|
718
|
-
* @type {string}
|
|
719
|
-
* @memberof CreateRaindropRequestHighlightsInner
|
|
720
|
-
*/
|
|
721
237
|
'note': string;
|
|
722
238
|
}
|
|
723
|
-
/**
|
|
724
|
-
*
|
|
725
|
-
* @export
|
|
726
|
-
* @interface CreateRaindropResponse
|
|
727
|
-
*/
|
|
728
239
|
interface CreateRaindropResponse {
|
|
729
|
-
/**
|
|
730
|
-
*
|
|
731
|
-
* @type {boolean}
|
|
732
|
-
* @memberof CreateRaindropResponse
|
|
733
|
-
*/
|
|
734
240
|
'result': boolean;
|
|
735
|
-
/**
|
|
736
|
-
*
|
|
737
|
-
* @type {CreateRaindropResponseItem}
|
|
738
|
-
* @memberof CreateRaindropResponse
|
|
739
|
-
*/
|
|
740
241
|
'item': CreateRaindropResponseItem;
|
|
741
242
|
}
|
|
742
|
-
/**
|
|
743
|
-
*
|
|
744
|
-
* @export
|
|
745
|
-
* @interface CreateRaindropResponseItem
|
|
746
|
-
*/
|
|
747
243
|
interface CreateRaindropResponseItem {
|
|
748
|
-
/**
|
|
749
|
-
*
|
|
750
|
-
* @type {number}
|
|
751
|
-
* @memberof CreateRaindropResponseItem
|
|
752
|
-
*/
|
|
753
244
|
'__v': number;
|
|
754
|
-
/**
|
|
755
|
-
*
|
|
756
|
-
* @type {number}
|
|
757
|
-
* @memberof CreateRaindropResponseItem
|
|
758
|
-
*/
|
|
759
245
|
'_id': number;
|
|
760
|
-
/**
|
|
761
|
-
*
|
|
762
|
-
* @type {CollectionRef}
|
|
763
|
-
* @memberof CreateRaindropResponseItem
|
|
764
|
-
*/
|
|
765
246
|
'collection': CollectionRef | null;
|
|
766
|
-
/**
|
|
767
|
-
*
|
|
768
|
-
* @type {number}
|
|
769
|
-
* @memberof CreateRaindropResponseItem
|
|
770
|
-
*/
|
|
771
247
|
'collectionId': number;
|
|
772
|
-
/**
|
|
773
|
-
*
|
|
774
|
-
* @type {string}
|
|
775
|
-
* @memberof CreateRaindropResponseItem
|
|
776
|
-
*/
|
|
777
248
|
'cover': string;
|
|
778
|
-
/**
|
|
779
|
-
*
|
|
780
|
-
* @type {string}
|
|
781
|
-
* @memberof CreateRaindropResponseItem
|
|
782
|
-
*/
|
|
783
249
|
'created': string;
|
|
784
|
-
/**
|
|
785
|
-
*
|
|
786
|
-
* @type {CreatorRef}
|
|
787
|
-
* @memberof CreateRaindropResponseItem
|
|
788
|
-
*/
|
|
789
250
|
'creatorRef': CreatorRef;
|
|
790
|
-
/**
|
|
791
|
-
*
|
|
792
|
-
* @type {string}
|
|
793
|
-
* @memberof CreateRaindropResponseItem
|
|
794
|
-
*/
|
|
795
251
|
'domain': string;
|
|
796
|
-
/**
|
|
797
|
-
*
|
|
798
|
-
* @type {string}
|
|
799
|
-
* @memberof CreateRaindropResponseItem
|
|
800
|
-
*/
|
|
801
252
|
'excerpt': string;
|
|
802
|
-
/**
|
|
803
|
-
*
|
|
804
|
-
* @type {string}
|
|
805
|
-
* @memberof CreateRaindropResponseItem
|
|
806
|
-
*/
|
|
807
253
|
'lastUpdate': string;
|
|
808
|
-
/**
|
|
809
|
-
*
|
|
810
|
-
* @type {string}
|
|
811
|
-
* @memberof CreateRaindropResponseItem
|
|
812
|
-
*/
|
|
813
254
|
'link': string;
|
|
814
|
-
/**
|
|
815
|
-
*
|
|
816
|
-
* @type {Array<CreateRaindropResponseItemMediaInner>}
|
|
817
|
-
* @memberof CreateRaindropResponseItem
|
|
818
|
-
*/
|
|
819
255
|
'media': Array<CreateRaindropResponseItemMediaInner>;
|
|
820
|
-
/**
|
|
821
|
-
*
|
|
822
|
-
* @type {string}
|
|
823
|
-
* @memberof CreateRaindropResponseItem
|
|
824
|
-
*/
|
|
825
256
|
'note': string;
|
|
826
|
-
/**
|
|
827
|
-
*
|
|
828
|
-
* @type {boolean}
|
|
829
|
-
* @memberof CreateRaindropResponseItem
|
|
830
|
-
*/
|
|
831
257
|
'removed': boolean;
|
|
832
|
-
/**
|
|
833
|
-
*
|
|
834
|
-
* @type {number}
|
|
835
|
-
* @memberof CreateRaindropResponseItem
|
|
836
|
-
*/
|
|
837
258
|
'sort': number;
|
|
838
|
-
/**
|
|
839
|
-
*
|
|
840
|
-
* @type {Array<string>}
|
|
841
|
-
* @memberof CreateRaindropResponseItem
|
|
842
|
-
*/
|
|
843
259
|
'tags': Array<string>;
|
|
844
|
-
/**
|
|
845
|
-
*
|
|
846
|
-
* @type {string}
|
|
847
|
-
* @memberof CreateRaindropResponseItem
|
|
848
|
-
*/
|
|
849
260
|
'title': string;
|
|
850
|
-
/**
|
|
851
|
-
*
|
|
852
|
-
* @type {string}
|
|
853
|
-
* @memberof CreateRaindropResponseItem
|
|
854
|
-
*/
|
|
855
261
|
'type': string;
|
|
856
|
-
/**
|
|
857
|
-
*
|
|
858
|
-
* @type {UserRef}
|
|
859
|
-
* @memberof CreateRaindropResponseItem
|
|
860
|
-
*/
|
|
861
262
|
'user': UserRef;
|
|
862
263
|
}
|
|
863
|
-
/**
|
|
864
|
-
*
|
|
865
|
-
* @export
|
|
866
|
-
* @interface CreateRaindropResponseItemMediaInner
|
|
867
|
-
*/
|
|
868
264
|
interface CreateRaindropResponseItemMediaInner {
|
|
869
|
-
/**
|
|
870
|
-
*
|
|
871
|
-
* @type {string}
|
|
872
|
-
* @memberof CreateRaindropResponseItemMediaInner
|
|
873
|
-
*/
|
|
874
265
|
'link': string;
|
|
875
|
-
/**
|
|
876
|
-
*
|
|
877
|
-
* @type {string}
|
|
878
|
-
* @memberof CreateRaindropResponseItemMediaInner
|
|
879
|
-
*/
|
|
880
266
|
'type': string;
|
|
881
267
|
}
|
|
882
|
-
/**
|
|
883
|
-
*
|
|
884
|
-
* @export
|
|
885
|
-
* @interface CreateRaindropsResponse
|
|
886
|
-
*/
|
|
887
268
|
interface CreateRaindropsResponse {
|
|
888
|
-
/**
|
|
889
|
-
*
|
|
890
|
-
* @type {boolean}
|
|
891
|
-
* @memberof CreateRaindropsResponse
|
|
892
|
-
*/
|
|
893
269
|
'result': boolean;
|
|
894
|
-
/**
|
|
895
|
-
*
|
|
896
|
-
* @type {Array<UpdateRaindropResponseItem>}
|
|
897
|
-
* @memberof CreateRaindropsResponse
|
|
898
|
-
*/
|
|
899
270
|
'items': Array<UpdateRaindropResponseItem>;
|
|
900
271
|
}
|
|
901
272
|
/**
|
|
902
273
|
* @type CreatorRef
|
|
903
|
-
* @export
|
|
904
274
|
*/
|
|
905
275
|
type CreatorRef = CreatorRefOneOf | number;
|
|
906
|
-
/**
|
|
907
|
-
*
|
|
908
|
-
* @export
|
|
909
|
-
* @interface CreatorRefOneOf
|
|
910
|
-
*/
|
|
911
276
|
interface CreatorRefOneOf {
|
|
912
|
-
/**
|
|
913
|
-
*
|
|
914
|
-
* @type {number}
|
|
915
|
-
* @memberof CreatorRefOneOf
|
|
916
|
-
*/
|
|
917
277
|
'_id': number;
|
|
918
|
-
/**
|
|
919
|
-
*
|
|
920
|
-
* @type {string}
|
|
921
|
-
* @memberof CreatorRefOneOf
|
|
922
|
-
*/
|
|
923
278
|
'name': string;
|
|
924
|
-
/**
|
|
925
|
-
*
|
|
926
|
-
* @type {string}
|
|
927
|
-
* @memberof CreatorRefOneOf
|
|
928
|
-
*/
|
|
929
279
|
'email': string;
|
|
930
|
-
/**
|
|
931
|
-
*
|
|
932
|
-
* @type {string}
|
|
933
|
-
* @memberof CreatorRefOneOf
|
|
934
|
-
*/
|
|
935
280
|
'avatar'?: string;
|
|
936
281
|
}
|
|
937
|
-
/**
|
|
938
|
-
*
|
|
939
|
-
* @export
|
|
940
|
-
* @interface GetAllHighlightsResponse
|
|
941
|
-
*/
|
|
942
282
|
interface GetAllHighlightsResponse {
|
|
943
|
-
/**
|
|
944
|
-
*
|
|
945
|
-
* @type {boolean}
|
|
946
|
-
* @memberof GetAllHighlightsResponse
|
|
947
|
-
*/
|
|
948
283
|
'result': boolean;
|
|
949
|
-
/**
|
|
950
|
-
*
|
|
951
|
-
* @type {number}
|
|
952
|
-
* @memberof GetAllHighlightsResponse
|
|
953
|
-
*/
|
|
954
284
|
'count'?: number;
|
|
955
|
-
/**
|
|
956
|
-
*
|
|
957
|
-
* @type {Array<GetAllHighlightsResponseItemsInner>}
|
|
958
|
-
* @memberof GetAllHighlightsResponse
|
|
959
|
-
*/
|
|
960
285
|
'items': Array<GetAllHighlightsResponseItemsInner>;
|
|
961
286
|
}
|
|
962
|
-
/**
|
|
963
|
-
*
|
|
964
|
-
* @export
|
|
965
|
-
* @interface GetAllHighlightsResponseItemsInner
|
|
966
|
-
*/
|
|
967
287
|
interface GetAllHighlightsResponseItemsInner {
|
|
968
|
-
/**
|
|
969
|
-
*
|
|
970
|
-
* @type {string}
|
|
971
|
-
* @memberof GetAllHighlightsResponseItemsInner
|
|
972
|
-
*/
|
|
973
288
|
'link': string;
|
|
974
|
-
/**
|
|
975
|
-
*
|
|
976
|
-
* @type {string}
|
|
977
|
-
* @memberof GetAllHighlightsResponseItemsInner
|
|
978
|
-
*/
|
|
979
289
|
'title': string;
|
|
980
|
-
/**
|
|
981
|
-
*
|
|
982
|
-
* @type {Array<string>}
|
|
983
|
-
* @memberof GetAllHighlightsResponseItemsInner
|
|
984
|
-
*/
|
|
985
290
|
'tags': Array<string>;
|
|
986
|
-
/**
|
|
987
|
-
*
|
|
988
|
-
* @type {string}
|
|
989
|
-
* @memberof GetAllHighlightsResponseItemsInner
|
|
990
|
-
*/
|
|
991
291
|
'_id': string;
|
|
992
|
-
/**
|
|
993
|
-
*
|
|
994
|
-
* @type {string}
|
|
995
|
-
* @memberof GetAllHighlightsResponseItemsInner
|
|
996
|
-
*/
|
|
997
292
|
'text': string;
|
|
998
|
-
/**
|
|
999
|
-
*
|
|
1000
|
-
* @type {string}
|
|
1001
|
-
* @memberof GetAllHighlightsResponseItemsInner
|
|
1002
|
-
*/
|
|
1003
293
|
'note': string;
|
|
1004
|
-
/**
|
|
1005
|
-
*
|
|
1006
|
-
* @type {string}
|
|
1007
|
-
* @memberof GetAllHighlightsResponseItemsInner
|
|
1008
|
-
*/
|
|
1009
294
|
'created': string;
|
|
1010
|
-
/**
|
|
1011
|
-
*
|
|
1012
|
-
* @type {number}
|
|
1013
|
-
* @memberof GetAllHighlightsResponseItemsInner
|
|
1014
|
-
*/
|
|
1015
295
|
'raindropRef': number;
|
|
1016
296
|
}
|
|
1017
|
-
/**
|
|
1018
|
-
*
|
|
1019
|
-
* @export
|
|
1020
|
-
* @interface GetChildCollectionsResponse
|
|
1021
|
-
*/
|
|
1022
297
|
interface GetChildCollectionsResponse {
|
|
1023
|
-
/**
|
|
1024
|
-
*
|
|
1025
|
-
* @type {boolean}
|
|
1026
|
-
* @memberof GetChildCollectionsResponse
|
|
1027
|
-
*/
|
|
1028
298
|
'result': boolean;
|
|
1029
|
-
/**
|
|
1030
|
-
*
|
|
1031
|
-
* @type {Array<GetChildCollectionsResponseItemsInner>}
|
|
1032
|
-
* @memberof GetChildCollectionsResponse
|
|
1033
|
-
*/
|
|
1034
299
|
'items': Array<GetChildCollectionsResponseItemsInner>;
|
|
1035
300
|
}
|
|
1036
|
-
/**
|
|
1037
|
-
*
|
|
1038
|
-
* @export
|
|
1039
|
-
* @interface GetChildCollectionsResponseItemsInner
|
|
1040
|
-
*/
|
|
1041
301
|
interface GetChildCollectionsResponseItemsInner {
|
|
1042
|
-
/**
|
|
1043
|
-
*
|
|
1044
|
-
* @type {number}
|
|
1045
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1046
|
-
*/
|
|
1047
302
|
'_id': number;
|
|
1048
|
-
/**
|
|
1049
|
-
*
|
|
1050
|
-
* @type {string}
|
|
1051
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1052
|
-
*/
|
|
1053
303
|
'title': string;
|
|
1054
|
-
/**
|
|
1055
|
-
*
|
|
1056
|
-
* @type {string}
|
|
1057
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1058
|
-
*/
|
|
1059
304
|
'description': string;
|
|
1060
|
-
/**
|
|
1061
|
-
*
|
|
1062
|
-
* @type {UserRef}
|
|
1063
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1064
|
-
*/
|
|
1065
305
|
'user': UserRef;
|
|
1066
|
-
/**
|
|
1067
|
-
*
|
|
1068
|
-
* @type {boolean}
|
|
1069
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1070
|
-
*/
|
|
1071
306
|
'public': boolean;
|
|
1072
|
-
/**
|
|
1073
|
-
*
|
|
1074
|
-
* @type {string}
|
|
1075
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1076
|
-
*/
|
|
1077
307
|
'view': string;
|
|
1078
|
-
/**
|
|
1079
|
-
*
|
|
1080
|
-
* @type {number}
|
|
1081
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1082
|
-
*/
|
|
1083
308
|
'count': number;
|
|
1084
|
-
/**
|
|
1085
|
-
*
|
|
1086
|
-
* @type {Array<string>}
|
|
1087
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1088
|
-
*/
|
|
1089
309
|
'cover': Array<string>;
|
|
1090
|
-
/**
|
|
1091
|
-
*
|
|
1092
|
-
* @type {number}
|
|
1093
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1094
|
-
*/
|
|
1095
310
|
'sort': number;
|
|
1096
|
-
/**
|
|
1097
|
-
*
|
|
1098
|
-
* @type {boolean}
|
|
1099
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1100
|
-
*/
|
|
1101
311
|
'expanded': boolean;
|
|
1102
|
-
/**
|
|
1103
|
-
*
|
|
1104
|
-
* @type {CreatorRef}
|
|
1105
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1106
|
-
*/
|
|
1107
312
|
'creatorRef': CreatorRef;
|
|
1108
|
-
/**
|
|
1109
|
-
*
|
|
1110
|
-
* @type {string}
|
|
1111
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1112
|
-
*/
|
|
1113
313
|
'lastAction': string;
|
|
1114
|
-
/**
|
|
1115
|
-
*
|
|
1116
|
-
* @type {string}
|
|
1117
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1118
|
-
*/
|
|
1119
314
|
'created': string;
|
|
1120
|
-
/**
|
|
1121
|
-
*
|
|
1122
|
-
* @type {string}
|
|
1123
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1124
|
-
*/
|
|
1125
315
|
'lastUpdate': string;
|
|
1126
|
-
/**
|
|
1127
|
-
*
|
|
1128
|
-
* @type {string}
|
|
1129
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1130
|
-
*/
|
|
1131
316
|
'slug': string;
|
|
1132
|
-
/**
|
|
1133
|
-
*
|
|
1134
|
-
* @type {string}
|
|
1135
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1136
|
-
*/
|
|
1137
317
|
'color'?: string;
|
|
1138
|
-
/**
|
|
1139
|
-
*
|
|
1140
|
-
* @type {CollectionAccess}
|
|
1141
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1142
|
-
*/
|
|
1143
318
|
'access': CollectionAccess;
|
|
1144
|
-
/**
|
|
1145
|
-
*
|
|
1146
|
-
* @type {boolean}
|
|
1147
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1148
|
-
*/
|
|
1149
319
|
'author': boolean;
|
|
1150
|
-
/**
|
|
1151
|
-
*
|
|
1152
|
-
* @type {CollectionRef}
|
|
1153
|
-
* @memberof GetChildCollectionsResponseItemsInner
|
|
1154
|
-
*/
|
|
1155
320
|
'parent': CollectionRef | null;
|
|
1156
321
|
}
|
|
1157
|
-
/**
|
|
1158
|
-
*
|
|
1159
|
-
* @export
|
|
1160
|
-
* @interface GetCollectionResponse
|
|
1161
|
-
*/
|
|
1162
322
|
interface GetCollectionResponse {
|
|
1163
|
-
/**
|
|
1164
|
-
*
|
|
1165
|
-
* @type {boolean}
|
|
1166
|
-
* @memberof GetCollectionResponse
|
|
1167
|
-
*/
|
|
1168
323
|
'result'?: boolean;
|
|
1169
|
-
/**
|
|
1170
|
-
*
|
|
1171
|
-
* @type {Collection}
|
|
1172
|
-
* @memberof GetCollectionResponse
|
|
1173
|
-
*/
|
|
1174
324
|
'item'?: Collection;
|
|
1175
325
|
}
|
|
1176
|
-
/**
|
|
1177
|
-
*
|
|
1178
|
-
* @export
|
|
1179
|
-
* @interface GetCurrentUserResponse
|
|
1180
|
-
*/
|
|
1181
326
|
interface GetCurrentUserResponse {
|
|
1182
|
-
/**
|
|
1183
|
-
*
|
|
1184
|
-
* @type {boolean}
|
|
1185
|
-
* @memberof GetCurrentUserResponse
|
|
1186
|
-
*/
|
|
1187
327
|
'result': boolean;
|
|
1188
|
-
/**
|
|
1189
|
-
*
|
|
1190
|
-
* @type {User}
|
|
1191
|
-
* @memberof GetCurrentUserResponse
|
|
1192
|
-
*/
|
|
1193
328
|
'user': User;
|
|
1194
329
|
}
|
|
1195
|
-
/**
|
|
1196
|
-
*
|
|
1197
|
-
* @export
|
|
1198
|
-
* @interface GetFeaturedCoversResponse
|
|
1199
|
-
*/
|
|
1200
330
|
interface GetFeaturedCoversResponse {
|
|
1201
|
-
/**
|
|
1202
|
-
*
|
|
1203
|
-
* @type {boolean}
|
|
1204
|
-
* @memberof GetFeaturedCoversResponse
|
|
1205
|
-
*/
|
|
1206
331
|
'result': boolean;
|
|
1207
|
-
/**
|
|
1208
|
-
*
|
|
1209
|
-
* @type {Array<GetFeaturedCoversResponseItemsInner>}
|
|
1210
|
-
* @memberof GetFeaturedCoversResponse
|
|
1211
|
-
*/
|
|
1212
332
|
'items': Array<GetFeaturedCoversResponseItemsInner>;
|
|
1213
333
|
}
|
|
1214
|
-
/**
|
|
1215
|
-
*
|
|
1216
|
-
* @export
|
|
1217
|
-
* @interface GetFeaturedCoversResponseItemsInner
|
|
1218
|
-
*/
|
|
1219
334
|
interface GetFeaturedCoversResponseItemsInner {
|
|
1220
|
-
/**
|
|
1221
|
-
*
|
|
1222
|
-
* @type {string}
|
|
1223
|
-
* @memberof GetFeaturedCoversResponseItemsInner
|
|
1224
|
-
*/
|
|
1225
335
|
'title': string;
|
|
1226
|
-
/**
|
|
1227
|
-
*
|
|
1228
|
-
* @type {string}
|
|
1229
|
-
* @memberof GetFeaturedCoversResponseItemsInner
|
|
1230
|
-
*/
|
|
1231
336
|
'link'?: string;
|
|
1232
|
-
/**
|
|
1233
|
-
*
|
|
1234
|
-
* @type {number}
|
|
1235
|
-
* @memberof GetFeaturedCoversResponseItemsInner
|
|
1236
|
-
*/
|
|
1237
337
|
'sort'?: number;
|
|
1238
|
-
/**
|
|
1239
|
-
*
|
|
1240
|
-
* @type {Array<SearchCoversResponseItemsInnerIconsInner>}
|
|
1241
|
-
* @memberof GetFeaturedCoversResponseItemsInner
|
|
1242
|
-
*/
|
|
1243
338
|
'icons': Array<SearchCoversResponseItemsInnerIconsInner>;
|
|
1244
339
|
}
|
|
1245
|
-
/**
|
|
1246
|
-
*
|
|
1247
|
-
* @export
|
|
1248
|
-
* @interface GetFiltersResponse
|
|
1249
|
-
*/
|
|
1250
340
|
interface GetFiltersResponse {
|
|
1251
341
|
[key: string]: GetFiltersResponseCreatedInner | any;
|
|
1252
|
-
/**
|
|
1253
|
-
*
|
|
1254
|
-
* @type {boolean}
|
|
1255
|
-
* @memberof GetFiltersResponse
|
|
1256
|
-
*/
|
|
1257
342
|
'result': boolean;
|
|
1258
|
-
/**
|
|
1259
|
-
*
|
|
1260
|
-
* @type {number}
|
|
1261
|
-
* @memberof GetFiltersResponse
|
|
1262
|
-
*/
|
|
1263
343
|
'collectionId': number;
|
|
1264
|
-
/**
|
|
1265
|
-
*
|
|
1266
|
-
* @type {Array<GetFiltersResponseCreatedInner>}
|
|
1267
|
-
* @memberof GetFiltersResponse
|
|
1268
|
-
*/
|
|
1269
344
|
'created': Array<GetFiltersResponseCreatedInner>;
|
|
1270
|
-
/**
|
|
1271
|
-
*
|
|
1272
|
-
* @type {Array<GetFiltersResponseCreatedInner>}
|
|
1273
|
-
* @memberof GetFiltersResponse
|
|
1274
|
-
*/
|
|
1275
345
|
'tags': Array<GetFiltersResponseCreatedInner>;
|
|
1276
|
-
/**
|
|
1277
|
-
*
|
|
1278
|
-
* @type {Array<GetFiltersResponseCreatedInner>}
|
|
1279
|
-
* @memberof GetFiltersResponse
|
|
1280
|
-
*/
|
|
1281
346
|
'types': Array<GetFiltersResponseCreatedInner>;
|
|
1282
347
|
}
|
|
1283
|
-
/**
|
|
1284
|
-
*
|
|
1285
|
-
* @export
|
|
1286
|
-
* @interface GetFiltersResponseCreatedInner
|
|
1287
|
-
*/
|
|
1288
348
|
interface GetFiltersResponseCreatedInner {
|
|
1289
|
-
/**
|
|
1290
|
-
*
|
|
1291
|
-
* @type {string}
|
|
1292
|
-
* @memberof GetFiltersResponseCreatedInner
|
|
1293
|
-
*/
|
|
1294
349
|
'_id': string;
|
|
1295
|
-
/**
|
|
1296
|
-
*
|
|
1297
|
-
* @type {number}
|
|
1298
|
-
* @memberof GetFiltersResponseCreatedInner
|
|
1299
|
-
*/
|
|
1300
350
|
'count': number;
|
|
1301
351
|
}
|
|
1302
|
-
/**
|
|
1303
|
-
*
|
|
1304
|
-
* @export
|
|
1305
|
-
* @interface GetHighlightsInCollectionResponse
|
|
1306
|
-
*/
|
|
1307
352
|
interface GetHighlightsInCollectionResponse {
|
|
1308
|
-
/**
|
|
1309
|
-
*
|
|
1310
|
-
* @type {boolean}
|
|
1311
|
-
* @memberof GetHighlightsInCollectionResponse
|
|
1312
|
-
*/
|
|
1313
353
|
'result': boolean;
|
|
1314
|
-
/**
|
|
1315
|
-
*
|
|
1316
|
-
* @type {number}
|
|
1317
|
-
* @memberof GetHighlightsInCollectionResponse
|
|
1318
|
-
*/
|
|
1319
354
|
'count'?: number;
|
|
1320
|
-
/**
|
|
1321
|
-
*
|
|
1322
|
-
* @type {Array<GetAllHighlightsResponseItemsInner>}
|
|
1323
|
-
* @memberof GetHighlightsInCollectionResponse
|
|
1324
|
-
*/
|
|
1325
355
|
'items': Array<GetAllHighlightsResponseItemsInner>;
|
|
1326
356
|
}
|
|
1327
357
|
/**
|
|
1328
358
|
* @type GetOrRefreshToken200Response
|
|
1329
|
-
* @export
|
|
1330
359
|
*/
|
|
1331
360
|
type GetOrRefreshToken200Response = TokenErrorResponse | TokenResponse;
|
|
1332
361
|
/**
|
|
1333
362
|
* @type GetOrRefreshTokenRequest
|
|
1334
|
-
* @export
|
|
1335
363
|
*/
|
|
1336
364
|
type GetOrRefreshTokenRequest = ObtainToken | RefreshToken;
|
|
1337
|
-
/**
|
|
1338
|
-
*
|
|
1339
|
-
* @export
|
|
1340
|
-
* @interface GetPublicUserByNameResponse
|
|
1341
|
-
*/
|
|
1342
365
|
interface GetPublicUserByNameResponse {
|
|
1343
|
-
/**
|
|
1344
|
-
*
|
|
1345
|
-
* @type {boolean}
|
|
1346
|
-
* @memberof GetPublicUserByNameResponse
|
|
1347
|
-
*/
|
|
1348
366
|
'result': boolean;
|
|
1349
|
-
/**
|
|
1350
|
-
*
|
|
1351
|
-
* @type {GetPublicUserByNameResponseUser}
|
|
1352
|
-
* @memberof GetPublicUserByNameResponse
|
|
1353
|
-
*/
|
|
1354
367
|
'user': GetPublicUserByNameResponseUser;
|
|
1355
368
|
}
|
|
1356
|
-
/**
|
|
1357
|
-
*
|
|
1358
|
-
* @export
|
|
1359
|
-
* @interface GetPublicUserByNameResponseUser
|
|
1360
|
-
*/
|
|
1361
369
|
interface GetPublicUserByNameResponseUser {
|
|
1362
|
-
/**
|
|
1363
|
-
*
|
|
1364
|
-
* @type {number}
|
|
1365
|
-
* @memberof GetPublicUserByNameResponseUser
|
|
1366
|
-
*/
|
|
1367
370
|
'_id': number;
|
|
1368
|
-
/**
|
|
1369
|
-
*
|
|
1370
|
-
* @type {string}
|
|
1371
|
-
* @memberof GetPublicUserByNameResponseUser
|
|
1372
|
-
*/
|
|
1373
371
|
'fullName': string;
|
|
1374
|
-
/**
|
|
1375
|
-
*
|
|
1376
|
-
* @type {string}
|
|
1377
|
-
* @memberof GetPublicUserByNameResponseUser
|
|
1378
|
-
*/
|
|
1379
372
|
'name': string;
|
|
1380
|
-
/**
|
|
1381
|
-
*
|
|
1382
|
-
* @type {string}
|
|
1383
|
-
* @memberof GetPublicUserByNameResponseUser
|
|
1384
|
-
*/
|
|
1385
373
|
'email': string;
|
|
1386
|
-
/**
|
|
1387
|
-
*
|
|
1388
|
-
* @type {string}
|
|
1389
|
-
* @memberof GetPublicUserByNameResponseUser
|
|
1390
|
-
*/
|
|
1391
374
|
'avatar': string;
|
|
1392
|
-
/**
|
|
1393
|
-
*
|
|
1394
|
-
* @type {boolean}
|
|
1395
|
-
* @memberof GetPublicUserByNameResponseUser
|
|
1396
|
-
*/
|
|
1397
375
|
'pro': boolean;
|
|
1398
|
-
/**
|
|
1399
|
-
*
|
|
1400
|
-
* @type {string}
|
|
1401
|
-
* @memberof GetPublicUserByNameResponseUser
|
|
1402
|
-
*/
|
|
1403
376
|
'lastAction': string;
|
|
1404
|
-
/**
|
|
1405
|
-
*
|
|
1406
|
-
* @type {string}
|
|
1407
|
-
* @memberof GetPublicUserByNameResponseUser
|
|
1408
|
-
*/
|
|
1409
377
|
'registered': string;
|
|
1410
|
-
/**
|
|
1411
|
-
*
|
|
1412
|
-
* @type {string}
|
|
1413
|
-
* @memberof GetPublicUserByNameResponseUser
|
|
1414
|
-
*/
|
|
1415
378
|
'lastUpdate': string;
|
|
1416
|
-
/**
|
|
1417
|
-
*
|
|
1418
|
-
* @type {GetPublicUserByNameResponseUserConfig}
|
|
1419
|
-
* @memberof GetPublicUserByNameResponseUser
|
|
1420
|
-
*/
|
|
1421
379
|
'config': GetPublicUserByNameResponseUserConfig;
|
|
1422
|
-
/**
|
|
1423
|
-
*
|
|
1424
|
-
* @type {boolean}
|
|
1425
|
-
* @memberof GetPublicUserByNameResponseUser
|
|
1426
|
-
*/
|
|
1427
380
|
'emailConfirmed'?: boolean;
|
|
1428
381
|
}
|
|
1429
|
-
/**
|
|
1430
|
-
*
|
|
1431
|
-
* @export
|
|
1432
|
-
* @interface GetPublicUserByNameResponseUserConfig
|
|
1433
|
-
*/
|
|
1434
382
|
interface GetPublicUserByNameResponseUserConfig {
|
|
1435
|
-
/**
|
|
1436
|
-
*
|
|
1437
|
-
* @type {Array<string>}
|
|
1438
|
-
* @memberof GetPublicUserByNameResponseUserConfig
|
|
1439
|
-
*/
|
|
1440
383
|
'raindrops_hide': Array<string>;
|
|
1441
|
-
/**
|
|
1442
|
-
*
|
|
1443
|
-
* @type {boolean}
|
|
1444
|
-
* @memberof GetPublicUserByNameResponseUserConfig
|
|
1445
|
-
*/
|
|
1446
384
|
'nested_view_legacy': boolean;
|
|
1447
385
|
}
|
|
1448
|
-
/**
|
|
1449
|
-
*
|
|
1450
|
-
* @export
|
|
1451
|
-
* @interface GetRaindropResponse
|
|
1452
|
-
*/
|
|
1453
386
|
interface GetRaindropResponse {
|
|
1454
|
-
/**
|
|
1455
|
-
*
|
|
1456
|
-
* @type {boolean}
|
|
1457
|
-
* @memberof GetRaindropResponse
|
|
1458
|
-
*/
|
|
1459
387
|
'result': boolean;
|
|
1460
|
-
/**
|
|
1461
|
-
*
|
|
1462
|
-
* @type {boolean}
|
|
1463
|
-
* @memberof GetRaindropResponse
|
|
1464
|
-
*/
|
|
1465
388
|
'author': boolean;
|
|
1466
|
-
/**
|
|
1467
|
-
*
|
|
1468
|
-
* @type {GetRaindropResponseItem}
|
|
1469
|
-
* @memberof GetRaindropResponse
|
|
1470
|
-
*/
|
|
1471
389
|
'item': GetRaindropResponseItem;
|
|
1472
390
|
}
|
|
1473
|
-
/**
|
|
1474
|
-
*
|
|
1475
|
-
* @export
|
|
1476
|
-
* @interface GetRaindropResponseItem
|
|
1477
|
-
*/
|
|
1478
391
|
interface GetRaindropResponseItem {
|
|
1479
|
-
/**
|
|
1480
|
-
*
|
|
1481
|
-
* @type {number}
|
|
1482
|
-
* @memberof GetRaindropResponseItem
|
|
1483
|
-
*/
|
|
1484
392
|
'_id': number;
|
|
1485
|
-
/**
|
|
1486
|
-
*
|
|
1487
|
-
* @type {CollectionRef}
|
|
1488
|
-
* @memberof GetRaindropResponseItem
|
|
1489
|
-
*/
|
|
1490
393
|
'collection': CollectionRef | null;
|
|
1491
|
-
/**
|
|
1492
|
-
*
|
|
1493
|
-
* @type {number}
|
|
1494
|
-
* @memberof GetRaindropResponseItem
|
|
1495
|
-
*/
|
|
1496
394
|
'collectionId': number;
|
|
1497
|
-
/**
|
|
1498
|
-
*
|
|
1499
|
-
* @type {string}
|
|
1500
|
-
* @memberof GetRaindropResponseItem
|
|
1501
|
-
*/
|
|
1502
395
|
'cover': string;
|
|
1503
|
-
/**
|
|
1504
|
-
*
|
|
1505
|
-
* @type {string}
|
|
1506
|
-
* @memberof GetRaindropResponseItem
|
|
1507
|
-
*/
|
|
1508
396
|
'created': string;
|
|
1509
|
-
/**
|
|
1510
|
-
*
|
|
1511
|
-
* @type {CreatorRef}
|
|
1512
|
-
* @memberof GetRaindropResponseItem
|
|
1513
|
-
*/
|
|
1514
397
|
'creatorRef': CreatorRef;
|
|
1515
|
-
/**
|
|
1516
|
-
*
|
|
1517
|
-
* @type {string}
|
|
1518
|
-
* @memberof GetRaindropResponseItem
|
|
1519
|
-
*/
|
|
1520
398
|
'domain': string;
|
|
1521
|
-
/**
|
|
1522
|
-
*
|
|
1523
|
-
* @type {string}
|
|
1524
|
-
* @memberof GetRaindropResponseItem
|
|
1525
|
-
*/
|
|
1526
399
|
'excerpt': string;
|
|
1527
|
-
/**
|
|
1528
|
-
*
|
|
1529
|
-
* @type {Array<GetRaindropResponseItemHighlightsInner>}
|
|
1530
|
-
* @memberof GetRaindropResponseItem
|
|
1531
|
-
*/
|
|
1532
400
|
'highlights': Array<GetRaindropResponseItemHighlightsInner>;
|
|
1533
|
-
/**
|
|
1534
|
-
*
|
|
1535
|
-
* @type {string}
|
|
1536
|
-
* @memberof GetRaindropResponseItem
|
|
1537
|
-
*/
|
|
1538
401
|
'lastUpdate': string;
|
|
1539
|
-
/**
|
|
1540
|
-
*
|
|
1541
|
-
* @type {string}
|
|
1542
|
-
* @memberof GetRaindropResponseItem
|
|
1543
|
-
*/
|
|
1544
402
|
'link': string;
|
|
1545
|
-
/**
|
|
1546
|
-
*
|
|
1547
|
-
* @type {Array<CreateRaindropResponseItemMediaInner>}
|
|
1548
|
-
* @memberof GetRaindropResponseItem
|
|
1549
|
-
*/
|
|
1550
403
|
'media': Array<CreateRaindropResponseItemMediaInner>;
|
|
1551
|
-
/**
|
|
1552
|
-
*
|
|
1553
|
-
* @type {string}
|
|
1554
|
-
* @memberof GetRaindropResponseItem
|
|
1555
|
-
*/
|
|
1556
404
|
'note': string;
|
|
1557
|
-
/**
|
|
1558
|
-
*
|
|
1559
|
-
* @type {boolean}
|
|
1560
|
-
* @memberof GetRaindropResponseItem
|
|
1561
|
-
*/
|
|
1562
405
|
'removed': boolean;
|
|
1563
|
-
/**
|
|
1564
|
-
*
|
|
1565
|
-
* @type {number}
|
|
1566
|
-
* @memberof GetRaindropResponseItem
|
|
1567
|
-
*/
|
|
1568
406
|
'sort': number;
|
|
1569
|
-
/**
|
|
1570
|
-
*
|
|
1571
|
-
* @type {Array<string>}
|
|
1572
|
-
* @memberof GetRaindropResponseItem
|
|
1573
|
-
*/
|
|
1574
407
|
'tags': Array<string>;
|
|
1575
|
-
/**
|
|
1576
|
-
*
|
|
1577
|
-
* @type {string}
|
|
1578
|
-
* @memberof GetRaindropResponseItem
|
|
1579
|
-
*/
|
|
1580
408
|
'title': string;
|
|
1581
|
-
/**
|
|
1582
|
-
*
|
|
1583
|
-
* @type {string}
|
|
1584
|
-
* @memberof GetRaindropResponseItem
|
|
1585
|
-
*/
|
|
1586
409
|
'type': string;
|
|
1587
|
-
/**
|
|
1588
|
-
*
|
|
1589
|
-
* @type {UserRef}
|
|
1590
|
-
* @memberof GetRaindropResponseItem
|
|
1591
|
-
*/
|
|
1592
410
|
'user': UserRef;
|
|
1593
411
|
}
|
|
1594
|
-
/**
|
|
1595
|
-
*
|
|
1596
|
-
* @export
|
|
1597
|
-
* @interface GetRaindropResponseItemHighlightsInner
|
|
1598
|
-
*/
|
|
1599
412
|
interface GetRaindropResponseItemHighlightsInner {
|
|
1600
|
-
/**
|
|
1601
|
-
*
|
|
1602
|
-
* @type {string}
|
|
1603
|
-
* @memberof GetRaindropResponseItemHighlightsInner
|
|
1604
|
-
*/
|
|
1605
413
|
'text': string;
|
|
1606
|
-
/**
|
|
1607
|
-
*
|
|
1608
|
-
* @type {string}
|
|
1609
|
-
* @memberof GetRaindropResponseItemHighlightsInner
|
|
1610
|
-
*/
|
|
1611
414
|
'note': string;
|
|
1612
|
-
/**
|
|
1613
|
-
*
|
|
1614
|
-
* @type {string}
|
|
1615
|
-
* @memberof GetRaindropResponseItemHighlightsInner
|
|
1616
|
-
*/
|
|
1617
415
|
'created': string;
|
|
1618
|
-
/**
|
|
1619
|
-
*
|
|
1620
|
-
* @type {string}
|
|
1621
|
-
* @memberof GetRaindropResponseItemHighlightsInner
|
|
1622
|
-
*/
|
|
1623
416
|
'lastUpdate': string;
|
|
1624
|
-
/**
|
|
1625
|
-
*
|
|
1626
|
-
* @type {CreatorRef}
|
|
1627
|
-
* @memberof GetRaindropResponseItemHighlightsInner
|
|
1628
|
-
*/
|
|
1629
417
|
'creatorRef': CreatorRef;
|
|
1630
|
-
/**
|
|
1631
|
-
*
|
|
1632
|
-
* @type {string}
|
|
1633
|
-
* @memberof GetRaindropResponseItemHighlightsInner
|
|
1634
|
-
*/
|
|
1635
418
|
'_id': string;
|
|
1636
419
|
}
|
|
1637
|
-
/**
|
|
1638
|
-
*
|
|
1639
|
-
* @export
|
|
1640
|
-
* @interface GetRaindropsResponse
|
|
1641
|
-
*/
|
|
1642
420
|
interface GetRaindropsResponse {
|
|
1643
|
-
/**
|
|
1644
|
-
*
|
|
1645
|
-
* @type {boolean}
|
|
1646
|
-
* @memberof GetRaindropsResponse
|
|
1647
|
-
*/
|
|
1648
421
|
'result': boolean;
|
|
1649
|
-
/**
|
|
1650
|
-
*
|
|
1651
|
-
* @type {number}
|
|
1652
|
-
* @memberof GetRaindropsResponse
|
|
1653
|
-
*/
|
|
1654
422
|
'collectionId': number;
|
|
1655
|
-
/**
|
|
1656
|
-
*
|
|
1657
|
-
* @type {number}
|
|
1658
|
-
* @memberof GetRaindropsResponse
|
|
1659
|
-
*/
|
|
1660
423
|
'count': number;
|
|
1661
|
-
/**
|
|
1662
|
-
*
|
|
1663
|
-
* @type {Array<GetRaindropResponseItem>}
|
|
1664
|
-
* @memberof GetRaindropsResponse
|
|
1665
|
-
*/
|
|
1666
424
|
'items': Array<GetRaindropResponseItem>;
|
|
1667
425
|
}
|
|
1668
|
-
/**
|
|
1669
|
-
*
|
|
1670
|
-
* @export
|
|
1671
|
-
* @interface GetRootCollectionsResponse
|
|
1672
|
-
*/
|
|
1673
426
|
interface GetRootCollectionsResponse {
|
|
1674
|
-
/**
|
|
1675
|
-
*
|
|
1676
|
-
* @type {boolean}
|
|
1677
|
-
* @memberof GetRootCollectionsResponse
|
|
1678
|
-
*/
|
|
1679
427
|
'result': boolean;
|
|
1680
|
-
/**
|
|
1681
|
-
*
|
|
1682
|
-
* @type {Array<Collection>}
|
|
1683
|
-
* @memberof GetRootCollectionsResponse
|
|
1684
|
-
*/
|
|
1685
428
|
'items': Array<Collection>;
|
|
1686
429
|
}
|
|
1687
|
-
/**
|
|
1688
|
-
*
|
|
1689
|
-
* @export
|
|
1690
|
-
* @interface GetSystemCollectionStatsResponse
|
|
1691
|
-
*/
|
|
1692
430
|
interface GetSystemCollectionStatsResponse {
|
|
1693
|
-
/**
|
|
1694
|
-
*
|
|
1695
|
-
* @type {boolean}
|
|
1696
|
-
* @memberof GetSystemCollectionStatsResponse
|
|
1697
|
-
*/
|
|
1698
431
|
'result': boolean;
|
|
1699
|
-
/**
|
|
1700
|
-
*
|
|
1701
|
-
* @type {Array<GetSystemCollectionStatsResponseItemsInner>}
|
|
1702
|
-
* @memberof GetSystemCollectionStatsResponse
|
|
1703
|
-
*/
|
|
1704
432
|
'items': Array<GetSystemCollectionStatsResponseItemsInner>;
|
|
1705
|
-
/**
|
|
1706
|
-
*
|
|
1707
|
-
* @type {GetSystemCollectionStatsResponseMeta}
|
|
1708
|
-
* @memberof GetSystemCollectionStatsResponse
|
|
1709
|
-
*/
|
|
1710
433
|
'meta': GetSystemCollectionStatsResponseMeta;
|
|
1711
434
|
}
|
|
1712
|
-
/**
|
|
1713
|
-
*
|
|
1714
|
-
* @export
|
|
1715
|
-
* @interface GetSystemCollectionStatsResponseItemsInner
|
|
1716
|
-
*/
|
|
1717
435
|
interface GetSystemCollectionStatsResponseItemsInner {
|
|
1718
|
-
/**
|
|
1719
|
-
*
|
|
1720
|
-
* @type {number}
|
|
1721
|
-
* @memberof GetSystemCollectionStatsResponseItemsInner
|
|
1722
|
-
*/
|
|
1723
436
|
'count': number;
|
|
1724
|
-
/**
|
|
1725
|
-
*
|
|
1726
|
-
* @type {number}
|
|
1727
|
-
* @memberof GetSystemCollectionStatsResponseItemsInner
|
|
1728
|
-
*/
|
|
1729
437
|
'_id': number;
|
|
1730
438
|
}
|
|
1731
|
-
/**
|
|
1732
|
-
*
|
|
1733
|
-
* @export
|
|
1734
|
-
* @interface GetSystemCollectionStatsResponseMeta
|
|
1735
|
-
*/
|
|
1736
439
|
interface GetSystemCollectionStatsResponseMeta {
|
|
1737
|
-
/**
|
|
1738
|
-
*
|
|
1739
|
-
* @type {number}
|
|
1740
|
-
* @memberof GetSystemCollectionStatsResponseMeta
|
|
1741
|
-
*/
|
|
1742
440
|
'_id': number;
|
|
1743
|
-
/**
|
|
1744
|
-
*
|
|
1745
|
-
* @type {boolean}
|
|
1746
|
-
* @memberof GetSystemCollectionStatsResponseMeta
|
|
1747
|
-
*/
|
|
1748
441
|
'pro': boolean;
|
|
1749
|
-
/**
|
|
1750
|
-
*
|
|
1751
|
-
* @type {string}
|
|
1752
|
-
* @memberof GetSystemCollectionStatsResponseMeta
|
|
1753
|
-
*/
|
|
1754
442
|
'changedBookmarksDate': string;
|
|
1755
443
|
}
|
|
1756
|
-
/**
|
|
1757
|
-
*
|
|
1758
|
-
* @export
|
|
1759
|
-
* @interface GetTagsInCollectionResponse
|
|
1760
|
-
*/
|
|
1761
444
|
interface GetTagsInCollectionResponse {
|
|
1762
|
-
/**
|
|
1763
|
-
*
|
|
1764
|
-
* @type {boolean}
|
|
1765
|
-
* @memberof GetTagsInCollectionResponse
|
|
1766
|
-
*/
|
|
1767
445
|
'result': boolean;
|
|
1768
|
-
/**
|
|
1769
|
-
*
|
|
1770
|
-
* @type {Array<GetFiltersResponseCreatedInner>}
|
|
1771
|
-
* @memberof GetTagsInCollectionResponse
|
|
1772
|
-
*/
|
|
1773
446
|
'items': Array<GetFiltersResponseCreatedInner>;
|
|
1774
447
|
}
|
|
1775
|
-
/**
|
|
1776
|
-
*
|
|
1777
|
-
* @export
|
|
1778
|
-
* @interface Group
|
|
1779
|
-
*/
|
|
1780
448
|
interface Group {
|
|
1781
|
-
/**
|
|
1782
|
-
*
|
|
1783
|
-
* @type {string}
|
|
1784
|
-
* @memberof Group
|
|
1785
|
-
*/
|
|
1786
449
|
'title': string;
|
|
1787
|
-
/**
|
|
1788
|
-
*
|
|
1789
|
-
* @type {boolean}
|
|
1790
|
-
* @memberof Group
|
|
1791
|
-
*/
|
|
1792
450
|
'hidden': boolean;
|
|
1793
|
-
/**
|
|
1794
|
-
*
|
|
1795
|
-
* @type {number}
|
|
1796
|
-
* @memberof Group
|
|
1797
|
-
*/
|
|
1798
451
|
'sort': number;
|
|
1799
|
-
/**
|
|
1800
|
-
*
|
|
1801
|
-
* @type {Array<number>}
|
|
1802
|
-
* @memberof Group
|
|
1803
|
-
*/
|
|
1804
452
|
'collections': Array<number>;
|
|
1805
453
|
}
|
|
1806
|
-
/**
|
|
1807
|
-
*
|
|
1808
|
-
* @export
|
|
1809
|
-
* @interface ImportHTMLBookmarkFileResponse
|
|
1810
|
-
*/
|
|
1811
454
|
interface ImportHTMLBookmarkFileResponse {
|
|
1812
|
-
/**
|
|
1813
|
-
*
|
|
1814
|
-
* @type {boolean}
|
|
1815
|
-
* @memberof ImportHTMLBookmarkFileResponse
|
|
1816
|
-
*/
|
|
1817
455
|
'result': boolean;
|
|
1818
|
-
/**
|
|
1819
|
-
*
|
|
1820
|
-
* @type {Array<ImportHTMLBookmarkFileResponseItemFolder>}
|
|
1821
|
-
* @memberof ImportHTMLBookmarkFileResponse
|
|
1822
|
-
*/
|
|
1823
456
|
'items': Array<ImportHTMLBookmarkFileResponseItemFolder>;
|
|
1824
|
-
/**
|
|
1825
|
-
*
|
|
1826
|
-
* @type {ImportHTMLBookmarkFileResponseCount}
|
|
1827
|
-
* @memberof ImportHTMLBookmarkFileResponse
|
|
1828
|
-
*/
|
|
1829
457
|
'count': ImportHTMLBookmarkFileResponseCount;
|
|
1830
458
|
}
|
|
1831
|
-
/**
|
|
1832
|
-
*
|
|
1833
|
-
* @export
|
|
1834
|
-
* @interface ImportHTMLBookmarkFileResponseCount
|
|
1835
|
-
*/
|
|
1836
459
|
interface ImportHTMLBookmarkFileResponseCount {
|
|
1837
|
-
/**
|
|
1838
|
-
*
|
|
1839
|
-
* @type {number}
|
|
1840
|
-
* @memberof ImportHTMLBookmarkFileResponseCount
|
|
1841
|
-
*/
|
|
1842
460
|
'bookmarks': number;
|
|
1843
|
-
/**
|
|
1844
|
-
*
|
|
1845
|
-
* @type {number}
|
|
1846
|
-
* @memberof ImportHTMLBookmarkFileResponseCount
|
|
1847
|
-
*/
|
|
1848
461
|
'folders': number;
|
|
1849
|
-
/**
|
|
1850
|
-
*
|
|
1851
|
-
* @type {number}
|
|
1852
|
-
* @memberof ImportHTMLBookmarkFileResponseCount
|
|
1853
|
-
*/
|
|
1854
462
|
'tags': number;
|
|
1855
|
-
/**
|
|
1856
|
-
*
|
|
1857
|
-
* @type {number}
|
|
1858
|
-
* @memberof ImportHTMLBookmarkFileResponseCount
|
|
1859
|
-
*/
|
|
1860
463
|
'highlights': number;
|
|
1861
|
-
/**
|
|
1862
|
-
*
|
|
1863
|
-
* @type {number}
|
|
1864
|
-
* @memberof ImportHTMLBookmarkFileResponseCount
|
|
1865
|
-
*/
|
|
1866
464
|
'duplicates': number;
|
|
1867
465
|
}
|
|
1868
|
-
/**
|
|
1869
|
-
*
|
|
1870
|
-
* @export
|
|
1871
|
-
* @interface ImportHTMLBookmarkFileResponseItemBookmark
|
|
1872
|
-
*/
|
|
1873
466
|
interface ImportHTMLBookmarkFileResponseItemBookmark {
|
|
1874
|
-
/**
|
|
1875
|
-
*
|
|
1876
|
-
* @type {string}
|
|
1877
|
-
* @memberof ImportHTMLBookmarkFileResponseItemBookmark
|
|
1878
|
-
*/
|
|
1879
467
|
'link': string;
|
|
1880
|
-
/**
|
|
1881
|
-
*
|
|
1882
|
-
* @type {string}
|
|
1883
|
-
* @memberof ImportHTMLBookmarkFileResponseItemBookmark
|
|
1884
|
-
*/
|
|
1885
468
|
'title': string;
|
|
1886
|
-
/**
|
|
1887
|
-
*
|
|
1888
|
-
* @type {string}
|
|
1889
|
-
* @memberof ImportHTMLBookmarkFileResponseItemBookmark
|
|
1890
|
-
*/
|
|
1891
469
|
'excerpt': string;
|
|
1892
|
-
/**
|
|
1893
|
-
*
|
|
1894
|
-
* @type {string}
|
|
1895
|
-
* @memberof ImportHTMLBookmarkFileResponseItemBookmark
|
|
1896
|
-
*/
|
|
1897
470
|
'created': string;
|
|
1898
|
-
/**
|
|
1899
|
-
*
|
|
1900
|
-
* @type {string}
|
|
1901
|
-
* @memberof ImportHTMLBookmarkFileResponseItemBookmark
|
|
1902
|
-
*/
|
|
1903
471
|
'lastUpdate': string;
|
|
1904
|
-
/**
|
|
1905
|
-
*
|
|
1906
|
-
* @type {Array<string>}
|
|
1907
|
-
* @memberof ImportHTMLBookmarkFileResponseItemBookmark
|
|
1908
|
-
*/
|
|
1909
472
|
'tags': Array<string>;
|
|
1910
|
-
/**
|
|
1911
|
-
*
|
|
1912
|
-
* @type {string}
|
|
1913
|
-
* @memberof ImportHTMLBookmarkFileResponseItemBookmark
|
|
1914
|
-
*/
|
|
1915
473
|
'note': string;
|
|
1916
|
-
/**
|
|
1917
|
-
*
|
|
1918
|
-
* @type {string}
|
|
1919
|
-
* @memberof ImportHTMLBookmarkFileResponseItemBookmark
|
|
1920
|
-
*/
|
|
1921
474
|
'cover': string;
|
|
1922
|
-
/**
|
|
1923
|
-
*
|
|
1924
|
-
* @type {Array<ParseURLResponseItemMediaInner>}
|
|
1925
|
-
* @memberof ImportHTMLBookmarkFileResponseItemBookmark
|
|
1926
|
-
*/
|
|
1927
475
|
'media': Array<ParseURLResponseItemMediaInner>;
|
|
1928
|
-
/**
|
|
1929
|
-
*
|
|
1930
|
-
* @type {boolean}
|
|
1931
|
-
* @memberof ImportHTMLBookmarkFileResponseItemBookmark
|
|
1932
|
-
*/
|
|
1933
476
|
'important': boolean;
|
|
1934
|
-
/**
|
|
1935
|
-
*
|
|
1936
|
-
* @type {Array<string>}
|
|
1937
|
-
* @memberof ImportHTMLBookmarkFileResponseItemBookmark
|
|
1938
|
-
*/
|
|
1939
477
|
'highlights'?: Array<string>;
|
|
1940
478
|
}
|
|
1941
|
-
/**
|
|
1942
|
-
*
|
|
1943
|
-
* @export
|
|
1944
|
-
* @interface ImportHTMLBookmarkFileResponseItemFolder
|
|
1945
|
-
*/
|
|
1946
479
|
interface ImportHTMLBookmarkFileResponseItemFolder {
|
|
1947
|
-
/**
|
|
1948
|
-
*
|
|
1949
|
-
* @type {string}
|
|
1950
|
-
* @memberof ImportHTMLBookmarkFileResponseItemFolder
|
|
1951
|
-
*/
|
|
1952
480
|
'title': string;
|
|
1953
|
-
/**
|
|
1954
|
-
*
|
|
1955
|
-
* @type {Array<ImportHTMLBookmarkFileResponseItemFolder>}
|
|
1956
|
-
* @memberof ImportHTMLBookmarkFileResponseItemFolder
|
|
1957
|
-
*/
|
|
1958
481
|
'folders': Array<ImportHTMLBookmarkFileResponseItemFolder>;
|
|
1959
|
-
/**
|
|
1960
|
-
*
|
|
1961
|
-
* @type {Array<ImportHTMLBookmarkFileResponseItemBookmark>}
|
|
1962
|
-
* @memberof ImportHTMLBookmarkFileResponseItemFolder
|
|
1963
|
-
*/
|
|
1964
482
|
'bookmarks': Array<ImportHTMLBookmarkFileResponseItemBookmark>;
|
|
1965
|
-
/**
|
|
1966
|
-
*
|
|
1967
|
-
* @type {string}
|
|
1968
|
-
* @memberof ImportHTMLBookmarkFileResponseItemFolder
|
|
1969
|
-
*/
|
|
1970
483
|
'created'?: string;
|
|
1971
|
-
/**
|
|
1972
|
-
*
|
|
1973
|
-
* @type {string}
|
|
1974
|
-
* @memberof ImportHTMLBookmarkFileResponseItemFolder
|
|
1975
|
-
*/
|
|
1976
484
|
'lastUpdate'?: string;
|
|
1977
485
|
}
|
|
1978
|
-
/**
|
|
1979
|
-
*
|
|
1980
|
-
* @export
|
|
1981
|
-
* @interface MergeCollectionsRequest
|
|
1982
|
-
*/
|
|
1983
486
|
interface MergeCollectionsRequest {
|
|
1984
|
-
/**
|
|
1985
|
-
*
|
|
1986
|
-
* @type {number}
|
|
1987
|
-
* @memberof MergeCollectionsRequest
|
|
1988
|
-
*/
|
|
1989
487
|
'to'?: number;
|
|
1990
|
-
/**
|
|
1991
|
-
*
|
|
1992
|
-
* @type {Array<number>}
|
|
1993
|
-
* @memberof MergeCollectionsRequest
|
|
1994
|
-
*/
|
|
1995
488
|
'ids'?: Array<number>;
|
|
1996
489
|
}
|
|
1997
|
-
/**
|
|
1998
|
-
*
|
|
1999
|
-
* @export
|
|
2000
|
-
* @interface MergeCollectionsResponse
|
|
2001
|
-
*/
|
|
2002
490
|
interface MergeCollectionsResponse {
|
|
2003
|
-
/**
|
|
2004
|
-
*
|
|
2005
|
-
* @type {boolean}
|
|
2006
|
-
* @memberof MergeCollectionsResponse
|
|
2007
|
-
*/
|
|
2008
491
|
'result': boolean;
|
|
2009
|
-
/**
|
|
2010
|
-
*
|
|
2011
|
-
* @type {number}
|
|
2012
|
-
* @memberof MergeCollectionsResponse
|
|
2013
|
-
*/
|
|
2014
492
|
'modified': number;
|
|
2015
|
-
/**
|
|
2016
|
-
*
|
|
2017
|
-
* @type {Array<number>}
|
|
2018
|
-
* @memberof MergeCollectionsResponse
|
|
2019
|
-
*/
|
|
2020
493
|
'ids': Array<number>;
|
|
2021
494
|
}
|
|
2022
|
-
/**
|
|
2023
|
-
*
|
|
2024
|
-
* @export
|
|
2025
|
-
* @interface ObtainToken
|
|
2026
|
-
*/
|
|
2027
495
|
interface ObtainToken {
|
|
2028
|
-
/**
|
|
2029
|
-
*
|
|
2030
|
-
* @type {string}
|
|
2031
|
-
* @memberof ObtainToken
|
|
2032
|
-
*/
|
|
2033
496
|
'grant_type': ObtainTokenGrantTypeEnum;
|
|
2034
|
-
/**
|
|
2035
|
-
*
|
|
2036
|
-
* @type {string}
|
|
2037
|
-
* @memberof ObtainToken
|
|
2038
|
-
*/
|
|
2039
497
|
'code': string;
|
|
2040
|
-
/**
|
|
2041
|
-
*
|
|
2042
|
-
* @type {string}
|
|
2043
|
-
* @memberof ObtainToken
|
|
2044
|
-
*/
|
|
2045
498
|
'client_id': string;
|
|
2046
|
-
/**
|
|
2047
|
-
*
|
|
2048
|
-
* @type {string}
|
|
2049
|
-
* @memberof ObtainToken
|
|
2050
|
-
*/
|
|
2051
499
|
'client_secret': string;
|
|
2052
|
-
/**
|
|
2053
|
-
*
|
|
2054
|
-
* @type {string}
|
|
2055
|
-
* @memberof ObtainToken
|
|
2056
|
-
*/
|
|
2057
500
|
'redirect_uri': string;
|
|
2058
501
|
}
|
|
2059
502
|
declare const ObtainTokenGrantTypeEnum: {
|
|
2060
503
|
readonly AuthorizationCode: "authorization_code";
|
|
2061
504
|
};
|
|
2062
505
|
type ObtainTokenGrantTypeEnum = typeof ObtainTokenGrantTypeEnum[keyof typeof ObtainTokenGrantTypeEnum];
|
|
2063
|
-
/**
|
|
2064
|
-
*
|
|
2065
|
-
* @export
|
|
2066
|
-
* @interface ParseURLResponse
|
|
2067
|
-
*/
|
|
2068
506
|
interface ParseURLResponse {
|
|
2069
|
-
/**
|
|
2070
|
-
*
|
|
2071
|
-
* @type {boolean}
|
|
2072
|
-
* @memberof ParseURLResponse
|
|
2073
|
-
*/
|
|
2074
507
|
'result': boolean;
|
|
2075
|
-
/**
|
|
2076
|
-
*
|
|
2077
|
-
* @type {ParseURLResponseItem}
|
|
2078
|
-
* @memberof ParseURLResponse
|
|
2079
|
-
*/
|
|
2080
508
|
'item': ParseURLResponseItem;
|
|
2081
509
|
}
|
|
2082
|
-
/**
|
|
2083
|
-
*
|
|
2084
|
-
* @export
|
|
2085
|
-
* @interface ParseURLResponseItem
|
|
2086
|
-
*/
|
|
2087
510
|
interface ParseURLResponseItem {
|
|
2088
|
-
/**
|
|
2089
|
-
*
|
|
2090
|
-
* @type {string}
|
|
2091
|
-
* @memberof ParseURLResponseItem
|
|
2092
|
-
*/
|
|
2093
511
|
'title': string;
|
|
2094
|
-
/**
|
|
2095
|
-
*
|
|
2096
|
-
* @type {string}
|
|
2097
|
-
* @memberof ParseURLResponseItem
|
|
2098
|
-
*/
|
|
2099
512
|
'excerpt': string;
|
|
2100
|
-
/**
|
|
2101
|
-
*
|
|
2102
|
-
* @type {string}
|
|
2103
|
-
* @memberof ParseURLResponseItem
|
|
2104
|
-
*/
|
|
2105
513
|
'cover': string;
|
|
2106
|
-
/**
|
|
2107
|
-
*
|
|
2108
|
-
* @type {Array<ParseURLResponseItemMediaInner>}
|
|
2109
|
-
* @memberof ParseURLResponseItem
|
|
2110
|
-
*/
|
|
2111
514
|
'media': Array<ParseURLResponseItemMediaInner>;
|
|
2112
|
-
/**
|
|
2113
|
-
*
|
|
2114
|
-
* @type {string}
|
|
2115
|
-
* @memberof ParseURLResponseItem
|
|
2116
|
-
*/
|
|
2117
515
|
'type': string;
|
|
2118
|
-
/**
|
|
2119
|
-
*
|
|
2120
|
-
* @type {ParseURLResponseItemMeta}
|
|
2121
|
-
* @memberof ParseURLResponseItem
|
|
2122
|
-
*/
|
|
2123
516
|
'meta': ParseURLResponseItemMeta;
|
|
2124
517
|
}
|
|
2125
|
-
/**
|
|
2126
|
-
*
|
|
2127
|
-
* @export
|
|
2128
|
-
* @interface ParseURLResponseItemMediaInner
|
|
2129
|
-
*/
|
|
2130
518
|
interface ParseURLResponseItemMediaInner {
|
|
2131
|
-
/**
|
|
2132
|
-
*
|
|
2133
|
-
* @type {string}
|
|
2134
|
-
* @memberof ParseURLResponseItemMediaInner
|
|
2135
|
-
*/
|
|
2136
519
|
'link': string;
|
|
2137
520
|
}
|
|
2138
|
-
/**
|
|
2139
|
-
*
|
|
2140
|
-
* @export
|
|
2141
|
-
* @interface ParseURLResponseItemMeta
|
|
2142
|
-
*/
|
|
2143
521
|
interface ParseURLResponseItemMeta {
|
|
2144
|
-
/**
|
|
2145
|
-
*
|
|
2146
|
-
* @type {Array<string>}
|
|
2147
|
-
* @memberof ParseURLResponseItemMeta
|
|
2148
|
-
*/
|
|
2149
522
|
'tags': Array<string>;
|
|
2150
523
|
}
|
|
2151
|
-
/**
|
|
2152
|
-
*
|
|
2153
|
-
* @export
|
|
2154
|
-
* @interface RefreshToken
|
|
2155
|
-
*/
|
|
2156
524
|
interface RefreshToken {
|
|
2157
|
-
/**
|
|
2158
|
-
*
|
|
2159
|
-
* @type {string}
|
|
2160
|
-
* @memberof RefreshToken
|
|
2161
|
-
*/
|
|
2162
525
|
'client_id': string;
|
|
2163
|
-
/**
|
|
2164
|
-
*
|
|
2165
|
-
* @type {string}
|
|
2166
|
-
* @memberof RefreshToken
|
|
2167
|
-
*/
|
|
2168
526
|
'client_secret': string;
|
|
2169
|
-
/**
|
|
2170
|
-
*
|
|
2171
|
-
* @type {string}
|
|
2172
|
-
* @memberof RefreshToken
|
|
2173
|
-
*/
|
|
2174
527
|
'grant_type': RefreshTokenGrantTypeEnum;
|
|
2175
|
-
/**
|
|
2176
|
-
*
|
|
2177
|
-
* @type {string}
|
|
2178
|
-
* @memberof RefreshToken
|
|
2179
|
-
*/
|
|
2180
528
|
'refresh_token': string;
|
|
2181
529
|
}
|
|
2182
530
|
declare const RefreshTokenGrantTypeEnum: {
|
|
2183
531
|
readonly RefreshToken: "refresh_token";
|
|
2184
532
|
};
|
|
2185
533
|
type RefreshTokenGrantTypeEnum = typeof RefreshTokenGrantTypeEnum[keyof typeof RefreshTokenGrantTypeEnum];
|
|
2186
|
-
/**
|
|
2187
|
-
*
|
|
2188
|
-
* @export
|
|
2189
|
-
* @interface RemoveAllEmptyCollectionsResponse
|
|
2190
|
-
*/
|
|
2191
534
|
interface RemoveAllEmptyCollectionsResponse {
|
|
2192
|
-
/**
|
|
2193
|
-
*
|
|
2194
|
-
* @type {boolean}
|
|
2195
|
-
* @memberof RemoveAllEmptyCollectionsResponse
|
|
2196
|
-
*/
|
|
2197
535
|
'result': boolean;
|
|
2198
|
-
/**
|
|
2199
|
-
*
|
|
2200
|
-
* @type {number}
|
|
2201
|
-
* @memberof RemoveAllEmptyCollectionsResponse
|
|
2202
|
-
*/
|
|
2203
536
|
'count': number;
|
|
2204
537
|
}
|
|
2205
|
-
/**
|
|
2206
|
-
*
|
|
2207
|
-
* @export
|
|
2208
|
-
* @interface RemoveCollectionsRequest
|
|
2209
|
-
*/
|
|
2210
538
|
interface RemoveCollectionsRequest {
|
|
2211
|
-
/**
|
|
2212
|
-
*
|
|
2213
|
-
* @type {Array<number>}
|
|
2214
|
-
* @memberof RemoveCollectionsRequest
|
|
2215
|
-
*/
|
|
2216
539
|
'ids'?: Array<number>;
|
|
2217
540
|
}
|
|
2218
|
-
/**
|
|
2219
|
-
*
|
|
2220
|
-
* @export
|
|
2221
|
-
* @interface RemoveCollectionsResponse
|
|
2222
|
-
*/
|
|
2223
541
|
interface RemoveCollectionsResponse {
|
|
2224
|
-
/**
|
|
2225
|
-
*
|
|
2226
|
-
* @type {boolean}
|
|
2227
|
-
* @memberof RemoveCollectionsResponse
|
|
2228
|
-
*/
|
|
2229
542
|
'result': boolean;
|
|
2230
|
-
/**
|
|
2231
|
-
*
|
|
2232
|
-
* @type {number}
|
|
2233
|
-
* @memberof RemoveCollectionsResponse
|
|
2234
|
-
*/
|
|
2235
543
|
'modified': number;
|
|
2236
|
-
/**
|
|
2237
|
-
*
|
|
2238
|
-
* @type {Array<number>}
|
|
2239
|
-
* @memberof RemoveCollectionsResponse
|
|
2240
|
-
*/
|
|
2241
544
|
'ids': Array<number>;
|
|
2242
545
|
}
|
|
2243
|
-
/**
|
|
2244
|
-
*
|
|
2245
|
-
* @export
|
|
2246
|
-
* @interface RemoveRaindropResponse
|
|
2247
|
-
*/
|
|
2248
546
|
interface RemoveRaindropResponse {
|
|
2249
|
-
/**
|
|
2250
|
-
*
|
|
2251
|
-
* @type {boolean}
|
|
2252
|
-
* @memberof RemoveRaindropResponse
|
|
2253
|
-
*/
|
|
2254
547
|
'result'?: boolean;
|
|
2255
|
-
/**
|
|
2256
|
-
*
|
|
2257
|
-
* @type {RemoveRaindropResponseItem}
|
|
2258
|
-
* @memberof RemoveRaindropResponse
|
|
2259
|
-
*/
|
|
2260
548
|
'item'?: RemoveRaindropResponseItem;
|
|
2261
549
|
}
|
|
2262
|
-
/**
|
|
2263
|
-
*
|
|
2264
|
-
* @export
|
|
2265
|
-
* @interface RemoveRaindropResponseItem
|
|
2266
|
-
*/
|
|
2267
550
|
interface RemoveRaindropResponseItem {
|
|
2268
|
-
/**
|
|
2269
|
-
*
|
|
2270
|
-
* @type {number}
|
|
2271
|
-
* @memberof RemoveRaindropResponseItem
|
|
2272
|
-
*/
|
|
2273
551
|
'_id': number;
|
|
2274
|
-
/**
|
|
2275
|
-
*
|
|
2276
|
-
* @type {CollectionRef}
|
|
2277
|
-
* @memberof RemoveRaindropResponseItem
|
|
2278
|
-
*/
|
|
2279
552
|
'collection': CollectionRef | null;
|
|
2280
|
-
/**
|
|
2281
|
-
*
|
|
2282
|
-
* @type {number}
|
|
2283
|
-
* @memberof RemoveRaindropResponseItem
|
|
2284
|
-
*/
|
|
2285
553
|
'collectionId': number;
|
|
2286
|
-
/**
|
|
2287
|
-
*
|
|
2288
|
-
* @type {string}
|
|
2289
|
-
* @memberof RemoveRaindropResponseItem
|
|
2290
|
-
*/
|
|
2291
554
|
'cover': string;
|
|
2292
|
-
/**
|
|
2293
|
-
*
|
|
2294
|
-
* @type {string}
|
|
2295
|
-
* @memberof RemoveRaindropResponseItem
|
|
2296
|
-
*/
|
|
2297
555
|
'created': string;
|
|
2298
|
-
/**
|
|
2299
|
-
*
|
|
2300
|
-
* @type {CreatorRef}
|
|
2301
|
-
* @memberof RemoveRaindropResponseItem
|
|
2302
|
-
*/
|
|
2303
556
|
'creatorRef': CreatorRef;
|
|
2304
|
-
/**
|
|
2305
|
-
*
|
|
2306
|
-
* @type {string}
|
|
2307
|
-
* @memberof RemoveRaindropResponseItem
|
|
2308
|
-
*/
|
|
2309
557
|
'domain': string;
|
|
2310
|
-
/**
|
|
2311
|
-
*
|
|
2312
|
-
* @type {string}
|
|
2313
|
-
* @memberof RemoveRaindropResponseItem
|
|
2314
|
-
*/
|
|
2315
558
|
'excerpt': string;
|
|
2316
|
-
/**
|
|
2317
|
-
*
|
|
2318
|
-
* @type {string}
|
|
2319
|
-
* @memberof RemoveRaindropResponseItem
|
|
2320
|
-
*/
|
|
2321
559
|
'lastUpdate': string;
|
|
2322
|
-
/**
|
|
2323
|
-
*
|
|
2324
|
-
* @type {string}
|
|
2325
|
-
* @memberof RemoveRaindropResponseItem
|
|
2326
|
-
*/
|
|
2327
560
|
'link': string;
|
|
2328
|
-
/**
|
|
2329
|
-
*
|
|
2330
|
-
* @type {Array<CreateRaindropResponseItemMediaInner>}
|
|
2331
|
-
* @memberof RemoveRaindropResponseItem
|
|
2332
|
-
*/
|
|
2333
561
|
'media': Array<CreateRaindropResponseItemMediaInner>;
|
|
2334
|
-
/**
|
|
2335
|
-
*
|
|
2336
|
-
* @type {string}
|
|
2337
|
-
* @memberof RemoveRaindropResponseItem
|
|
2338
|
-
*/
|
|
2339
562
|
'note': string;
|
|
2340
|
-
/**
|
|
2341
|
-
*
|
|
2342
|
-
* @type {number}
|
|
2343
|
-
* @memberof RemoveRaindropResponseItem
|
|
2344
|
-
*/
|
|
2345
563
|
'order': number;
|
|
2346
|
-
/**
|
|
2347
|
-
*
|
|
2348
|
-
* @type {boolean}
|
|
2349
|
-
* @memberof RemoveRaindropResponseItem
|
|
2350
|
-
*/
|
|
2351
564
|
'removed': boolean;
|
|
2352
|
-
/**
|
|
2353
|
-
*
|
|
2354
|
-
* @type {number}
|
|
2355
|
-
* @memberof RemoveRaindropResponseItem
|
|
2356
|
-
*/
|
|
2357
565
|
'sort': number;
|
|
2358
|
-
/**
|
|
2359
|
-
*
|
|
2360
|
-
* @type {Array<string>}
|
|
2361
|
-
* @memberof RemoveRaindropResponseItem
|
|
2362
|
-
*/
|
|
2363
566
|
'tags': Array<string>;
|
|
2364
|
-
/**
|
|
2365
|
-
*
|
|
2366
|
-
* @type {string}
|
|
2367
|
-
* @memberof RemoveRaindropResponseItem
|
|
2368
|
-
*/
|
|
2369
567
|
'title': string;
|
|
2370
|
-
/**
|
|
2371
|
-
*
|
|
2372
|
-
* @type {string}
|
|
2373
|
-
* @memberof RemoveRaindropResponseItem
|
|
2374
|
-
*/
|
|
2375
568
|
'type': string;
|
|
2376
|
-
/**
|
|
2377
|
-
*
|
|
2378
|
-
* @type {UserRef}
|
|
2379
|
-
* @memberof RemoveRaindropResponseItem
|
|
2380
|
-
*/
|
|
2381
569
|
'user': UserRef;
|
|
2382
570
|
}
|
|
2383
|
-
/**
|
|
2384
|
-
*
|
|
2385
|
-
* @export
|
|
2386
|
-
* @interface RemoveRaindropsRequest
|
|
2387
|
-
*/
|
|
2388
571
|
interface RemoveRaindropsRequest {
|
|
2389
|
-
/**
|
|
2390
|
-
*
|
|
2391
|
-
* @type {Array<number>}
|
|
2392
|
-
* @memberof RemoveRaindropsRequest
|
|
2393
|
-
*/
|
|
2394
572
|
'ids'?: Array<number>;
|
|
2395
573
|
}
|
|
2396
|
-
/**
|
|
2397
|
-
*
|
|
2398
|
-
* @export
|
|
2399
|
-
* @interface RemoveRaindropsResponse
|
|
2400
|
-
*/
|
|
2401
574
|
interface RemoveRaindropsResponse {
|
|
2402
|
-
/**
|
|
2403
|
-
*
|
|
2404
|
-
* @type {boolean}
|
|
2405
|
-
* @memberof RemoveRaindropsResponse
|
|
2406
|
-
*/
|
|
2407
575
|
'result': boolean;
|
|
2408
|
-
/**
|
|
2409
|
-
*
|
|
2410
|
-
* @type {number}
|
|
2411
|
-
* @memberof RemoveRaindropsResponse
|
|
2412
|
-
*/
|
|
2413
576
|
'modified': number;
|
|
577
|
+
'matched'?: number;
|
|
2414
578
|
}
|
|
2415
|
-
/**
|
|
2416
|
-
*
|
|
2417
|
-
* @export
|
|
2418
|
-
* @interface RemoveTagsFromCollectionRequest
|
|
2419
|
-
*/
|
|
2420
579
|
interface RemoveTagsFromCollectionRequest {
|
|
2421
|
-
/**
|
|
2422
|
-
*
|
|
2423
|
-
* @type {Array<string>}
|
|
2424
|
-
* @memberof RemoveTagsFromCollectionRequest
|
|
2425
|
-
*/
|
|
2426
580
|
'tags'?: Array<string>;
|
|
2427
581
|
}
|
|
2428
|
-
/**
|
|
2429
|
-
*
|
|
2430
|
-
* @export
|
|
2431
|
-
* @interface RenameOrMergeTagsRequest
|
|
2432
|
-
*/
|
|
2433
582
|
interface RenameOrMergeTagsRequest {
|
|
2434
|
-
/**
|
|
2435
|
-
*
|
|
2436
|
-
* @type {string}
|
|
2437
|
-
* @memberof RenameOrMergeTagsRequest
|
|
2438
|
-
*/
|
|
2439
583
|
'replace'?: string;
|
|
2440
|
-
/**
|
|
2441
|
-
*
|
|
2442
|
-
* @type {Array<string>}
|
|
2443
|
-
* @memberof RenameOrMergeTagsRequest
|
|
2444
|
-
*/
|
|
2445
584
|
'tags'?: Array<string>;
|
|
2446
585
|
}
|
|
2447
|
-
/**
|
|
2448
|
-
*
|
|
2449
|
-
* @export
|
|
2450
|
-
* @interface ReorderAllCollectionsRequest
|
|
2451
|
-
*/
|
|
2452
586
|
interface ReorderAllCollectionsRequest {
|
|
2453
|
-
/**
|
|
2454
|
-
*
|
|
2455
|
-
* @type {string}
|
|
2456
|
-
* @memberof ReorderAllCollectionsRequest
|
|
2457
|
-
*/
|
|
2458
587
|
'sort'?: string;
|
|
2459
|
-
/**
|
|
2460
|
-
*
|
|
2461
|
-
* @type {boolean}
|
|
2462
|
-
* @memberof ReorderAllCollectionsRequest
|
|
2463
|
-
*/
|
|
2464
588
|
'expanded'?: boolean;
|
|
2465
589
|
}
|
|
2466
|
-
/**
|
|
2467
|
-
*
|
|
2468
|
-
* @export
|
|
2469
|
-
* @enum {string}
|
|
2470
|
-
*/
|
|
2471
590
|
declare const Role: {
|
|
2472
591
|
readonly Member: "member";
|
|
2473
592
|
readonly Viewer: "viewer";
|
|
2474
593
|
};
|
|
2475
594
|
type Role = typeof Role[keyof typeof Role];
|
|
2476
|
-
/**
|
|
2477
|
-
*
|
|
2478
|
-
* @export
|
|
2479
|
-
* @interface SearchCoversResponse
|
|
2480
|
-
*/
|
|
2481
595
|
interface SearchCoversResponse {
|
|
2482
|
-
/**
|
|
2483
|
-
*
|
|
2484
|
-
* @type {boolean}
|
|
2485
|
-
* @memberof SearchCoversResponse
|
|
2486
|
-
*/
|
|
2487
596
|
'result': boolean;
|
|
2488
|
-
/**
|
|
2489
|
-
*
|
|
2490
|
-
* @type {Array<SearchCoversResponseItemsInner>}
|
|
2491
|
-
* @memberof SearchCoversResponse
|
|
2492
|
-
*/
|
|
2493
597
|
'items': Array<SearchCoversResponseItemsInner>;
|
|
2494
598
|
}
|
|
2495
|
-
/**
|
|
2496
|
-
*
|
|
2497
|
-
* @export
|
|
2498
|
-
* @interface SearchCoversResponseItemsInner
|
|
2499
|
-
*/
|
|
2500
599
|
interface SearchCoversResponseItemsInner {
|
|
2501
|
-
/**
|
|
2502
|
-
*
|
|
2503
|
-
* @type {string}
|
|
2504
|
-
* @memberof SearchCoversResponseItemsInner
|
|
2505
|
-
*/
|
|
2506
600
|
'title': string;
|
|
2507
|
-
/**
|
|
2508
|
-
*
|
|
2509
|
-
* @type {Array<SearchCoversResponseItemsInnerIconsInner>}
|
|
2510
|
-
* @memberof SearchCoversResponseItemsInner
|
|
2511
|
-
*/
|
|
2512
601
|
'icons': Array<SearchCoversResponseItemsInnerIconsInner>;
|
|
2513
602
|
}
|
|
2514
|
-
/**
|
|
2515
|
-
*
|
|
2516
|
-
* @export
|
|
2517
|
-
* @interface SearchCoversResponseItemsInnerIconsInner
|
|
2518
|
-
*/
|
|
2519
603
|
interface SearchCoversResponseItemsInnerIconsInner {
|
|
2520
|
-
/**
|
|
2521
|
-
*
|
|
2522
|
-
* @type {string}
|
|
2523
|
-
* @memberof SearchCoversResponseItemsInnerIconsInner
|
|
2524
|
-
*/
|
|
2525
604
|
'png': string;
|
|
2526
605
|
}
|
|
2527
|
-
/**
|
|
2528
|
-
*
|
|
2529
|
-
* @export
|
|
2530
|
-
* @interface ShareCollectionRequest
|
|
2531
|
-
*/
|
|
2532
606
|
interface ShareCollectionRequest {
|
|
2533
|
-
/**
|
|
2534
|
-
*
|
|
2535
|
-
* @type {Role}
|
|
2536
|
-
* @memberof ShareCollectionRequest
|
|
2537
|
-
*/
|
|
2538
607
|
'role': Role;
|
|
2539
|
-
/**
|
|
2540
|
-
*
|
|
2541
|
-
* @type {Array<string>}
|
|
2542
|
-
* @memberof ShareCollectionRequest
|
|
2543
|
-
*/
|
|
2544
608
|
'emails': Array<string>;
|
|
2545
609
|
}
|
|
2546
|
-
/**
|
|
2547
|
-
*
|
|
2548
|
-
* @export
|
|
2549
|
-
* @interface ShareCollectionResponse
|
|
2550
|
-
*/
|
|
2551
610
|
interface ShareCollectionResponse {
|
|
2552
|
-
/**
|
|
2553
|
-
*
|
|
2554
|
-
* @type {boolean}
|
|
2555
|
-
* @memberof ShareCollectionResponse
|
|
2556
|
-
*/
|
|
2557
611
|
'result': boolean;
|
|
2558
|
-
/**
|
|
2559
|
-
*
|
|
2560
|
-
* @type {string}
|
|
2561
|
-
* @memberof ShareCollectionResponse
|
|
2562
|
-
*/
|
|
2563
612
|
'token': string;
|
|
2564
|
-
/**
|
|
2565
|
-
*
|
|
2566
|
-
* @type {string}
|
|
2567
|
-
* @memberof ShareCollectionResponse
|
|
2568
|
-
*/
|
|
2569
613
|
'link': string;
|
|
2570
614
|
}
|
|
2571
|
-
/**
|
|
2572
|
-
*
|
|
2573
|
-
* @export
|
|
2574
|
-
* @interface SimpleResponse
|
|
2575
|
-
*/
|
|
2576
615
|
interface SimpleResponse {
|
|
2577
|
-
/**
|
|
2578
|
-
*
|
|
2579
|
-
* @type {boolean}
|
|
2580
|
-
* @memberof SimpleResponse
|
|
2581
|
-
*/
|
|
2582
616
|
'result': boolean;
|
|
2583
617
|
}
|
|
2584
|
-
/**
|
|
2585
|
-
*
|
|
2586
|
-
* @export
|
|
2587
|
-
* @interface SuggestForExistingBookmarkResponse
|
|
2588
|
-
*/
|
|
2589
618
|
interface SuggestForExistingBookmarkResponse {
|
|
2590
|
-
/**
|
|
2591
|
-
*
|
|
2592
|
-
* @type {boolean}
|
|
2593
|
-
* @memberof SuggestForExistingBookmarkResponse
|
|
2594
|
-
*/
|
|
2595
619
|
'result'?: boolean;
|
|
2596
620
|
}
|
|
2597
|
-
/**
|
|
2598
|
-
*
|
|
2599
|
-
* @export
|
|
2600
|
-
* @interface SuggestForNewBookmarkRequest
|
|
2601
|
-
*/
|
|
2602
621
|
interface SuggestForNewBookmarkRequest {
|
|
2603
|
-
/**
|
|
2604
|
-
*
|
|
2605
|
-
* @type {string}
|
|
2606
|
-
* @memberof SuggestForNewBookmarkRequest
|
|
2607
|
-
*/
|
|
2608
622
|
'link'?: string;
|
|
2609
623
|
}
|
|
2610
|
-
/**
|
|
2611
|
-
*
|
|
2612
|
-
* @export
|
|
2613
|
-
* @interface SuggestForNewBookmarkResponse
|
|
2614
|
-
*/
|
|
2615
624
|
interface SuggestForNewBookmarkResponse {
|
|
2616
|
-
/**
|
|
2617
|
-
*
|
|
2618
|
-
* @type {boolean}
|
|
2619
|
-
* @memberof SuggestForNewBookmarkResponse
|
|
2620
|
-
*/
|
|
2621
625
|
'result'?: boolean;
|
|
2622
626
|
}
|
|
2623
|
-
/**
|
|
2624
|
-
*
|
|
2625
|
-
* @export
|
|
2626
|
-
* @interface TokenErrorResponse
|
|
2627
|
-
*/
|
|
2628
627
|
interface TokenErrorResponse {
|
|
2629
|
-
/**
|
|
2630
|
-
*
|
|
2631
|
-
* @type {boolean}
|
|
2632
|
-
* @memberof TokenErrorResponse
|
|
2633
|
-
*/
|
|
2634
628
|
'result': boolean;
|
|
2635
|
-
/**
|
|
2636
|
-
*
|
|
2637
|
-
* @type {number}
|
|
2638
|
-
* @memberof TokenErrorResponse
|
|
2639
|
-
*/
|
|
2640
629
|
'status': number;
|
|
2641
|
-
/**
|
|
2642
|
-
*
|
|
2643
|
-
* @type {string}
|
|
2644
|
-
* @memberof TokenErrorResponse
|
|
2645
|
-
*/
|
|
2646
630
|
'errorMessage': string;
|
|
2647
631
|
}
|
|
2648
|
-
/**
|
|
2649
|
-
*
|
|
2650
|
-
* @export
|
|
2651
|
-
* @interface TokenResponse
|
|
2652
|
-
*/
|
|
2653
632
|
interface TokenResponse {
|
|
2654
|
-
/**
|
|
2655
|
-
*
|
|
2656
|
-
* @type {string}
|
|
2657
|
-
* @memberof TokenResponse
|
|
2658
|
-
*/
|
|
2659
633
|
'access_token': string;
|
|
2660
|
-
/**
|
|
2661
|
-
*
|
|
2662
|
-
* @type {string}
|
|
2663
|
-
* @memberof TokenResponse
|
|
2664
|
-
*/
|
|
2665
634
|
'refresh_token': string;
|
|
2666
635
|
/**
|
|
2667
|
-
*
|
|
2668
|
-
* @type {number}
|
|
2669
|
-
* @memberof TokenResponse
|
|
2670
636
|
* @deprecated
|
|
2671
637
|
*/
|
|
2672
638
|
'expires'?: number;
|
|
2673
|
-
/**
|
|
2674
|
-
*
|
|
2675
|
-
* @type {number}
|
|
2676
|
-
* @memberof TokenResponse
|
|
2677
|
-
*/
|
|
2678
639
|
'expires_in': number;
|
|
2679
|
-
/**
|
|
2680
|
-
*
|
|
2681
|
-
* @type {string}
|
|
2682
|
-
* @memberof TokenResponse
|
|
2683
|
-
*/
|
|
2684
640
|
'token_type': TokenResponseTokenTypeEnum;
|
|
2685
641
|
}
|
|
2686
642
|
declare const TokenResponseTokenTypeEnum: {
|
|
2687
643
|
readonly Bearer: "Bearer";
|
|
2688
644
|
};
|
|
2689
645
|
type TokenResponseTokenTypeEnum = typeof TokenResponseTokenTypeEnum[keyof typeof TokenResponseTokenTypeEnum];
|
|
2690
|
-
/**
|
|
2691
|
-
*
|
|
2692
|
-
* @export
|
|
2693
|
-
* @interface UpdateCollectionRequest
|
|
2694
|
-
*/
|
|
2695
646
|
interface UpdateCollectionRequest {
|
|
2696
|
-
/**
|
|
2697
|
-
*
|
|
2698
|
-
* @type {string}
|
|
2699
|
-
* @memberof UpdateCollectionRequest
|
|
2700
|
-
*/
|
|
2701
647
|
'view'?: string;
|
|
2702
|
-
/**
|
|
2703
|
-
*
|
|
2704
|
-
* @type {string}
|
|
2705
|
-
* @memberof UpdateCollectionRequest
|
|
2706
|
-
*/
|
|
2707
648
|
'title'?: string;
|
|
2708
|
-
/**
|
|
2709
|
-
*
|
|
2710
|
-
* @type {number}
|
|
2711
|
-
* @memberof UpdateCollectionRequest
|
|
2712
|
-
*/
|
|
2713
649
|
'sort'?: number;
|
|
2714
650
|
/**
|
|
2715
651
|
* Collection and raindrops that it contains will be accessible without authentication?
|
|
2716
|
-
* @type {boolean}
|
|
2717
|
-
* @memberof UpdateCollectionRequest
|
|
2718
652
|
*/
|
|
2719
653
|
'public'?: boolean;
|
|
2720
|
-
/**
|
|
2721
|
-
*
|
|
2722
|
-
* @type {CollectionRef}
|
|
2723
|
-
* @memberof UpdateCollectionRequest
|
|
2724
|
-
*/
|
|
2725
654
|
'parent'?: CollectionRef | null;
|
|
2726
|
-
/**
|
|
2727
|
-
*
|
|
2728
|
-
* @type {Array<string>}
|
|
2729
|
-
* @memberof UpdateCollectionRequest
|
|
2730
|
-
*/
|
|
2731
655
|
'cover'?: Array<string>;
|
|
2732
|
-
/**
|
|
2733
|
-
*
|
|
2734
|
-
* @type {boolean}
|
|
2735
|
-
* @memberof UpdateCollectionRequest
|
|
2736
|
-
*/
|
|
2737
656
|
'expanded'?: boolean;
|
|
2738
657
|
}
|
|
2739
|
-
/**
|
|
2740
|
-
*
|
|
2741
|
-
* @export
|
|
2742
|
-
* @interface UpdateCollectionResponse
|
|
2743
|
-
*/
|
|
2744
658
|
interface UpdateCollectionResponse {
|
|
2745
|
-
/**
|
|
2746
|
-
*
|
|
2747
|
-
* @type {boolean}
|
|
2748
|
-
* @memberof UpdateCollectionResponse
|
|
2749
|
-
*/
|
|
2750
659
|
'result': boolean;
|
|
2751
|
-
/**
|
|
2752
|
-
*
|
|
2753
|
-
* @type {Collection}
|
|
2754
|
-
* @memberof UpdateCollectionResponse
|
|
2755
|
-
*/
|
|
2756
660
|
'item': Collection;
|
|
2757
661
|
}
|
|
2758
|
-
/**
|
|
2759
|
-
*
|
|
2760
|
-
* @export
|
|
2761
|
-
* @interface UpdateCurrentUserRequest
|
|
2762
|
-
*/
|
|
2763
662
|
interface UpdateCurrentUserRequest {
|
|
2764
|
-
/**
|
|
2765
|
-
*
|
|
2766
|
-
* @type {Array<UpdateCurrentUserRequestGroupsInner>}
|
|
2767
|
-
* @memberof UpdateCurrentUserRequest
|
|
2768
|
-
*/
|
|
2769
663
|
'groups'?: Array<UpdateCurrentUserRequestGroupsInner>;
|
|
2770
|
-
/**
|
|
2771
|
-
*
|
|
2772
|
-
* @type {UserConfig}
|
|
2773
|
-
* @memberof UpdateCurrentUserRequest
|
|
2774
|
-
*/
|
|
2775
664
|
'config'?: UserConfig;
|
|
2776
|
-
/**
|
|
2777
|
-
*
|
|
2778
|
-
* @type {string}
|
|
2779
|
-
* @memberof UpdateCurrentUserRequest
|
|
2780
|
-
*/
|
|
2781
665
|
'newpassword'?: string;
|
|
2782
|
-
/**
|
|
2783
|
-
*
|
|
2784
|
-
* @type {string}
|
|
2785
|
-
* @memberof UpdateCurrentUserRequest
|
|
2786
|
-
*/
|
|
2787
666
|
'oldpassword'?: string;
|
|
2788
|
-
/**
|
|
2789
|
-
*
|
|
2790
|
-
* @type {string}
|
|
2791
|
-
* @memberof UpdateCurrentUserRequest
|
|
2792
|
-
*/
|
|
2793
667
|
'fullName'?: string;
|
|
2794
|
-
/**
|
|
2795
|
-
*
|
|
2796
|
-
* @type {string}
|
|
2797
|
-
* @memberof UpdateCurrentUserRequest
|
|
2798
|
-
*/
|
|
2799
668
|
'email'?: string;
|
|
2800
669
|
}
|
|
2801
|
-
/**
|
|
2802
|
-
*
|
|
2803
|
-
* @export
|
|
2804
|
-
* @interface UpdateCurrentUserRequestGroupsInner
|
|
2805
|
-
*/
|
|
2806
670
|
interface UpdateCurrentUserRequestGroupsInner {
|
|
2807
|
-
/**
|
|
2808
|
-
*
|
|
2809
|
-
* @type {string}
|
|
2810
|
-
* @memberof UpdateCurrentUserRequestGroupsInner
|
|
2811
|
-
*/
|
|
2812
671
|
'title'?: string;
|
|
2813
|
-
/**
|
|
2814
|
-
*
|
|
2815
|
-
* @type {boolean}
|
|
2816
|
-
* @memberof UpdateCurrentUserRequestGroupsInner
|
|
2817
|
-
*/
|
|
2818
672
|
'hidden'?: boolean;
|
|
2819
|
-
/**
|
|
2820
|
-
*
|
|
2821
|
-
* @type {number}
|
|
2822
|
-
* @memberof UpdateCurrentUserRequestGroupsInner
|
|
2823
|
-
*/
|
|
2824
673
|
'sort'?: number;
|
|
2825
|
-
/**
|
|
2826
|
-
*
|
|
2827
|
-
* @type {Array<number>}
|
|
2828
|
-
* @memberof UpdateCurrentUserRequestGroupsInner
|
|
2829
|
-
*/
|
|
2830
674
|
'collections'?: Array<number>;
|
|
2831
675
|
}
|
|
2832
|
-
/**
|
|
2833
|
-
*
|
|
2834
|
-
* @export
|
|
2835
|
-
* @interface UpdateCurrentUserResponse
|
|
2836
|
-
*/
|
|
2837
676
|
interface UpdateCurrentUserResponse {
|
|
2838
|
-
/**
|
|
2839
|
-
*
|
|
2840
|
-
* @type {boolean}
|
|
2841
|
-
* @memberof UpdateCurrentUserResponse
|
|
2842
|
-
*/
|
|
2843
677
|
'result': boolean;
|
|
2844
|
-
/**
|
|
2845
|
-
*
|
|
2846
|
-
* @type {User}
|
|
2847
|
-
* @memberof UpdateCurrentUserResponse
|
|
2848
|
-
*/
|
|
2849
678
|
'user': User;
|
|
2850
|
-
/**
|
|
2851
|
-
*
|
|
2852
|
-
* @type {User}
|
|
2853
|
-
* @memberof UpdateCurrentUserResponse
|
|
2854
|
-
*/
|
|
2855
679
|
'item': User;
|
|
2856
680
|
}
|
|
2857
|
-
/**
|
|
2858
|
-
*
|
|
2859
|
-
* @export
|
|
2860
|
-
* @interface UpdateRaindropResponse
|
|
2861
|
-
*/
|
|
2862
681
|
interface UpdateRaindropResponse {
|
|
2863
|
-
/**
|
|
2864
|
-
*
|
|
2865
|
-
* @type {boolean}
|
|
2866
|
-
* @memberof UpdateRaindropResponse
|
|
2867
|
-
*/
|
|
2868
682
|
'result'?: boolean;
|
|
2869
|
-
/**
|
|
2870
|
-
*
|
|
2871
|
-
* @type {UpdateRaindropResponseItem}
|
|
2872
|
-
* @memberof UpdateRaindropResponse
|
|
2873
|
-
*/
|
|
2874
683
|
'item'?: UpdateRaindropResponseItem;
|
|
2875
684
|
}
|
|
2876
|
-
/**
|
|
2877
|
-
*
|
|
2878
|
-
* @export
|
|
2879
|
-
* @interface UpdateRaindropResponseItem
|
|
2880
|
-
*/
|
|
2881
685
|
interface UpdateRaindropResponseItem {
|
|
2882
|
-
/**
|
|
2883
|
-
*
|
|
2884
|
-
* @type {number}
|
|
2885
|
-
* @memberof UpdateRaindropResponseItem
|
|
2886
|
-
*/
|
|
2887
686
|
'__v': number;
|
|
2888
|
-
/**
|
|
2889
|
-
*
|
|
2890
|
-
* @type {number}
|
|
2891
|
-
* @memberof UpdateRaindropResponseItem
|
|
2892
|
-
*/
|
|
2893
687
|
'_id': number;
|
|
2894
|
-
/**
|
|
2895
|
-
*
|
|
2896
|
-
* @type {CollectionRef}
|
|
2897
|
-
* @memberof UpdateRaindropResponseItem
|
|
2898
|
-
*/
|
|
2899
688
|
'collection': CollectionRef | null;
|
|
2900
|
-
/**
|
|
2901
|
-
*
|
|
2902
|
-
* @type {number}
|
|
2903
|
-
* @memberof UpdateRaindropResponseItem
|
|
2904
|
-
*/
|
|
2905
689
|
'collectionId': number;
|
|
2906
|
-
/**
|
|
2907
|
-
*
|
|
2908
|
-
* @type {string}
|
|
2909
|
-
* @memberof UpdateRaindropResponseItem
|
|
2910
|
-
*/
|
|
2911
690
|
'cover': string;
|
|
2912
|
-
/**
|
|
2913
|
-
*
|
|
2914
|
-
* @type {string}
|
|
2915
|
-
* @memberof UpdateRaindropResponseItem
|
|
2916
|
-
*/
|
|
2917
691
|
'created': string;
|
|
2918
|
-
/**
|
|
2919
|
-
*
|
|
2920
|
-
* @type {CreatorRef}
|
|
2921
|
-
* @memberof UpdateRaindropResponseItem
|
|
2922
|
-
*/
|
|
2923
692
|
'creatorRef': CreatorRef;
|
|
2924
|
-
/**
|
|
2925
|
-
*
|
|
2926
|
-
* @type {string}
|
|
2927
|
-
* @memberof UpdateRaindropResponseItem
|
|
2928
|
-
*/
|
|
2929
693
|
'domain': string;
|
|
2930
|
-
/**
|
|
2931
|
-
*
|
|
2932
|
-
* @type {string}
|
|
2933
|
-
* @memberof UpdateRaindropResponseItem
|
|
2934
|
-
*/
|
|
2935
694
|
'excerpt': string;
|
|
2936
|
-
/**
|
|
2937
|
-
*
|
|
2938
|
-
* @type {string}
|
|
2939
|
-
* @memberof UpdateRaindropResponseItem
|
|
2940
|
-
*/
|
|
2941
695
|
'lastUpdate': string;
|
|
2942
|
-
/**
|
|
2943
|
-
*
|
|
2944
|
-
* @type {string}
|
|
2945
|
-
* @memberof UpdateRaindropResponseItem
|
|
2946
|
-
*/
|
|
2947
696
|
'link': string;
|
|
2948
|
-
/**
|
|
2949
|
-
*
|
|
2950
|
-
* @type {Array<CreateRaindropResponseItemMediaInner>}
|
|
2951
|
-
* @memberof UpdateRaindropResponseItem
|
|
2952
|
-
*/
|
|
2953
697
|
'media': Array<CreateRaindropResponseItemMediaInner>;
|
|
2954
|
-
/**
|
|
2955
|
-
*
|
|
2956
|
-
* @type {string}
|
|
2957
|
-
* @memberof UpdateRaindropResponseItem
|
|
2958
|
-
*/
|
|
2959
698
|
'note': string;
|
|
2960
|
-
/**
|
|
2961
|
-
*
|
|
2962
|
-
* @type {boolean}
|
|
2963
|
-
* @memberof UpdateRaindropResponseItem
|
|
2964
|
-
*/
|
|
2965
699
|
'removed': boolean;
|
|
2966
|
-
/**
|
|
2967
|
-
*
|
|
2968
|
-
* @type {number}
|
|
2969
|
-
* @memberof UpdateRaindropResponseItem
|
|
2970
|
-
*/
|
|
2971
700
|
'sort': number;
|
|
2972
|
-
/**
|
|
2973
|
-
*
|
|
2974
|
-
* @type {Array<string>}
|
|
2975
|
-
* @memberof UpdateRaindropResponseItem
|
|
2976
|
-
*/
|
|
2977
701
|
'tags': Array<string>;
|
|
2978
|
-
/**
|
|
2979
|
-
*
|
|
2980
|
-
* @type {string}
|
|
2981
|
-
* @memberof UpdateRaindropResponseItem
|
|
2982
|
-
*/
|
|
2983
702
|
'title': string;
|
|
2984
|
-
/**
|
|
2985
|
-
*
|
|
2986
|
-
* @type {string}
|
|
2987
|
-
* @memberof UpdateRaindropResponseItem
|
|
2988
|
-
*/
|
|
2989
703
|
'type': string;
|
|
2990
|
-
/**
|
|
2991
|
-
*
|
|
2992
|
-
* @type {UserRef}
|
|
2993
|
-
* @memberof UpdateRaindropResponseItem
|
|
2994
|
-
*/
|
|
2995
704
|
'user': UserRef;
|
|
2996
|
-
/**
|
|
2997
|
-
*
|
|
2998
|
-
* @type {Array<GetRaindropResponseItemHighlightsInner>}
|
|
2999
|
-
* @memberof UpdateRaindropResponseItem
|
|
3000
|
-
*/
|
|
3001
705
|
'highlights': Array<GetRaindropResponseItemHighlightsInner>;
|
|
3002
706
|
}
|
|
3003
|
-
/**
|
|
3004
|
-
*
|
|
3005
|
-
* @export
|
|
3006
|
-
* @interface UpdateRaindropsRequest
|
|
3007
|
-
*/
|
|
3008
707
|
interface UpdateRaindropsRequest {
|
|
3009
|
-
/**
|
|
3010
|
-
*
|
|
3011
|
-
* @type {Array<number>}
|
|
3012
|
-
* @memberof UpdateRaindropsRequest
|
|
3013
|
-
*/
|
|
3014
708
|
'ids'?: Array<number>;
|
|
3015
|
-
/**
|
|
3016
|
-
*
|
|
3017
|
-
* @type {boolean}
|
|
3018
|
-
* @memberof UpdateRaindropsRequest
|
|
3019
|
-
*/
|
|
3020
709
|
'important'?: boolean;
|
|
3021
|
-
/**
|
|
3022
|
-
*
|
|
3023
|
-
* @type {Array<string>}
|
|
3024
|
-
* @memberof UpdateRaindropsRequest
|
|
3025
|
-
*/
|
|
3026
710
|
'tags'?: Array<string>;
|
|
3027
|
-
/**
|
|
3028
|
-
*
|
|
3029
|
-
* @type {Array<string>}
|
|
3030
|
-
* @memberof UpdateRaindropsRequest
|
|
3031
|
-
*/
|
|
3032
711
|
'media'?: Array<string>;
|
|
3033
|
-
/**
|
|
3034
|
-
*
|
|
3035
|
-
* @type {string}
|
|
3036
|
-
* @memberof UpdateRaindropsRequest
|
|
3037
|
-
*/
|
|
3038
712
|
'cover'?: string;
|
|
3039
|
-
/**
|
|
3040
|
-
*
|
|
3041
|
-
* @type {UpdateRaindropsRequestCollection}
|
|
3042
|
-
* @memberof UpdateRaindropsRequest
|
|
3043
|
-
*/
|
|
3044
713
|
'collection'?: UpdateRaindropsRequestCollection;
|
|
3045
714
|
}
|
|
3046
|
-
/**
|
|
3047
|
-
*
|
|
3048
|
-
* @export
|
|
3049
|
-
* @interface UpdateRaindropsRequestCollection
|
|
3050
|
-
*/
|
|
3051
715
|
interface UpdateRaindropsRequestCollection {
|
|
3052
|
-
/**
|
|
3053
|
-
*
|
|
3054
|
-
* @type {number}
|
|
3055
|
-
* @memberof UpdateRaindropsRequestCollection
|
|
3056
|
-
*/
|
|
3057
716
|
'$id'?: number;
|
|
3058
717
|
}
|
|
3059
|
-
/**
|
|
3060
|
-
*
|
|
3061
|
-
* @export
|
|
3062
|
-
* @interface UpdateRaindropsResponse
|
|
3063
|
-
*/
|
|
3064
718
|
interface UpdateRaindropsResponse {
|
|
3065
|
-
/**
|
|
3066
|
-
*
|
|
3067
|
-
* @type {boolean}
|
|
3068
|
-
* @memberof UpdateRaindropsResponse
|
|
3069
|
-
*/
|
|
3070
719
|
'result'?: boolean;
|
|
3071
|
-
/**
|
|
3072
|
-
*
|
|
3073
|
-
* @type {number}
|
|
3074
|
-
* @memberof UpdateRaindropsResponse
|
|
3075
|
-
*/
|
|
3076
720
|
'modified'?: number;
|
|
721
|
+
'matched'?: number;
|
|
3077
722
|
}
|
|
3078
|
-
/**
|
|
3079
|
-
*
|
|
3080
|
-
* @export
|
|
3081
|
-
* @interface UploadCollectionCoverResponse
|
|
3082
|
-
*/
|
|
3083
723
|
interface UploadCollectionCoverResponse {
|
|
3084
|
-
/**
|
|
3085
|
-
*
|
|
3086
|
-
* @type {boolean}
|
|
3087
|
-
* @memberof UploadCollectionCoverResponse
|
|
3088
|
-
*/
|
|
3089
724
|
'result': boolean;
|
|
3090
|
-
/**
|
|
3091
|
-
*
|
|
3092
|
-
* @type {UploadCollectionCoverResponseItem}
|
|
3093
|
-
* @memberof UploadCollectionCoverResponse
|
|
3094
|
-
*/
|
|
3095
725
|
'item': UploadCollectionCoverResponseItem;
|
|
3096
726
|
}
|
|
3097
|
-
/**
|
|
3098
|
-
*
|
|
3099
|
-
* @export
|
|
3100
|
-
* @interface UploadCollectionCoverResponseItem
|
|
3101
|
-
*/
|
|
3102
727
|
interface UploadCollectionCoverResponseItem {
|
|
3103
|
-
/**
|
|
3104
|
-
*
|
|
3105
|
-
* @type {number}
|
|
3106
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3107
|
-
*/
|
|
3108
728
|
'_id': number;
|
|
3109
|
-
/**
|
|
3110
|
-
*
|
|
3111
|
-
* @type {string}
|
|
3112
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3113
|
-
*/
|
|
3114
729
|
'title': string;
|
|
3115
|
-
/**
|
|
3116
|
-
*
|
|
3117
|
-
* @type {string}
|
|
3118
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3119
|
-
*/
|
|
3120
730
|
'description': string;
|
|
3121
|
-
/**
|
|
3122
|
-
*
|
|
3123
|
-
* @type {UserRef}
|
|
3124
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3125
|
-
*/
|
|
3126
731
|
'user': UserRef;
|
|
3127
|
-
/**
|
|
3128
|
-
*
|
|
3129
|
-
* @type {boolean}
|
|
3130
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3131
|
-
*/
|
|
3132
732
|
'public': boolean;
|
|
3133
|
-
/**
|
|
3134
|
-
*
|
|
3135
|
-
* @type {string}
|
|
3136
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3137
|
-
*/
|
|
3138
733
|
'view': string;
|
|
3139
|
-
/**
|
|
3140
|
-
*
|
|
3141
|
-
* @type {number}
|
|
3142
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3143
|
-
*/
|
|
3144
734
|
'count': number;
|
|
3145
|
-
/**
|
|
3146
|
-
*
|
|
3147
|
-
* @type {Array<string>}
|
|
3148
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3149
|
-
*/
|
|
3150
735
|
'cover': Array<string>;
|
|
3151
|
-
/**
|
|
3152
|
-
*
|
|
3153
|
-
* @type {number}
|
|
3154
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3155
|
-
*/
|
|
3156
736
|
'sort': number;
|
|
3157
|
-
/**
|
|
3158
|
-
*
|
|
3159
|
-
* @type {boolean}
|
|
3160
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3161
|
-
*/
|
|
3162
737
|
'expanded': boolean;
|
|
3163
|
-
/**
|
|
3164
|
-
*
|
|
3165
|
-
* @type {CreatorRef}
|
|
3166
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3167
|
-
*/
|
|
3168
738
|
'creatorRef': CreatorRef;
|
|
3169
|
-
/**
|
|
3170
|
-
*
|
|
3171
|
-
* @type {string}
|
|
3172
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3173
|
-
*/
|
|
3174
739
|
'lastAction': string;
|
|
3175
|
-
/**
|
|
3176
|
-
*
|
|
3177
|
-
* @type {string}
|
|
3178
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3179
|
-
*/
|
|
3180
740
|
'created': string;
|
|
3181
|
-
/**
|
|
3182
|
-
*
|
|
3183
|
-
* @type {string}
|
|
3184
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3185
|
-
*/
|
|
3186
741
|
'lastUpdate': string;
|
|
3187
|
-
/**
|
|
3188
|
-
*
|
|
3189
|
-
* @type {string}
|
|
3190
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3191
|
-
*/
|
|
3192
742
|
'slug': string;
|
|
3193
|
-
/**
|
|
3194
|
-
*
|
|
3195
|
-
* @type {string}
|
|
3196
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3197
|
-
*/
|
|
3198
743
|
'color'?: string;
|
|
3199
|
-
/**
|
|
3200
|
-
*
|
|
3201
|
-
* @type {CollectionAccess}
|
|
3202
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3203
|
-
*/
|
|
3204
744
|
'access': CollectionAccess;
|
|
3205
|
-
/**
|
|
3206
|
-
*
|
|
3207
|
-
* @type {boolean}
|
|
3208
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3209
|
-
*/
|
|
3210
745
|
'author': boolean;
|
|
3211
|
-
/**
|
|
3212
|
-
*
|
|
3213
|
-
* @type {object}
|
|
3214
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3215
|
-
*/
|
|
3216
746
|
'parent': object | null;
|
|
3217
|
-
/**
|
|
3218
|
-
*
|
|
3219
|
-
* @type {number}
|
|
3220
|
-
* @memberof UploadCollectionCoverResponseItem
|
|
3221
|
-
*/
|
|
3222
747
|
'__v': number;
|
|
3223
748
|
}
|
|
3224
|
-
/**
|
|
3225
|
-
*
|
|
3226
|
-
* @export
|
|
3227
|
-
* @interface UploadFileResponse
|
|
3228
|
-
*/
|
|
3229
749
|
interface UploadFileResponse {
|
|
3230
|
-
/**
|
|
3231
|
-
*
|
|
3232
|
-
* @type {boolean}
|
|
3233
|
-
* @memberof UploadFileResponse
|
|
3234
|
-
*/
|
|
3235
750
|
'result': boolean;
|
|
3236
|
-
/**
|
|
3237
|
-
*
|
|
3238
|
-
* @type {UploadFileResponseItem}
|
|
3239
|
-
* @memberof UploadFileResponse
|
|
3240
|
-
*/
|
|
3241
751
|
'item': UploadFileResponseItem;
|
|
3242
752
|
}
|
|
3243
|
-
/**
|
|
3244
|
-
*
|
|
3245
|
-
* @export
|
|
3246
|
-
* @interface UploadFileResponseItem
|
|
3247
|
-
*/
|
|
3248
753
|
interface UploadFileResponseItem {
|
|
3249
|
-
/**
|
|
3250
|
-
*
|
|
3251
|
-
* @type {number}
|
|
3252
|
-
* @memberof UploadFileResponseItem
|
|
3253
|
-
*/
|
|
3254
754
|
'__v': number;
|
|
3255
|
-
/**
|
|
3256
|
-
*
|
|
3257
|
-
* @type {number}
|
|
3258
|
-
* @memberof UploadFileResponseItem
|
|
3259
|
-
*/
|
|
3260
755
|
'_id': number;
|
|
3261
|
-
/**
|
|
3262
|
-
*
|
|
3263
|
-
* @type {CollectionRef}
|
|
3264
|
-
* @memberof UploadFileResponseItem
|
|
3265
|
-
*/
|
|
3266
756
|
'collection': CollectionRef | null;
|
|
3267
|
-
/**
|
|
3268
|
-
*
|
|
3269
|
-
* @type {number}
|
|
3270
|
-
* @memberof UploadFileResponseItem
|
|
3271
|
-
*/
|
|
3272
757
|
'collectionId': number;
|
|
3273
|
-
/**
|
|
3274
|
-
*
|
|
3275
|
-
* @type {string}
|
|
3276
|
-
* @memberof UploadFileResponseItem
|
|
3277
|
-
*/
|
|
3278
758
|
'cover': string;
|
|
3279
|
-
/**
|
|
3280
|
-
*
|
|
3281
|
-
* @type {string}
|
|
3282
|
-
* @memberof UploadFileResponseItem
|
|
3283
|
-
*/
|
|
3284
759
|
'created': string;
|
|
3285
|
-
/**
|
|
3286
|
-
*
|
|
3287
|
-
* @type {CreatorRef}
|
|
3288
|
-
* @memberof UploadFileResponseItem
|
|
3289
|
-
*/
|
|
3290
760
|
'creatorRef': CreatorRef;
|
|
3291
|
-
/**
|
|
3292
|
-
*
|
|
3293
|
-
* @type {string}
|
|
3294
|
-
* @memberof UploadFileResponseItem
|
|
3295
|
-
*/
|
|
3296
761
|
'domain': string;
|
|
3297
|
-
/**
|
|
3298
|
-
*
|
|
3299
|
-
* @type {string}
|
|
3300
|
-
* @memberof UploadFileResponseItem
|
|
3301
|
-
*/
|
|
3302
762
|
'excerpt': string;
|
|
3303
|
-
/**
|
|
3304
|
-
*
|
|
3305
|
-
* @type {UploadFileResponseItemFile}
|
|
3306
|
-
* @memberof UploadFileResponseItem
|
|
3307
|
-
*/
|
|
3308
763
|
'file': UploadFileResponseItemFile;
|
|
3309
|
-
/**
|
|
3310
|
-
*
|
|
3311
|
-
* @type {string}
|
|
3312
|
-
* @memberof UploadFileResponseItem
|
|
3313
|
-
*/
|
|
3314
764
|
'lastUpdate': string;
|
|
3315
|
-
/**
|
|
3316
|
-
*
|
|
3317
|
-
* @type {string}
|
|
3318
|
-
* @memberof UploadFileResponseItem
|
|
3319
|
-
*/
|
|
3320
765
|
'link': string;
|
|
3321
|
-
|
|
3322
|
-
*
|
|
3323
|
-
* @type {Array<CreateRaindropResponseItemMediaInner>}
|
|
3324
|
-
* @memberof UploadFileResponseItem
|
|
3325
|
-
*/
|
|
3326
|
-
'media': Array<CreateRaindropResponseItemMediaInner>;
|
|
3327
|
-
/**
|
|
3328
|
-
*
|
|
3329
|
-
* @type {string}
|
|
3330
|
-
* @memberof UploadFileResponseItem
|
|
3331
|
-
*/
|
|
766
|
+
'media': Array<CreateRaindropResponseItemMediaInner>;
|
|
3332
767
|
'note': string;
|
|
3333
|
-
/**
|
|
3334
|
-
*
|
|
3335
|
-
* @type {boolean}
|
|
3336
|
-
* @memberof UploadFileResponseItem
|
|
3337
|
-
*/
|
|
3338
768
|
'removed': boolean;
|
|
3339
|
-
/**
|
|
3340
|
-
*
|
|
3341
|
-
* @type {number}
|
|
3342
|
-
* @memberof UploadFileResponseItem
|
|
3343
|
-
*/
|
|
3344
769
|
'sort': number;
|
|
3345
|
-
/**
|
|
3346
|
-
*
|
|
3347
|
-
* @type {Array<string>}
|
|
3348
|
-
* @memberof UploadFileResponseItem
|
|
3349
|
-
*/
|
|
3350
770
|
'tags': Array<string>;
|
|
3351
|
-
/**
|
|
3352
|
-
*
|
|
3353
|
-
* @type {string}
|
|
3354
|
-
* @memberof UploadFileResponseItem
|
|
3355
|
-
*/
|
|
3356
771
|
'title': string;
|
|
3357
|
-
/**
|
|
3358
|
-
*
|
|
3359
|
-
* @type {string}
|
|
3360
|
-
* @memberof UploadFileResponseItem
|
|
3361
|
-
*/
|
|
3362
772
|
'type': string;
|
|
3363
|
-
/**
|
|
3364
|
-
*
|
|
3365
|
-
* @type {UserRef}
|
|
3366
|
-
* @memberof UploadFileResponseItem
|
|
3367
|
-
*/
|
|
3368
773
|
'user': UserRef;
|
|
3369
774
|
}
|
|
3370
|
-
/**
|
|
3371
|
-
*
|
|
3372
|
-
* @export
|
|
3373
|
-
* @interface UploadFileResponseItemFile
|
|
3374
|
-
*/
|
|
3375
775
|
interface UploadFileResponseItemFile {
|
|
3376
|
-
/**
|
|
3377
|
-
*
|
|
3378
|
-
* @type {string}
|
|
3379
|
-
* @memberof UploadFileResponseItemFile
|
|
3380
|
-
*/
|
|
3381
776
|
'name': string;
|
|
3382
|
-
/**
|
|
3383
|
-
*
|
|
3384
|
-
* @type {number}
|
|
3385
|
-
* @memberof UploadFileResponseItemFile
|
|
3386
|
-
*/
|
|
3387
777
|
'size': number;
|
|
3388
|
-
/**
|
|
3389
|
-
*
|
|
3390
|
-
* @type {string}
|
|
3391
|
-
* @memberof UploadFileResponseItemFile
|
|
3392
|
-
*/
|
|
3393
778
|
'type': string;
|
|
3394
779
|
}
|
|
3395
|
-
/**
|
|
3396
|
-
*
|
|
3397
|
-
* @export
|
|
3398
|
-
* @interface UploadRaindropCoverResponse
|
|
3399
|
-
*/
|
|
3400
780
|
interface UploadRaindropCoverResponse {
|
|
3401
|
-
/**
|
|
3402
|
-
*
|
|
3403
|
-
* @type {boolean}
|
|
3404
|
-
* @memberof UploadRaindropCoverResponse
|
|
3405
|
-
*/
|
|
3406
781
|
'result'?: boolean;
|
|
3407
|
-
/**
|
|
3408
|
-
*
|
|
3409
|
-
* @type {UploadRaindropCoverResponseItem}
|
|
3410
|
-
* @memberof UploadRaindropCoverResponse
|
|
3411
|
-
*/
|
|
3412
782
|
'item'?: UploadRaindropCoverResponseItem;
|
|
3413
783
|
}
|
|
3414
|
-
/**
|
|
3415
|
-
*
|
|
3416
|
-
* @export
|
|
3417
|
-
* @interface UploadRaindropCoverResponseItem
|
|
3418
|
-
*/
|
|
3419
784
|
interface UploadRaindropCoverResponseItem {
|
|
3420
|
-
/**
|
|
3421
|
-
*
|
|
3422
|
-
* @type {number}
|
|
3423
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3424
|
-
*/
|
|
3425
785
|
'__v': number;
|
|
3426
|
-
/**
|
|
3427
|
-
*
|
|
3428
|
-
* @type {number}
|
|
3429
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3430
|
-
*/
|
|
3431
786
|
'_id': number;
|
|
3432
|
-
/**
|
|
3433
|
-
*
|
|
3434
|
-
* @type {CollectionRef}
|
|
3435
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3436
|
-
*/
|
|
3437
787
|
'collection': CollectionRef | null;
|
|
3438
|
-
/**
|
|
3439
|
-
*
|
|
3440
|
-
* @type {number}
|
|
3441
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3442
|
-
*/
|
|
3443
788
|
'collectionId': number;
|
|
3444
|
-
/**
|
|
3445
|
-
*
|
|
3446
|
-
* @type {string}
|
|
3447
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3448
|
-
*/
|
|
3449
789
|
'cover': string;
|
|
3450
|
-
/**
|
|
3451
|
-
*
|
|
3452
|
-
* @type {string}
|
|
3453
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3454
|
-
*/
|
|
3455
790
|
'created': string;
|
|
3456
|
-
/**
|
|
3457
|
-
*
|
|
3458
|
-
* @type {CreatorRef}
|
|
3459
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3460
|
-
*/
|
|
3461
791
|
'creatorRef': CreatorRef;
|
|
3462
|
-
/**
|
|
3463
|
-
*
|
|
3464
|
-
* @type {string}
|
|
3465
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3466
|
-
*/
|
|
3467
792
|
'domain': string;
|
|
3468
|
-
/**
|
|
3469
|
-
*
|
|
3470
|
-
* @type {string}
|
|
3471
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3472
|
-
*/
|
|
3473
793
|
'excerpt': string;
|
|
3474
|
-
/**
|
|
3475
|
-
*
|
|
3476
|
-
* @type {string}
|
|
3477
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3478
|
-
*/
|
|
3479
794
|
'lastUpdate': string;
|
|
3480
|
-
/**
|
|
3481
|
-
*
|
|
3482
|
-
* @type {string}
|
|
3483
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3484
|
-
*/
|
|
3485
795
|
'link': string;
|
|
3486
|
-
/**
|
|
3487
|
-
*
|
|
3488
|
-
* @type {Array<CreateRaindropResponseItemMediaInner>}
|
|
3489
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3490
|
-
*/
|
|
3491
796
|
'media': Array<CreateRaindropResponseItemMediaInner>;
|
|
3492
|
-
/**
|
|
3493
|
-
*
|
|
3494
|
-
* @type {string}
|
|
3495
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3496
|
-
*/
|
|
3497
797
|
'note': string;
|
|
3498
|
-
/**
|
|
3499
|
-
*
|
|
3500
|
-
* @type {boolean}
|
|
3501
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3502
|
-
*/
|
|
3503
798
|
'removed': boolean;
|
|
3504
|
-
/**
|
|
3505
|
-
*
|
|
3506
|
-
* @type {number}
|
|
3507
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3508
|
-
*/
|
|
3509
799
|
'sort': number;
|
|
3510
|
-
/**
|
|
3511
|
-
*
|
|
3512
|
-
* @type {Array<string>}
|
|
3513
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3514
|
-
*/
|
|
3515
800
|
'tags': Array<string>;
|
|
3516
|
-
/**
|
|
3517
|
-
*
|
|
3518
|
-
* @type {string}
|
|
3519
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3520
|
-
*/
|
|
3521
801
|
'title': string;
|
|
3522
|
-
/**
|
|
3523
|
-
*
|
|
3524
|
-
* @type {string}
|
|
3525
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3526
|
-
*/
|
|
3527
802
|
'type': string;
|
|
3528
|
-
/**
|
|
3529
|
-
*
|
|
3530
|
-
* @type {UserRef}
|
|
3531
|
-
* @memberof UploadRaindropCoverResponseItem
|
|
3532
|
-
*/
|
|
3533
803
|
'user': UserRef;
|
|
3534
804
|
}
|
|
3535
|
-
/**
|
|
3536
|
-
*
|
|
3537
|
-
* @export
|
|
3538
|
-
* @interface User
|
|
3539
|
-
*/
|
|
3540
805
|
interface User {
|
|
3541
|
-
/**
|
|
3542
|
-
*
|
|
3543
|
-
* @type {number}
|
|
3544
|
-
* @memberof User
|
|
3545
|
-
*/
|
|
3546
806
|
'_id': number;
|
|
3547
|
-
/**
|
|
3548
|
-
*
|
|
3549
|
-
* @type {UserConfig}
|
|
3550
|
-
* @memberof User
|
|
3551
|
-
*/
|
|
3552
807
|
'config': UserConfig;
|
|
3553
|
-
/**
|
|
3554
|
-
*
|
|
3555
|
-
* @type {UserDropbox}
|
|
3556
|
-
* @memberof User
|
|
3557
|
-
*/
|
|
3558
808
|
'dropbox'?: UserDropbox;
|
|
3559
|
-
/**
|
|
3560
|
-
*
|
|
3561
|
-
* @type {string}
|
|
3562
|
-
* @memberof User
|
|
3563
|
-
*/
|
|
3564
809
|
'email': string;
|
|
3565
|
-
/**
|
|
3566
|
-
*
|
|
3567
|
-
* @type {string}
|
|
3568
|
-
* @memberof User
|
|
3569
|
-
*/
|
|
3570
810
|
'email_MD5'?: string;
|
|
3571
|
-
/**
|
|
3572
|
-
*
|
|
3573
|
-
* @type {UserFiles}
|
|
3574
|
-
* @memberof User
|
|
3575
|
-
*/
|
|
3576
811
|
'files': UserFiles;
|
|
3577
|
-
/**
|
|
3578
|
-
*
|
|
3579
|
-
* @type {string}
|
|
3580
|
-
* @memberof User
|
|
3581
|
-
*/
|
|
3582
812
|
'fullName': string;
|
|
3583
|
-
/**
|
|
3584
|
-
*
|
|
3585
|
-
* @type {UserDropbox}
|
|
3586
|
-
* @memberof User
|
|
3587
|
-
*/
|
|
3588
813
|
'gdrive'?: UserDropbox;
|
|
3589
|
-
/**
|
|
3590
|
-
*
|
|
3591
|
-
* @type {Array<Group>}
|
|
3592
|
-
* @memberof User
|
|
3593
|
-
*/
|
|
3594
814
|
'groups': Array<Group>;
|
|
3595
|
-
/**
|
|
3596
|
-
*
|
|
3597
|
-
* @type {boolean}
|
|
3598
|
-
* @memberof User
|
|
3599
|
-
*/
|
|
3600
815
|
'password': boolean;
|
|
3601
|
-
/**
|
|
3602
|
-
*
|
|
3603
|
-
* @type {boolean}
|
|
3604
|
-
* @memberof User
|
|
3605
|
-
*/
|
|
3606
816
|
'pro': boolean;
|
|
3607
|
-
/**
|
|
3608
|
-
*
|
|
3609
|
-
* @type {string}
|
|
3610
|
-
* @memberof User
|
|
3611
|
-
*/
|
|
3612
817
|
'proExpire'?: string;
|
|
3613
|
-
/**
|
|
3614
|
-
*
|
|
3615
|
-
* @type {string}
|
|
3616
|
-
* @memberof User
|
|
3617
|
-
*/
|
|
3618
818
|
'registered': string;
|
|
3619
|
-
/**
|
|
3620
|
-
*
|
|
3621
|
-
* @type {UserTfa}
|
|
3622
|
-
* @memberof User
|
|
3623
|
-
*/
|
|
3624
819
|
'tfa'?: UserTfa;
|
|
3625
|
-
/**
|
|
3626
|
-
*
|
|
3627
|
-
* @type {string}
|
|
3628
|
-
* @memberof User
|
|
3629
|
-
*/
|
|
3630
820
|
'name'?: string;
|
|
3631
|
-
/**
|
|
3632
|
-
*
|
|
3633
|
-
* @type {string}
|
|
3634
|
-
* @memberof User
|
|
3635
|
-
*/
|
|
3636
821
|
'avatar'?: string;
|
|
3637
|
-
/**
|
|
3638
|
-
*
|
|
3639
|
-
* @type {string}
|
|
3640
|
-
* @memberof User
|
|
3641
|
-
*/
|
|
3642
822
|
'lastAction'?: string;
|
|
3643
|
-
/**
|
|
3644
|
-
*
|
|
3645
|
-
* @type {string}
|
|
3646
|
-
* @memberof User
|
|
3647
|
-
*/
|
|
3648
823
|
'lastVisit'?: string;
|
|
3649
|
-
/**
|
|
3650
|
-
*
|
|
3651
|
-
* @type {string}
|
|
3652
|
-
* @memberof User
|
|
3653
|
-
*/
|
|
3654
824
|
'lastUpdate'?: string;
|
|
3655
|
-
/**
|
|
3656
|
-
*
|
|
3657
|
-
* @type {boolean}
|
|
3658
|
-
* @memberof User
|
|
3659
|
-
*/
|
|
3660
825
|
'emailConfirmed'?: boolean;
|
|
3661
826
|
}
|
|
3662
|
-
/**
|
|
3663
|
-
*
|
|
3664
|
-
* @export
|
|
3665
|
-
* @interface UserConfig
|
|
3666
|
-
*/
|
|
3667
827
|
interface UserConfig {
|
|
3668
|
-
/**
|
|
3669
|
-
*
|
|
3670
|
-
* @type {string}
|
|
3671
|
-
* @memberof UserConfig
|
|
3672
|
-
*/
|
|
3673
828
|
'broken_level': string;
|
|
3674
|
-
/**
|
|
3675
|
-
*
|
|
3676
|
-
* @type {string}
|
|
3677
|
-
* @memberof UserConfig
|
|
3678
|
-
*/
|
|
3679
829
|
'font_color'?: string;
|
|
3680
|
-
/**
|
|
3681
|
-
*
|
|
3682
|
-
* @type {number}
|
|
3683
|
-
* @memberof UserConfig
|
|
3684
|
-
*/
|
|
3685
830
|
'font_size': number;
|
|
3686
|
-
/**
|
|
3687
|
-
*
|
|
3688
|
-
* @type {string}
|
|
3689
|
-
* @memberof UserConfig
|
|
3690
|
-
*/
|
|
3691
831
|
'lang'?: string;
|
|
3692
|
-
/**
|
|
3693
|
-
*
|
|
3694
|
-
* @type {number}
|
|
3695
|
-
* @memberof UserConfig
|
|
3696
|
-
*/
|
|
3697
832
|
'last_collection': number;
|
|
3698
|
-
/**
|
|
3699
|
-
*
|
|
3700
|
-
* @type {Array<string>}
|
|
3701
|
-
* @memberof UserConfig
|
|
3702
|
-
*/
|
|
3703
833
|
'raindrops_buttons'?: Array<string>;
|
|
3704
|
-
/**
|
|
3705
|
-
*
|
|
3706
|
-
* @type {Array<string>}
|
|
3707
|
-
* @memberof UserConfig
|
|
3708
|
-
*/
|
|
3709
834
|
'raindrops_hide'?: Array<string>;
|
|
3710
|
-
/**
|
|
3711
|
-
*
|
|
3712
|
-
* @type {boolean}
|
|
3713
|
-
* @memberof UserConfig
|
|
3714
|
-
*/
|
|
3715
835
|
'raindrops_search_by_score'?: boolean;
|
|
3716
|
-
/**
|
|
3717
|
-
*
|
|
3718
|
-
* @type {boolean}
|
|
3719
|
-
* @memberof UserConfig
|
|
3720
|
-
*/
|
|
3721
836
|
'raindrops_search_incollection'?: boolean;
|
|
3722
|
-
/**
|
|
3723
|
-
*
|
|
3724
|
-
* @type {string}
|
|
3725
|
-
* @memberof UserConfig
|
|
3726
|
-
*/
|
|
3727
837
|
'raindrops_sort': string;
|
|
3728
|
-
/**
|
|
3729
|
-
*
|
|
3730
|
-
* @type {string}
|
|
3731
|
-
* @memberof UserConfig
|
|
3732
|
-
*/
|
|
3733
838
|
'default_collection_view'?: string;
|
|
3734
|
-
/**
|
|
3735
|
-
*
|
|
3736
|
-
* @type {boolean}
|
|
3737
|
-
* @memberof UserConfig
|
|
3738
|
-
*/
|
|
3739
839
|
'nested_view_legacy'?: boolean;
|
|
3740
|
-
/**
|
|
3741
|
-
*
|
|
3742
|
-
* @type {number}
|
|
3743
|
-
* @memberof UserConfig
|
|
3744
|
-
*/
|
|
3745
840
|
'add_default_collection'?: number;
|
|
3746
|
-
/**
|
|
3747
|
-
*
|
|
3748
|
-
* @type {Array<string>}
|
|
3749
|
-
* @memberof UserConfig
|
|
3750
|
-
*/
|
|
3751
841
|
'acknowledge'?: Array<string>;
|
|
3752
|
-
/**
|
|
3753
|
-
*
|
|
3754
|
-
* @type {boolean}
|
|
3755
|
-
* @memberof UserConfig
|
|
3756
|
-
*/
|
|
3757
842
|
'ai_suggestions'?: boolean;
|
|
3758
|
-
/**
|
|
3759
|
-
*
|
|
3760
|
-
* @type {boolean}
|
|
3761
|
-
* @memberof UserConfig
|
|
3762
|
-
*/
|
|
3763
843
|
'filters_hide'?: boolean;
|
|
3764
|
-
/**
|
|
3765
|
-
*
|
|
3766
|
-
* @type {boolean}
|
|
3767
|
-
* @memberof UserConfig
|
|
3768
|
-
*/
|
|
3769
844
|
'ai_assistant'?: boolean;
|
|
3770
845
|
}
|
|
3771
|
-
/**
|
|
3772
|
-
*
|
|
3773
|
-
* @export
|
|
3774
|
-
* @interface UserDropbox
|
|
3775
|
-
*/
|
|
3776
846
|
interface UserDropbox {
|
|
3777
|
-
/**
|
|
3778
|
-
*
|
|
3779
|
-
* @type {boolean}
|
|
3780
|
-
* @memberof UserDropbox
|
|
3781
|
-
*/
|
|
3782
847
|
'enabled': boolean;
|
|
3783
848
|
}
|
|
3784
|
-
/**
|
|
3785
|
-
*
|
|
3786
|
-
* @export
|
|
3787
|
-
* @interface UserFiles
|
|
3788
|
-
*/
|
|
3789
849
|
interface UserFiles {
|
|
3790
|
-
/**
|
|
3791
|
-
*
|
|
3792
|
-
* @type {number}
|
|
3793
|
-
* @memberof UserFiles
|
|
3794
|
-
*/
|
|
3795
850
|
'used': number;
|
|
3796
|
-
/**
|
|
3797
|
-
*
|
|
3798
|
-
* @type {number}
|
|
3799
|
-
* @memberof UserFiles
|
|
3800
|
-
*/
|
|
3801
851
|
'size': number;
|
|
3802
|
-
/**
|
|
3803
|
-
*
|
|
3804
|
-
* @type {string}
|
|
3805
|
-
* @memberof UserFiles
|
|
3806
|
-
*/
|
|
3807
852
|
'lastCheckPoint': string;
|
|
3808
853
|
}
|
|
3809
|
-
/**
|
|
3810
|
-
*
|
|
3811
|
-
* @export
|
|
3812
|
-
* @interface UserRef
|
|
3813
|
-
*/
|
|
3814
854
|
interface UserRef {
|
|
3815
|
-
/**
|
|
3816
|
-
*
|
|
3817
|
-
* @type {number}
|
|
3818
|
-
* @memberof UserRef
|
|
3819
|
-
*/
|
|
3820
855
|
'$id': number;
|
|
3821
|
-
/**
|
|
3822
|
-
*
|
|
3823
|
-
* @type {string}
|
|
3824
|
-
* @memberof UserRef
|
|
3825
|
-
*/
|
|
3826
856
|
'$ref': string;
|
|
3827
857
|
}
|
|
3828
|
-
/**
|
|
3829
|
-
*
|
|
3830
|
-
* @export
|
|
3831
|
-
* @interface UserTfa
|
|
3832
|
-
*/
|
|
3833
858
|
interface UserTfa {
|
|
3834
|
-
/**
|
|
3835
|
-
*
|
|
3836
|
-
* @type {boolean}
|
|
3837
|
-
* @memberof UserTfa
|
|
3838
|
-
*/
|
|
3839
859
|
'enabled'?: boolean;
|
|
3840
860
|
}
|
|
3841
861
|
/**
|
|
3842
862
|
* AuthenticationApi - axios parameter creator
|
|
3843
|
-
* @export
|
|
3844
863
|
*/
|
|
3845
864
|
declare const AuthenticationApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3846
865
|
/**
|
|
@@ -3861,7 +880,6 @@ declare const AuthenticationApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3861
880
|
};
|
|
3862
881
|
/**
|
|
3863
882
|
* AuthenticationApi - functional programming interface
|
|
3864
|
-
* @export
|
|
3865
883
|
*/
|
|
3866
884
|
declare const AuthenticationApiFp: (configuration?: Configuration) => {
|
|
3867
885
|
/**
|
|
@@ -3882,7 +900,6 @@ declare const AuthenticationApiFp: (configuration?: Configuration) => {
|
|
|
3882
900
|
};
|
|
3883
901
|
/**
|
|
3884
902
|
* AuthenticationApi - factory interface
|
|
3885
|
-
* @export
|
|
3886
903
|
*/
|
|
3887
904
|
declare const AuthenticationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3888
905
|
/**
|
|
@@ -3892,20 +909,17 @@ declare const AuthenticationApiFactory: (configuration?: Configuration, basePath
|
|
|
3892
909
|
* @param {*} [options] Override http request option.
|
|
3893
910
|
* @throws {RequiredError}
|
|
3894
911
|
*/
|
|
3895
|
-
authorize(redirectUri: string, clientId: string, options?:
|
|
912
|
+
authorize(redirectUri: string, clientId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3896
913
|
/**
|
|
3897
914
|
*
|
|
3898
915
|
* @param {GetOrRefreshTokenRequest} [getOrRefreshTokenRequest]
|
|
3899
916
|
* @param {*} [options] Override http request option.
|
|
3900
917
|
* @throws {RequiredError}
|
|
3901
918
|
*/
|
|
3902
|
-
getOrRefreshToken(getOrRefreshTokenRequest?: GetOrRefreshTokenRequest, options?:
|
|
919
|
+
getOrRefreshToken(getOrRefreshTokenRequest?: GetOrRefreshTokenRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetOrRefreshToken200Response>;
|
|
3903
920
|
};
|
|
3904
921
|
/**
|
|
3905
922
|
* AuthenticationApi - object-oriented interface
|
|
3906
|
-
* @export
|
|
3907
|
-
* @class AuthenticationApi
|
|
3908
|
-
* @extends {BaseAPI}
|
|
3909
923
|
*/
|
|
3910
924
|
declare class AuthenticationApi$1 extends BaseAPI {
|
|
3911
925
|
/**
|
|
@@ -3914,7 +928,6 @@ declare class AuthenticationApi$1 extends BaseAPI {
|
|
|
3914
928
|
* @param {string} clientId
|
|
3915
929
|
* @param {*} [options] Override http request option.
|
|
3916
930
|
* @throws {RequiredError}
|
|
3917
|
-
* @memberof AuthenticationApi
|
|
3918
931
|
*/
|
|
3919
932
|
authorize(redirectUri: string, clientId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any, {}>>;
|
|
3920
933
|
/**
|
|
@@ -3922,13 +935,11 @@ declare class AuthenticationApi$1 extends BaseAPI {
|
|
|
3922
935
|
* @param {GetOrRefreshTokenRequest} [getOrRefreshTokenRequest]
|
|
3923
936
|
* @param {*} [options] Override http request option.
|
|
3924
937
|
* @throws {RequiredError}
|
|
3925
|
-
* @memberof AuthenticationApi
|
|
3926
938
|
*/
|
|
3927
939
|
getOrRefreshToken(getOrRefreshTokenRequest?: GetOrRefreshTokenRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<GetOrRefreshToken200Response, any, {}>>;
|
|
3928
940
|
}
|
|
3929
941
|
/**
|
|
3930
942
|
* CollectionApi - axios parameter creator
|
|
3931
|
-
* @export
|
|
3932
943
|
*/
|
|
3933
944
|
declare const CollectionApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3934
945
|
/**
|
|
@@ -4081,7 +1092,6 @@ declare const CollectionApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
4081
1092
|
};
|
|
4082
1093
|
/**
|
|
4083
1094
|
* CollectionApi - functional programming interface
|
|
4084
|
-
* @export
|
|
4085
1095
|
*/
|
|
4086
1096
|
declare const CollectionApiFp: (configuration?: Configuration) => {
|
|
4087
1097
|
/**
|
|
@@ -4234,7 +1244,6 @@ declare const CollectionApiFp: (configuration?: Configuration) => {
|
|
|
4234
1244
|
};
|
|
4235
1245
|
/**
|
|
4236
1246
|
* CollectionApi - factory interface
|
|
4237
|
-
* @export
|
|
4238
1247
|
*/
|
|
4239
1248
|
declare const CollectionApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4240
1249
|
/**
|
|
@@ -4243,7 +1252,7 @@ declare const CollectionApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
4243
1252
|
* @param {*} [options] Override http request option.
|
|
4244
1253
|
* @throws {RequiredError}
|
|
4245
1254
|
*/
|
|
4246
|
-
acceptInvitation(id: number, options?:
|
|
1255
|
+
acceptInvitation(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AcceptInvitation200Response>;
|
|
4247
1256
|
/**
|
|
4248
1257
|
*
|
|
4249
1258
|
* @param {number} userId
|
|
@@ -4252,14 +1261,14 @@ declare const CollectionApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
4252
1261
|
* @param {*} [options] Override http request option.
|
|
4253
1262
|
* @throws {RequiredError}
|
|
4254
1263
|
*/
|
|
4255
|
-
changeCollaboratorAccessLevel(userId: number, id: number, changeCollaboratorAccessLevelRequest?: ChangeCollaboratorAccessLevelRequest, options?:
|
|
1264
|
+
changeCollaboratorAccessLevel(userId: number, id: number, changeCollaboratorAccessLevelRequest?: ChangeCollaboratorAccessLevelRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
4256
1265
|
/**
|
|
4257
1266
|
*
|
|
4258
1267
|
* @param {CreateCollectionRequest} [createCollectionRequest]
|
|
4259
1268
|
* @param {*} [options] Override http request option.
|
|
4260
1269
|
* @throws {RequiredError}
|
|
4261
1270
|
*/
|
|
4262
|
-
createCollection(createCollectionRequest?: CreateCollectionRequest, options?:
|
|
1271
|
+
createCollection(createCollectionRequest?: CreateCollectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateCollectionResponse>;
|
|
4263
1272
|
/**
|
|
4264
1273
|
*
|
|
4265
1274
|
* @param {number} userId
|
|
@@ -4267,92 +1276,92 @@ declare const CollectionApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
4267
1276
|
* @param {*} [options] Override http request option.
|
|
4268
1277
|
* @throws {RequiredError}
|
|
4269
1278
|
*/
|
|
4270
|
-
deleteCollaborator(userId: number, id: number, options?:
|
|
1279
|
+
deleteCollaborator(userId: number, id: number, options?: RawAxiosRequestConfig): AxiosPromise<SimpleResponse>;
|
|
4271
1280
|
/**
|
|
4272
1281
|
*
|
|
4273
1282
|
* @param {*} [options] Override http request option.
|
|
4274
1283
|
* @throws {RequiredError}
|
|
4275
1284
|
*/
|
|
4276
|
-
emptyTrash(options?:
|
|
1285
|
+
emptyTrash(options?: RawAxiosRequestConfig): AxiosPromise<SimpleResponse>;
|
|
4277
1286
|
/**
|
|
4278
1287
|
*
|
|
4279
1288
|
* @param {*} [options] Override http request option.
|
|
4280
1289
|
* @throws {RequiredError}
|
|
4281
1290
|
*/
|
|
4282
|
-
getChildCollections(options?:
|
|
1291
|
+
getChildCollections(options?: RawAxiosRequestConfig): AxiosPromise<GetChildCollectionsResponse>;
|
|
4283
1292
|
/**
|
|
4284
1293
|
*
|
|
4285
1294
|
* @param {number} id
|
|
4286
1295
|
* @param {*} [options] Override http request option.
|
|
4287
1296
|
* @throws {RequiredError}
|
|
4288
1297
|
*/
|
|
4289
|
-
getCollaborators(id: number, options?:
|
|
1298
|
+
getCollaborators(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
4290
1299
|
/**
|
|
4291
1300
|
*
|
|
4292
1301
|
* @param {number} id
|
|
4293
1302
|
* @param {*} [options] Override http request option.
|
|
4294
1303
|
* @throws {RequiredError}
|
|
4295
1304
|
*/
|
|
4296
|
-
getCollection(id: number, options?:
|
|
1305
|
+
getCollection(id: number, options?: RawAxiosRequestConfig): AxiosPromise<GetCollectionResponse>;
|
|
4297
1306
|
/**
|
|
4298
1307
|
*
|
|
4299
1308
|
* @param {*} [options] Override http request option.
|
|
4300
1309
|
* @throws {RequiredError}
|
|
4301
1310
|
*/
|
|
4302
|
-
getFeaturedCovers(options?:
|
|
1311
|
+
getFeaturedCovers(options?: RawAxiosRequestConfig): AxiosPromise<GetFeaturedCoversResponse>;
|
|
4303
1312
|
/**
|
|
4304
1313
|
*
|
|
4305
1314
|
* @param {*} [options] Override http request option.
|
|
4306
1315
|
* @throws {RequiredError}
|
|
4307
1316
|
*/
|
|
4308
|
-
getRootCollections(options?:
|
|
1317
|
+
getRootCollections(options?: RawAxiosRequestConfig): AxiosPromise<GetRootCollectionsResponse>;
|
|
4309
1318
|
/**
|
|
4310
1319
|
*
|
|
4311
1320
|
* @param {*} [options] Override http request option.
|
|
4312
1321
|
* @throws {RequiredError}
|
|
4313
1322
|
*/
|
|
4314
|
-
getSystemCollectionStats(options?:
|
|
1323
|
+
getSystemCollectionStats(options?: RawAxiosRequestConfig): AxiosPromise<GetSystemCollectionStatsResponse>;
|
|
4315
1324
|
/**
|
|
4316
1325
|
*
|
|
4317
1326
|
* @param {MergeCollectionsRequest} [mergeCollectionsRequest]
|
|
4318
1327
|
* @param {*} [options] Override http request option.
|
|
4319
1328
|
* @throws {RequiredError}
|
|
4320
1329
|
*/
|
|
4321
|
-
mergeCollections(mergeCollectionsRequest?: MergeCollectionsRequest, options?:
|
|
1330
|
+
mergeCollections(mergeCollectionsRequest?: MergeCollectionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<MergeCollectionsResponse>;
|
|
4322
1331
|
/**
|
|
4323
1332
|
*
|
|
4324
1333
|
* @param {*} [options] Override http request option.
|
|
4325
1334
|
* @throws {RequiredError}
|
|
4326
1335
|
*/
|
|
4327
|
-
removeAllEmptyCollections(options?:
|
|
1336
|
+
removeAllEmptyCollections(options?: RawAxiosRequestConfig): AxiosPromise<RemoveAllEmptyCollectionsResponse>;
|
|
4328
1337
|
/**
|
|
4329
1338
|
*
|
|
4330
1339
|
* @param {number} id
|
|
4331
1340
|
* @param {*} [options] Override http request option.
|
|
4332
1341
|
* @throws {RequiredError}
|
|
4333
1342
|
*/
|
|
4334
|
-
removeCollection(id: number, options?:
|
|
1343
|
+
removeCollection(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SimpleResponse>;
|
|
4335
1344
|
/**
|
|
4336
1345
|
*
|
|
4337
1346
|
* @param {RemoveCollectionsRequest} [removeCollectionsRequest]
|
|
4338
1347
|
* @param {*} [options] Override http request option.
|
|
4339
1348
|
* @throws {RequiredError}
|
|
4340
1349
|
*/
|
|
4341
|
-
removeCollections(removeCollectionsRequest?: RemoveCollectionsRequest, options?:
|
|
1350
|
+
removeCollections(removeCollectionsRequest?: RemoveCollectionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<RemoveCollectionsResponse>;
|
|
4342
1351
|
/**
|
|
4343
1352
|
*
|
|
4344
1353
|
* @param {ReorderAllCollectionsRequest} [reorderAllCollectionsRequest]
|
|
4345
1354
|
* @param {*} [options] Override http request option.
|
|
4346
1355
|
* @throws {RequiredError}
|
|
4347
1356
|
*/
|
|
4348
|
-
reorderAllCollections(reorderAllCollectionsRequest?: ReorderAllCollectionsRequest, options?:
|
|
1357
|
+
reorderAllCollections(reorderAllCollectionsRequest?: ReorderAllCollectionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<SimpleResponse>;
|
|
4349
1358
|
/**
|
|
4350
1359
|
*
|
|
4351
1360
|
* @param {string} text
|
|
4352
1361
|
* @param {*} [options] Override http request option.
|
|
4353
1362
|
* @throws {RequiredError}
|
|
4354
1363
|
*/
|
|
4355
|
-
searchCovers(text: string, options?:
|
|
1364
|
+
searchCovers(text: string, options?: RawAxiosRequestConfig): AxiosPromise<SearchCoversResponse>;
|
|
4356
1365
|
/**
|
|
4357
1366
|
*
|
|
4358
1367
|
* @param {number} id
|
|
@@ -4360,14 +1369,14 @@ declare const CollectionApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
4360
1369
|
* @param {*} [options] Override http request option.
|
|
4361
1370
|
* @throws {RequiredError}
|
|
4362
1371
|
*/
|
|
4363
|
-
shareCollection(id: number, shareCollectionRequest?: ShareCollectionRequest, options?:
|
|
1372
|
+
shareCollection(id: number, shareCollectionRequest?: ShareCollectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<ShareCollectionResponse>;
|
|
4364
1373
|
/**
|
|
4365
1374
|
*
|
|
4366
1375
|
* @param {number} id
|
|
4367
1376
|
* @param {*} [options] Override http request option.
|
|
4368
1377
|
* @throws {RequiredError}
|
|
4369
1378
|
*/
|
|
4370
|
-
unshareOrLeaveCollection(id: number, options?:
|
|
1379
|
+
unshareOrLeaveCollection(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SimpleResponse>;
|
|
4371
1380
|
/**
|
|
4372
1381
|
*
|
|
4373
1382
|
* @param {number} id
|
|
@@ -4375,7 +1384,7 @@ declare const CollectionApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
4375
1384
|
* @param {*} [options] Override http request option.
|
|
4376
1385
|
* @throws {RequiredError}
|
|
4377
1386
|
*/
|
|
4378
|
-
updateCollection(id: number, updateCollectionRequest?: UpdateCollectionRequest, options?:
|
|
1387
|
+
updateCollection(id: number, updateCollectionRequest?: UpdateCollectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateCollectionResponse>;
|
|
4379
1388
|
/**
|
|
4380
1389
|
*
|
|
4381
1390
|
* @param {number} id
|
|
@@ -4383,13 +1392,10 @@ declare const CollectionApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
4383
1392
|
* @param {*} [options] Override http request option.
|
|
4384
1393
|
* @throws {RequiredError}
|
|
4385
1394
|
*/
|
|
4386
|
-
uploadCollectionCover(id: number, cover?: File, options?:
|
|
1395
|
+
uploadCollectionCover(id: number, cover?: File, options?: RawAxiosRequestConfig): AxiosPromise<UploadCollectionCoverResponse>;
|
|
4387
1396
|
};
|
|
4388
1397
|
/**
|
|
4389
1398
|
* CollectionApi - object-oriented interface
|
|
4390
|
-
* @export
|
|
4391
|
-
* @class CollectionApi
|
|
4392
|
-
* @extends {BaseAPI}
|
|
4393
1399
|
*/
|
|
4394
1400
|
declare class CollectionApi$1 extends BaseAPI {
|
|
4395
1401
|
/**
|
|
@@ -4397,7 +1403,6 @@ declare class CollectionApi$1 extends BaseAPI {
|
|
|
4397
1403
|
* @param {number} id
|
|
4398
1404
|
* @param {*} [options] Override http request option.
|
|
4399
1405
|
* @throws {RequiredError}
|
|
4400
|
-
* @memberof CollectionApi
|
|
4401
1406
|
*/
|
|
4402
1407
|
acceptInvitation(id: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AcceptInvitation200Response, any, {}>>;
|
|
4403
1408
|
/**
|
|
@@ -4407,7 +1412,6 @@ declare class CollectionApi$1 extends BaseAPI {
|
|
|
4407
1412
|
* @param {ChangeCollaboratorAccessLevelRequest} [changeCollaboratorAccessLevelRequest]
|
|
4408
1413
|
* @param {*} [options] Override http request option.
|
|
4409
1414
|
* @throws {RequiredError}
|
|
4410
|
-
* @memberof CollectionApi
|
|
4411
1415
|
*/
|
|
4412
1416
|
changeCollaboratorAccessLevel(userId: number, id: number, changeCollaboratorAccessLevelRequest?: ChangeCollaboratorAccessLevelRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any, {}>>;
|
|
4413
1417
|
/**
|
|
@@ -4415,7 +1419,6 @@ declare class CollectionApi$1 extends BaseAPI {
|
|
|
4415
1419
|
* @param {CreateCollectionRequest} [createCollectionRequest]
|
|
4416
1420
|
* @param {*} [options] Override http request option.
|
|
4417
1421
|
* @throws {RequiredError}
|
|
4418
|
-
* @memberof CollectionApi
|
|
4419
1422
|
*/
|
|
4420
1423
|
createCollection(createCollectionRequest?: CreateCollectionRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<CreateCollectionResponse, any, {}>>;
|
|
4421
1424
|
/**
|
|
@@ -4424,21 +1427,18 @@ declare class CollectionApi$1 extends BaseAPI {
|
|
|
4424
1427
|
* @param {number} id
|
|
4425
1428
|
* @param {*} [options] Override http request option.
|
|
4426
1429
|
* @throws {RequiredError}
|
|
4427
|
-
* @memberof CollectionApi
|
|
4428
1430
|
*/
|
|
4429
1431
|
deleteCollaborator(userId: number, id: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SimpleResponse, any, {}>>;
|
|
4430
1432
|
/**
|
|
4431
1433
|
*
|
|
4432
1434
|
* @param {*} [options] Override http request option.
|
|
4433
1435
|
* @throws {RequiredError}
|
|
4434
|
-
* @memberof CollectionApi
|
|
4435
1436
|
*/
|
|
4436
1437
|
emptyTrash(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SimpleResponse, any, {}>>;
|
|
4437
1438
|
/**
|
|
4438
1439
|
*
|
|
4439
1440
|
* @param {*} [options] Override http request option.
|
|
4440
1441
|
* @throws {RequiredError}
|
|
4441
|
-
* @memberof CollectionApi
|
|
4442
1442
|
*/
|
|
4443
1443
|
getChildCollections(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<GetChildCollectionsResponse, any, {}>>;
|
|
4444
1444
|
/**
|
|
@@ -4446,7 +1446,6 @@ declare class CollectionApi$1 extends BaseAPI {
|
|
|
4446
1446
|
* @param {number} id
|
|
4447
1447
|
* @param {*} [options] Override http request option.
|
|
4448
1448
|
* @throws {RequiredError}
|
|
4449
|
-
* @memberof CollectionApi
|
|
4450
1449
|
*/
|
|
4451
1450
|
getCollaborators(id: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any, {}>>;
|
|
4452
1451
|
/**
|
|
@@ -4454,28 +1453,24 @@ declare class CollectionApi$1 extends BaseAPI {
|
|
|
4454
1453
|
* @param {number} id
|
|
4455
1454
|
* @param {*} [options] Override http request option.
|
|
4456
1455
|
* @throws {RequiredError}
|
|
4457
|
-
* @memberof CollectionApi
|
|
4458
1456
|
*/
|
|
4459
1457
|
getCollection(id: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<GetCollectionResponse, any, {}>>;
|
|
4460
1458
|
/**
|
|
4461
1459
|
*
|
|
4462
1460
|
* @param {*} [options] Override http request option.
|
|
4463
1461
|
* @throws {RequiredError}
|
|
4464
|
-
* @memberof CollectionApi
|
|
4465
1462
|
*/
|
|
4466
1463
|
getFeaturedCovers(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<GetFeaturedCoversResponse, any, {}>>;
|
|
4467
1464
|
/**
|
|
4468
1465
|
*
|
|
4469
1466
|
* @param {*} [options] Override http request option.
|
|
4470
1467
|
* @throws {RequiredError}
|
|
4471
|
-
* @memberof CollectionApi
|
|
4472
1468
|
*/
|
|
4473
1469
|
getRootCollections(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<GetRootCollectionsResponse, any, {}>>;
|
|
4474
1470
|
/**
|
|
4475
1471
|
*
|
|
4476
1472
|
* @param {*} [options] Override http request option.
|
|
4477
1473
|
* @throws {RequiredError}
|
|
4478
|
-
* @memberof CollectionApi
|
|
4479
1474
|
*/
|
|
4480
1475
|
getSystemCollectionStats(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<GetSystemCollectionStatsResponse, any, {}>>;
|
|
4481
1476
|
/**
|
|
@@ -4483,14 +1478,12 @@ declare class CollectionApi$1 extends BaseAPI {
|
|
|
4483
1478
|
* @param {MergeCollectionsRequest} [mergeCollectionsRequest]
|
|
4484
1479
|
* @param {*} [options] Override http request option.
|
|
4485
1480
|
* @throws {RequiredError}
|
|
4486
|
-
* @memberof CollectionApi
|
|
4487
1481
|
*/
|
|
4488
1482
|
mergeCollections(mergeCollectionsRequest?: MergeCollectionsRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<MergeCollectionsResponse, any, {}>>;
|
|
4489
1483
|
/**
|
|
4490
1484
|
*
|
|
4491
1485
|
* @param {*} [options] Override http request option.
|
|
4492
1486
|
* @throws {RequiredError}
|
|
4493
|
-
* @memberof CollectionApi
|
|
4494
1487
|
*/
|
|
4495
1488
|
removeAllEmptyCollections(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<RemoveAllEmptyCollectionsResponse, any, {}>>;
|
|
4496
1489
|
/**
|
|
@@ -4498,7 +1491,6 @@ declare class CollectionApi$1 extends BaseAPI {
|
|
|
4498
1491
|
* @param {number} id
|
|
4499
1492
|
* @param {*} [options] Override http request option.
|
|
4500
1493
|
* @throws {RequiredError}
|
|
4501
|
-
* @memberof CollectionApi
|
|
4502
1494
|
*/
|
|
4503
1495
|
removeCollection(id: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SimpleResponse, any, {}>>;
|
|
4504
1496
|
/**
|
|
@@ -4506,7 +1498,6 @@ declare class CollectionApi$1 extends BaseAPI {
|
|
|
4506
1498
|
* @param {RemoveCollectionsRequest} [removeCollectionsRequest]
|
|
4507
1499
|
* @param {*} [options] Override http request option.
|
|
4508
1500
|
* @throws {RequiredError}
|
|
4509
|
-
* @memberof CollectionApi
|
|
4510
1501
|
*/
|
|
4511
1502
|
removeCollections(removeCollectionsRequest?: RemoveCollectionsRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<RemoveCollectionsResponse, any, {}>>;
|
|
4512
1503
|
/**
|
|
@@ -4514,7 +1505,6 @@ declare class CollectionApi$1 extends BaseAPI {
|
|
|
4514
1505
|
* @param {ReorderAllCollectionsRequest} [reorderAllCollectionsRequest]
|
|
4515
1506
|
* @param {*} [options] Override http request option.
|
|
4516
1507
|
* @throws {RequiredError}
|
|
4517
|
-
* @memberof CollectionApi
|
|
4518
1508
|
*/
|
|
4519
1509
|
reorderAllCollections(reorderAllCollectionsRequest?: ReorderAllCollectionsRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SimpleResponse, any, {}>>;
|
|
4520
1510
|
/**
|
|
@@ -4522,7 +1512,6 @@ declare class CollectionApi$1 extends BaseAPI {
|
|
|
4522
1512
|
* @param {string} text
|
|
4523
1513
|
* @param {*} [options] Override http request option.
|
|
4524
1514
|
* @throws {RequiredError}
|
|
4525
|
-
* @memberof CollectionApi
|
|
4526
1515
|
*/
|
|
4527
1516
|
searchCovers(text: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SearchCoversResponse, any, {}>>;
|
|
4528
1517
|
/**
|
|
@@ -4531,7 +1520,6 @@ declare class CollectionApi$1 extends BaseAPI {
|
|
|
4531
1520
|
* @param {ShareCollectionRequest} [shareCollectionRequest]
|
|
4532
1521
|
* @param {*} [options] Override http request option.
|
|
4533
1522
|
* @throws {RequiredError}
|
|
4534
|
-
* @memberof CollectionApi
|
|
4535
1523
|
*/
|
|
4536
1524
|
shareCollection(id: number, shareCollectionRequest?: ShareCollectionRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ShareCollectionResponse, any, {}>>;
|
|
4537
1525
|
/**
|
|
@@ -4539,7 +1527,6 @@ declare class CollectionApi$1 extends BaseAPI {
|
|
|
4539
1527
|
* @param {number} id
|
|
4540
1528
|
* @param {*} [options] Override http request option.
|
|
4541
1529
|
* @throws {RequiredError}
|
|
4542
|
-
* @memberof CollectionApi
|
|
4543
1530
|
*/
|
|
4544
1531
|
unshareOrLeaveCollection(id: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SimpleResponse, any, {}>>;
|
|
4545
1532
|
/**
|
|
@@ -4548,7 +1535,6 @@ declare class CollectionApi$1 extends BaseAPI {
|
|
|
4548
1535
|
* @param {UpdateCollectionRequest} [updateCollectionRequest]
|
|
4549
1536
|
* @param {*} [options] Override http request option.
|
|
4550
1537
|
* @throws {RequiredError}
|
|
4551
|
-
* @memberof CollectionApi
|
|
4552
1538
|
*/
|
|
4553
1539
|
updateCollection(id: number, updateCollectionRequest?: UpdateCollectionRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UpdateCollectionResponse, any, {}>>;
|
|
4554
1540
|
/**
|
|
@@ -4557,13 +1543,11 @@ declare class CollectionApi$1 extends BaseAPI {
|
|
|
4557
1543
|
* @param {File} [cover]
|
|
4558
1544
|
* @param {*} [options] Override http request option.
|
|
4559
1545
|
* @throws {RequiredError}
|
|
4560
|
-
* @memberof CollectionApi
|
|
4561
1546
|
*/
|
|
4562
1547
|
uploadCollectionCover(id: number, cover?: File, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UploadCollectionCoverResponse, any, {}>>;
|
|
4563
1548
|
}
|
|
4564
1549
|
/**
|
|
4565
1550
|
* FilterApi - axios parameter creator
|
|
4566
|
-
* @export
|
|
4567
1551
|
*/
|
|
4568
1552
|
declare const FilterApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4569
1553
|
/**
|
|
@@ -4578,7 +1562,6 @@ declare const FilterApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4578
1562
|
};
|
|
4579
1563
|
/**
|
|
4580
1564
|
* FilterApi - functional programming interface
|
|
4581
|
-
* @export
|
|
4582
1565
|
*/
|
|
4583
1566
|
declare const FilterApiFp: (configuration?: Configuration) => {
|
|
4584
1567
|
/**
|
|
@@ -4593,7 +1576,6 @@ declare const FilterApiFp: (configuration?: Configuration) => {
|
|
|
4593
1576
|
};
|
|
4594
1577
|
/**
|
|
4595
1578
|
* FilterApi - factory interface
|
|
4596
|
-
* @export
|
|
4597
1579
|
*/
|
|
4598
1580
|
declare const FilterApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4599
1581
|
/**
|
|
@@ -4604,13 +1586,10 @@ declare const FilterApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
4604
1586
|
* @param {*} [options] Override http request option.
|
|
4605
1587
|
* @throws {RequiredError}
|
|
4606
1588
|
*/
|
|
4607
|
-
getFilters(collectionId: number, tagsSort?: GetFiltersTagsSortEnum, search?: string, options?:
|
|
1589
|
+
getFilters(collectionId: number, tagsSort?: GetFiltersTagsSortEnum, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<GetFiltersResponse>;
|
|
4608
1590
|
};
|
|
4609
1591
|
/**
|
|
4610
1592
|
* FilterApi - object-oriented interface
|
|
4611
|
-
* @export
|
|
4612
|
-
* @class FilterApi
|
|
4613
|
-
* @extends {BaseAPI}
|
|
4614
1593
|
*/
|
|
4615
1594
|
declare class FilterApi extends BaseAPI {
|
|
4616
1595
|
/**
|
|
@@ -4620,13 +1599,9 @@ declare class FilterApi extends BaseAPI {
|
|
|
4620
1599
|
* @param {string} [search]
|
|
4621
1600
|
* @param {*} [options] Override http request option.
|
|
4622
1601
|
* @throws {RequiredError}
|
|
4623
|
-
* @memberof FilterApi
|
|
4624
1602
|
*/
|
|
4625
1603
|
getFilters(collectionId: number, tagsSort?: GetFiltersTagsSortEnum, search?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<GetFiltersResponse, any, {}>>;
|
|
4626
1604
|
}
|
|
4627
|
-
/**
|
|
4628
|
-
* @export
|
|
4629
|
-
*/
|
|
4630
1605
|
declare const GetFiltersTagsSortEnum: {
|
|
4631
1606
|
readonly MinusCount: "-count";
|
|
4632
1607
|
readonly Id: "_id";
|
|
@@ -4634,7 +1609,6 @@ declare const GetFiltersTagsSortEnum: {
|
|
|
4634
1609
|
type GetFiltersTagsSortEnum = typeof GetFiltersTagsSortEnum[keyof typeof GetFiltersTagsSortEnum];
|
|
4635
1610
|
/**
|
|
4636
1611
|
* HighlightApi - axios parameter creator
|
|
4637
|
-
* @export
|
|
4638
1612
|
*/
|
|
4639
1613
|
declare const HighlightApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4640
1614
|
/**
|
|
@@ -4672,7 +1646,6 @@ declare const HighlightApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
4672
1646
|
};
|
|
4673
1647
|
/**
|
|
4674
1648
|
* HighlightApi - functional programming interface
|
|
4675
|
-
* @export
|
|
4676
1649
|
*/
|
|
4677
1650
|
declare const HighlightApiFp: (configuration?: Configuration) => {
|
|
4678
1651
|
/**
|
|
@@ -4710,7 +1683,6 @@ declare const HighlightApiFp: (configuration?: Configuration) => {
|
|
|
4710
1683
|
};
|
|
4711
1684
|
/**
|
|
4712
1685
|
* HighlightApi - factory interface
|
|
4713
|
-
* @export
|
|
4714
1686
|
*/
|
|
4715
1687
|
declare const HighlightApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4716
1688
|
/**
|
|
@@ -4720,7 +1692,7 @@ declare const HighlightApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
4720
1692
|
* @param {*} [options] Override http request option.
|
|
4721
1693
|
* @throws {RequiredError}
|
|
4722
1694
|
*/
|
|
4723
|
-
getAllHighlights(page?: number, perpage?: number, options?:
|
|
1695
|
+
getAllHighlights(page?: number, perpage?: number, options?: RawAxiosRequestConfig): AxiosPromise<GetAllHighlightsResponse>;
|
|
4724
1696
|
/**
|
|
4725
1697
|
*
|
|
4726
1698
|
* @param {number} collectionId
|
|
@@ -4729,14 +1701,14 @@ declare const HighlightApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
4729
1701
|
* @param {*} [options] Override http request option.
|
|
4730
1702
|
* @throws {RequiredError}
|
|
4731
1703
|
*/
|
|
4732
|
-
getHighlightsInCollection(collectionId: number, page?: number, perpage?: number, options?:
|
|
1704
|
+
getHighlightsInCollection(collectionId: number, page?: number, perpage?: number, options?: RawAxiosRequestConfig): AxiosPromise<GetHighlightsInCollectionResponse>;
|
|
4733
1705
|
/**
|
|
4734
1706
|
*
|
|
4735
1707
|
* @param {number} id
|
|
4736
1708
|
* @param {*} [options] Override http request option.
|
|
4737
1709
|
* @throws {RequiredError}
|
|
4738
1710
|
*/
|
|
4739
|
-
getRaindrop(id: number, options?:
|
|
1711
|
+
getRaindrop(id: number, options?: RawAxiosRequestConfig): AxiosPromise<GetRaindropResponse>;
|
|
4740
1712
|
/**
|
|
4741
1713
|
*
|
|
4742
1714
|
* @param {number} id
|
|
@@ -4744,13 +1716,10 @@ declare const HighlightApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
4744
1716
|
* @param {*} [options] Override http request option.
|
|
4745
1717
|
* @throws {RequiredError}
|
|
4746
1718
|
*/
|
|
4747
|
-
updateRaindrop(id: number, body?: object, options?:
|
|
1719
|
+
updateRaindrop(id: number, body?: object, options?: RawAxiosRequestConfig): AxiosPromise<UpdateRaindropResponse>;
|
|
4748
1720
|
};
|
|
4749
1721
|
/**
|
|
4750
1722
|
* HighlightApi - object-oriented interface
|
|
4751
|
-
* @export
|
|
4752
|
-
* @class HighlightApi
|
|
4753
|
-
* @extends {BaseAPI}
|
|
4754
1723
|
*/
|
|
4755
1724
|
declare class HighlightApi extends BaseAPI {
|
|
4756
1725
|
/**
|
|
@@ -4759,7 +1728,6 @@ declare class HighlightApi extends BaseAPI {
|
|
|
4759
1728
|
* @param {number} [perpage]
|
|
4760
1729
|
* @param {*} [options] Override http request option.
|
|
4761
1730
|
* @throws {RequiredError}
|
|
4762
|
-
* @memberof HighlightApi
|
|
4763
1731
|
*/
|
|
4764
1732
|
getAllHighlights(page?: number, perpage?: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<GetAllHighlightsResponse, any, {}>>;
|
|
4765
1733
|
/**
|
|
@@ -4769,7 +1737,6 @@ declare class HighlightApi extends BaseAPI {
|
|
|
4769
1737
|
* @param {number} [perpage]
|
|
4770
1738
|
* @param {*} [options] Override http request option.
|
|
4771
1739
|
* @throws {RequiredError}
|
|
4772
|
-
* @memberof HighlightApi
|
|
4773
1740
|
*/
|
|
4774
1741
|
getHighlightsInCollection(collectionId: number, page?: number, perpage?: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<GetHighlightsInCollectionResponse, any, {}>>;
|
|
4775
1742
|
/**
|
|
@@ -4777,7 +1744,6 @@ declare class HighlightApi extends BaseAPI {
|
|
|
4777
1744
|
* @param {number} id
|
|
4778
1745
|
* @param {*} [options] Override http request option.
|
|
4779
1746
|
* @throws {RequiredError}
|
|
4780
|
-
* @memberof HighlightApi
|
|
4781
1747
|
*/
|
|
4782
1748
|
getRaindrop(id: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<GetRaindropResponse, any, {}>>;
|
|
4783
1749
|
/**
|
|
@@ -4786,13 +1752,11 @@ declare class HighlightApi extends BaseAPI {
|
|
|
4786
1752
|
* @param {object} [body]
|
|
4787
1753
|
* @param {*} [options] Override http request option.
|
|
4788
1754
|
* @throws {RequiredError}
|
|
4789
|
-
* @memberof HighlightApi
|
|
4790
1755
|
*/
|
|
4791
1756
|
updateRaindrop(id: number, body?: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UpdateRaindropResponse, any, {}>>;
|
|
4792
1757
|
}
|
|
4793
1758
|
/**
|
|
4794
1759
|
* ImportApi - axios parameter creator
|
|
4795
|
-
* @export
|
|
4796
1760
|
*/
|
|
4797
1761
|
declare const ImportApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4798
1762
|
/**
|
|
@@ -4819,7 +1783,6 @@ declare const ImportApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4819
1783
|
};
|
|
4820
1784
|
/**
|
|
4821
1785
|
* ImportApi - functional programming interface
|
|
4822
|
-
* @export
|
|
4823
1786
|
*/
|
|
4824
1787
|
declare const ImportApiFp: (configuration?: Configuration) => {
|
|
4825
1788
|
/**
|
|
@@ -4846,7 +1809,6 @@ declare const ImportApiFp: (configuration?: Configuration) => {
|
|
|
4846
1809
|
};
|
|
4847
1810
|
/**
|
|
4848
1811
|
* ImportApi - factory interface
|
|
4849
|
-
* @export
|
|
4850
1812
|
*/
|
|
4851
1813
|
declare const ImportApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4852
1814
|
/**
|
|
@@ -4855,27 +1817,24 @@ declare const ImportApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
4855
1817
|
* @param {*} [options] Override http request option.
|
|
4856
1818
|
* @throws {RequiredError}
|
|
4857
1819
|
*/
|
|
4858
|
-
checkURLsExist(checkURLsExistRequest?: CheckURLsExistRequest, options?:
|
|
1820
|
+
checkURLsExist(checkURLsExistRequest?: CheckURLsExistRequest, options?: RawAxiosRequestConfig): AxiosPromise<CheckURLsExistResponse>;
|
|
4859
1821
|
/**
|
|
4860
1822
|
*
|
|
4861
1823
|
* @param {File} [_import]
|
|
4862
1824
|
* @param {*} [options] Override http request option.
|
|
4863
1825
|
* @throws {RequiredError}
|
|
4864
1826
|
*/
|
|
4865
|
-
importHTMLBookmarkFile(_import?: File, options?:
|
|
1827
|
+
importHTMLBookmarkFile(_import?: File, options?: RawAxiosRequestConfig): AxiosPromise<ImportHTMLBookmarkFileResponse>;
|
|
4866
1828
|
/**
|
|
4867
1829
|
*
|
|
4868
1830
|
* @param {string} [url]
|
|
4869
1831
|
* @param {*} [options] Override http request option.
|
|
4870
1832
|
* @throws {RequiredError}
|
|
4871
1833
|
*/
|
|
4872
|
-
parseURL(url?: string, options?:
|
|
1834
|
+
parseURL(url?: string, options?: RawAxiosRequestConfig): AxiosPromise<ParseURLResponse>;
|
|
4873
1835
|
};
|
|
4874
1836
|
/**
|
|
4875
1837
|
* ImportApi - object-oriented interface
|
|
4876
|
-
* @export
|
|
4877
|
-
* @class ImportApi
|
|
4878
|
-
* @extends {BaseAPI}
|
|
4879
1838
|
*/
|
|
4880
1839
|
declare class ImportApi extends BaseAPI {
|
|
4881
1840
|
/**
|
|
@@ -4883,7 +1842,6 @@ declare class ImportApi extends BaseAPI {
|
|
|
4883
1842
|
* @param {CheckURLsExistRequest} [checkURLsExistRequest]
|
|
4884
1843
|
* @param {*} [options] Override http request option.
|
|
4885
1844
|
* @throws {RequiredError}
|
|
4886
|
-
* @memberof ImportApi
|
|
4887
1845
|
*/
|
|
4888
1846
|
checkURLsExist(checkURLsExistRequest?: CheckURLsExistRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<CheckURLsExistResponse, any, {}>>;
|
|
4889
1847
|
/**
|
|
@@ -4891,7 +1849,6 @@ declare class ImportApi extends BaseAPI {
|
|
|
4891
1849
|
* @param {File} [_import]
|
|
4892
1850
|
* @param {*} [options] Override http request option.
|
|
4893
1851
|
* @throws {RequiredError}
|
|
4894
|
-
* @memberof ImportApi
|
|
4895
1852
|
*/
|
|
4896
1853
|
importHTMLBookmarkFile(_import?: File, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ImportHTMLBookmarkFileResponse, any, {}>>;
|
|
4897
1854
|
/**
|
|
@@ -4899,13 +1856,11 @@ declare class ImportApi extends BaseAPI {
|
|
|
4899
1856
|
* @param {string} [url]
|
|
4900
1857
|
* @param {*} [options] Override http request option.
|
|
4901
1858
|
* @throws {RequiredError}
|
|
4902
|
-
* @memberof ImportApi
|
|
4903
1859
|
*/
|
|
4904
1860
|
parseURL(url?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ParseURLResponse, any, {}>>;
|
|
4905
1861
|
}
|
|
4906
1862
|
/**
|
|
4907
1863
|
* RaindropApi - axios parameter creator
|
|
4908
|
-
* @export
|
|
4909
1864
|
*/
|
|
4910
1865
|
declare const RaindropApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4911
1866
|
/**
|
|
@@ -5012,7 +1967,6 @@ declare const RaindropApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5012
1967
|
};
|
|
5013
1968
|
/**
|
|
5014
1969
|
* RaindropApi - functional programming interface
|
|
5015
|
-
* @export
|
|
5016
1970
|
*/
|
|
5017
1971
|
declare const RaindropApiFp: (configuration?: Configuration) => {
|
|
5018
1972
|
/**
|
|
@@ -5119,7 +2073,6 @@ declare const RaindropApiFp: (configuration?: Configuration) => {
|
|
|
5119
2073
|
};
|
|
5120
2074
|
/**
|
|
5121
2075
|
* RaindropApi - factory interface
|
|
5122
|
-
* @export
|
|
5123
2076
|
*/
|
|
5124
2077
|
declare const RaindropApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5125
2078
|
/**
|
|
@@ -5128,28 +2081,28 @@ declare const RaindropApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
5128
2081
|
* @param {*} [options] Override http request option.
|
|
5129
2082
|
* @throws {RequiredError}
|
|
5130
2083
|
*/
|
|
5131
|
-
createRaindrop(createRaindropRequest?: CreateRaindropRequest, options?:
|
|
2084
|
+
createRaindrop(createRaindropRequest?: CreateRaindropRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateRaindropResponse>;
|
|
5132
2085
|
/**
|
|
5133
2086
|
*
|
|
5134
2087
|
* @param {object} [body]
|
|
5135
2088
|
* @param {*} [options] Override http request option.
|
|
5136
2089
|
* @throws {RequiredError}
|
|
5137
2090
|
*/
|
|
5138
|
-
createRaindrops(body?: object, options?:
|
|
2091
|
+
createRaindrops(body?: object, options?: RawAxiosRequestConfig): AxiosPromise<CreateRaindropsResponse>;
|
|
5139
2092
|
/**
|
|
5140
2093
|
*
|
|
5141
2094
|
* @param {number} id
|
|
5142
2095
|
* @param {*} [options] Override http request option.
|
|
5143
2096
|
* @throws {RequiredError}
|
|
5144
2097
|
*/
|
|
5145
|
-
getPermanentCopy(id: number, options?:
|
|
2098
|
+
getPermanentCopy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5146
2099
|
/**
|
|
5147
2100
|
*
|
|
5148
2101
|
* @param {number} id
|
|
5149
2102
|
* @param {*} [options] Override http request option.
|
|
5150
2103
|
* @throws {RequiredError}
|
|
5151
2104
|
*/
|
|
5152
|
-
getRaindrop(id: number, options?:
|
|
2105
|
+
getRaindrop(id: number, options?: RawAxiosRequestConfig): AxiosPromise<GetRaindropResponse>;
|
|
5153
2106
|
/**
|
|
5154
2107
|
*
|
|
5155
2108
|
* @param {number} collectionId
|
|
@@ -5160,14 +2113,14 @@ declare const RaindropApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
5160
2113
|
* @param {*} [options] Override http request option.
|
|
5161
2114
|
* @throws {RequiredError}
|
|
5162
2115
|
*/
|
|
5163
|
-
getRaindrops(collectionId: number, sort?: string, perpage?: number, page?: number, search?: string, options?:
|
|
2116
|
+
getRaindrops(collectionId: number, sort?: string, perpage?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<GetRaindropsResponse>;
|
|
5164
2117
|
/**
|
|
5165
2118
|
*
|
|
5166
2119
|
* @param {number} id
|
|
5167
2120
|
* @param {*} [options] Override http request option.
|
|
5168
2121
|
* @throws {RequiredError}
|
|
5169
2122
|
*/
|
|
5170
|
-
removeRaindrop(id: number, options?:
|
|
2123
|
+
removeRaindrop(id: number, options?: RawAxiosRequestConfig): AxiosPromise<RemoveRaindropResponse>;
|
|
5171
2124
|
/**
|
|
5172
2125
|
*
|
|
5173
2126
|
* @param {number} collectionId
|
|
@@ -5176,21 +2129,21 @@ declare const RaindropApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
5176
2129
|
* @param {*} [options] Override http request option.
|
|
5177
2130
|
* @throws {RequiredError}
|
|
5178
2131
|
*/
|
|
5179
|
-
removeRaindrops(collectionId: number, search?: string, removeRaindropsRequest?: RemoveRaindropsRequest, options?:
|
|
2132
|
+
removeRaindrops(collectionId: number, search?: string, removeRaindropsRequest?: RemoveRaindropsRequest, options?: RawAxiosRequestConfig): AxiosPromise<RemoveRaindropsResponse>;
|
|
5180
2133
|
/**
|
|
5181
2134
|
*
|
|
5182
2135
|
* @param {number} id
|
|
5183
2136
|
* @param {*} [options] Override http request option.
|
|
5184
2137
|
* @throws {RequiredError}
|
|
5185
2138
|
*/
|
|
5186
|
-
suggestForExistingBookmark(id: number, options?:
|
|
2139
|
+
suggestForExistingBookmark(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SuggestForExistingBookmarkResponse>;
|
|
5187
2140
|
/**
|
|
5188
2141
|
*
|
|
5189
2142
|
* @param {SuggestForNewBookmarkRequest} [suggestForNewBookmarkRequest]
|
|
5190
2143
|
* @param {*} [options] Override http request option.
|
|
5191
2144
|
* @throws {RequiredError}
|
|
5192
2145
|
*/
|
|
5193
|
-
suggestForNewBookmark(suggestForNewBookmarkRequest?: SuggestForNewBookmarkRequest, options?:
|
|
2146
|
+
suggestForNewBookmark(suggestForNewBookmarkRequest?: SuggestForNewBookmarkRequest, options?: RawAxiosRequestConfig): AxiosPromise<SuggestForNewBookmarkResponse>;
|
|
5194
2147
|
/**
|
|
5195
2148
|
*
|
|
5196
2149
|
* @param {number} id
|
|
@@ -5198,7 +2151,7 @@ declare const RaindropApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
5198
2151
|
* @param {*} [options] Override http request option.
|
|
5199
2152
|
* @throws {RequiredError}
|
|
5200
2153
|
*/
|
|
5201
|
-
updateRaindrop(id: number, body?: object, options?:
|
|
2154
|
+
updateRaindrop(id: number, body?: object, options?: RawAxiosRequestConfig): AxiosPromise<UpdateRaindropResponse>;
|
|
5202
2155
|
/**
|
|
5203
2156
|
*
|
|
5204
2157
|
* @param {number} collectionId
|
|
@@ -5206,7 +2159,7 @@ declare const RaindropApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
5206
2159
|
* @param {*} [options] Override http request option.
|
|
5207
2160
|
* @throws {RequiredError}
|
|
5208
2161
|
*/
|
|
5209
|
-
updateRaindrops(collectionId: number, updateRaindropsRequest?: UpdateRaindropsRequest, options?:
|
|
2162
|
+
updateRaindrops(collectionId: number, updateRaindropsRequest?: UpdateRaindropsRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateRaindropsResponse>;
|
|
5210
2163
|
/**
|
|
5211
2164
|
*
|
|
5212
2165
|
* @param {File} [file]
|
|
@@ -5214,7 +2167,7 @@ declare const RaindropApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
5214
2167
|
* @param {*} [options] Override http request option.
|
|
5215
2168
|
* @throws {RequiredError}
|
|
5216
2169
|
*/
|
|
5217
|
-
uploadFile(file?: File, collectionId?: number, options?:
|
|
2170
|
+
uploadFile(file?: File, collectionId?: number, options?: RawAxiosRequestConfig): AxiosPromise<UploadFileResponse>;
|
|
5218
2171
|
/**
|
|
5219
2172
|
*
|
|
5220
2173
|
* @param {number} id
|
|
@@ -5222,13 +2175,10 @@ declare const RaindropApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
5222
2175
|
* @param {*} [options] Override http request option.
|
|
5223
2176
|
* @throws {RequiredError}
|
|
5224
2177
|
*/
|
|
5225
|
-
uploadRaindropCover(id: number, cover?: File, options?:
|
|
2178
|
+
uploadRaindropCover(id: number, cover?: File, options?: RawAxiosRequestConfig): AxiosPromise<UploadRaindropCoverResponse>;
|
|
5226
2179
|
};
|
|
5227
2180
|
/**
|
|
5228
2181
|
* RaindropApi - object-oriented interface
|
|
5229
|
-
* @export
|
|
5230
|
-
* @class RaindropApi
|
|
5231
|
-
* @extends {BaseAPI}
|
|
5232
2182
|
*/
|
|
5233
2183
|
declare class RaindropApi$1 extends BaseAPI {
|
|
5234
2184
|
/**
|
|
@@ -5236,7 +2186,6 @@ declare class RaindropApi$1 extends BaseAPI {
|
|
|
5236
2186
|
* @param {CreateRaindropRequest} [createRaindropRequest]
|
|
5237
2187
|
* @param {*} [options] Override http request option.
|
|
5238
2188
|
* @throws {RequiredError}
|
|
5239
|
-
* @memberof RaindropApi
|
|
5240
2189
|
*/
|
|
5241
2190
|
createRaindrop(createRaindropRequest?: CreateRaindropRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<CreateRaindropResponse, any, {}>>;
|
|
5242
2191
|
/**
|
|
@@ -5244,7 +2193,6 @@ declare class RaindropApi$1 extends BaseAPI {
|
|
|
5244
2193
|
* @param {object} [body]
|
|
5245
2194
|
* @param {*} [options] Override http request option.
|
|
5246
2195
|
* @throws {RequiredError}
|
|
5247
|
-
* @memberof RaindropApi
|
|
5248
2196
|
*/
|
|
5249
2197
|
createRaindrops(body?: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<CreateRaindropsResponse, any, {}>>;
|
|
5250
2198
|
/**
|
|
@@ -5252,7 +2200,6 @@ declare class RaindropApi$1 extends BaseAPI {
|
|
|
5252
2200
|
* @param {number} id
|
|
5253
2201
|
* @param {*} [options] Override http request option.
|
|
5254
2202
|
* @throws {RequiredError}
|
|
5255
|
-
* @memberof RaindropApi
|
|
5256
2203
|
*/
|
|
5257
2204
|
getPermanentCopy(id: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any, {}>>;
|
|
5258
2205
|
/**
|
|
@@ -5260,7 +2207,6 @@ declare class RaindropApi$1 extends BaseAPI {
|
|
|
5260
2207
|
* @param {number} id
|
|
5261
2208
|
* @param {*} [options] Override http request option.
|
|
5262
2209
|
* @throws {RequiredError}
|
|
5263
|
-
* @memberof RaindropApi
|
|
5264
2210
|
*/
|
|
5265
2211
|
getRaindrop(id: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<GetRaindropResponse, any, {}>>;
|
|
5266
2212
|
/**
|
|
@@ -5272,7 +2218,6 @@ declare class RaindropApi$1 extends BaseAPI {
|
|
|
5272
2218
|
* @param {string} [search]
|
|
5273
2219
|
* @param {*} [options] Override http request option.
|
|
5274
2220
|
* @throws {RequiredError}
|
|
5275
|
-
* @memberof RaindropApi
|
|
5276
2221
|
*/
|
|
5277
2222
|
getRaindrops(collectionId: number, sort?: string, perpage?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<GetRaindropsResponse, any, {}>>;
|
|
5278
2223
|
/**
|
|
@@ -5280,7 +2225,6 @@ declare class RaindropApi$1 extends BaseAPI {
|
|
|
5280
2225
|
* @param {number} id
|
|
5281
2226
|
* @param {*} [options] Override http request option.
|
|
5282
2227
|
* @throws {RequiredError}
|
|
5283
|
-
* @memberof RaindropApi
|
|
5284
2228
|
*/
|
|
5285
2229
|
removeRaindrop(id: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<RemoveRaindropResponse, any, {}>>;
|
|
5286
2230
|
/**
|
|
@@ -5290,7 +2234,6 @@ declare class RaindropApi$1 extends BaseAPI {
|
|
|
5290
2234
|
* @param {RemoveRaindropsRequest} [removeRaindropsRequest]
|
|
5291
2235
|
* @param {*} [options] Override http request option.
|
|
5292
2236
|
* @throws {RequiredError}
|
|
5293
|
-
* @memberof RaindropApi
|
|
5294
2237
|
*/
|
|
5295
2238
|
removeRaindrops(collectionId: number, search?: string, removeRaindropsRequest?: RemoveRaindropsRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<RemoveRaindropsResponse, any, {}>>;
|
|
5296
2239
|
/**
|
|
@@ -5298,7 +2241,6 @@ declare class RaindropApi$1 extends BaseAPI {
|
|
|
5298
2241
|
* @param {number} id
|
|
5299
2242
|
* @param {*} [options] Override http request option.
|
|
5300
2243
|
* @throws {RequiredError}
|
|
5301
|
-
* @memberof RaindropApi
|
|
5302
2244
|
*/
|
|
5303
2245
|
suggestForExistingBookmark(id: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestForExistingBookmarkResponse, any, {}>>;
|
|
5304
2246
|
/**
|
|
@@ -5306,7 +2248,6 @@ declare class RaindropApi$1 extends BaseAPI {
|
|
|
5306
2248
|
* @param {SuggestForNewBookmarkRequest} [suggestForNewBookmarkRequest]
|
|
5307
2249
|
* @param {*} [options] Override http request option.
|
|
5308
2250
|
* @throws {RequiredError}
|
|
5309
|
-
* @memberof RaindropApi
|
|
5310
2251
|
*/
|
|
5311
2252
|
suggestForNewBookmark(suggestForNewBookmarkRequest?: SuggestForNewBookmarkRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestForNewBookmarkResponse, any, {}>>;
|
|
5312
2253
|
/**
|
|
@@ -5315,7 +2256,6 @@ declare class RaindropApi$1 extends BaseAPI {
|
|
|
5315
2256
|
* @param {object} [body]
|
|
5316
2257
|
* @param {*} [options] Override http request option.
|
|
5317
2258
|
* @throws {RequiredError}
|
|
5318
|
-
* @memberof RaindropApi
|
|
5319
2259
|
*/
|
|
5320
2260
|
updateRaindrop(id: number, body?: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UpdateRaindropResponse, any, {}>>;
|
|
5321
2261
|
/**
|
|
@@ -5324,7 +2264,6 @@ declare class RaindropApi$1 extends BaseAPI {
|
|
|
5324
2264
|
* @param {UpdateRaindropsRequest} [updateRaindropsRequest]
|
|
5325
2265
|
* @param {*} [options] Override http request option.
|
|
5326
2266
|
* @throws {RequiredError}
|
|
5327
|
-
* @memberof RaindropApi
|
|
5328
2267
|
*/
|
|
5329
2268
|
updateRaindrops(collectionId: number, updateRaindropsRequest?: UpdateRaindropsRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UpdateRaindropsResponse, any, {}>>;
|
|
5330
2269
|
/**
|
|
@@ -5333,7 +2272,6 @@ declare class RaindropApi$1 extends BaseAPI {
|
|
|
5333
2272
|
* @param {number} [collectionId]
|
|
5334
2273
|
* @param {*} [options] Override http request option.
|
|
5335
2274
|
* @throws {RequiredError}
|
|
5336
|
-
* @memberof RaindropApi
|
|
5337
2275
|
*/
|
|
5338
2276
|
uploadFile(file?: File, collectionId?: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UploadFileResponse, any, {}>>;
|
|
5339
2277
|
/**
|
|
@@ -5342,13 +2280,11 @@ declare class RaindropApi$1 extends BaseAPI {
|
|
|
5342
2280
|
* @param {File} [cover]
|
|
5343
2281
|
* @param {*} [options] Override http request option.
|
|
5344
2282
|
* @throws {RequiredError}
|
|
5345
|
-
* @memberof RaindropApi
|
|
5346
2283
|
*/
|
|
5347
2284
|
uploadRaindropCover(id: number, cover?: File, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UploadRaindropCoverResponse, any, {}>>;
|
|
5348
2285
|
}
|
|
5349
2286
|
/**
|
|
5350
2287
|
* TagApi - axios parameter creator
|
|
5351
|
-
* @export
|
|
5352
2288
|
*/
|
|
5353
2289
|
declare const TagApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5354
2290
|
/**
|
|
@@ -5377,7 +2313,6 @@ declare const TagApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5377
2313
|
};
|
|
5378
2314
|
/**
|
|
5379
2315
|
* TagApi - functional programming interface
|
|
5380
|
-
* @export
|
|
5381
2316
|
*/
|
|
5382
2317
|
declare const TagApiFp: (configuration?: Configuration) => {
|
|
5383
2318
|
/**
|
|
@@ -5406,7 +2341,6 @@ declare const TagApiFp: (configuration?: Configuration) => {
|
|
|
5406
2341
|
};
|
|
5407
2342
|
/**
|
|
5408
2343
|
* TagApi - factory interface
|
|
5409
|
-
* @export
|
|
5410
2344
|
*/
|
|
5411
2345
|
declare const TagApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5412
2346
|
/**
|
|
@@ -5415,7 +2349,7 @@ declare const TagApiFactory: (configuration?: Configuration, basePath?: string,
|
|
|
5415
2349
|
* @param {*} [options] Override http request option.
|
|
5416
2350
|
* @throws {RequiredError}
|
|
5417
2351
|
*/
|
|
5418
|
-
getTagsInCollection(collectionId?: number, options?:
|
|
2352
|
+
getTagsInCollection(collectionId?: number, options?: RawAxiosRequestConfig): AxiosPromise<GetTagsInCollectionResponse>;
|
|
5419
2353
|
/**
|
|
5420
2354
|
*
|
|
5421
2355
|
* @param {number} [collectionId]
|
|
@@ -5423,7 +2357,7 @@ declare const TagApiFactory: (configuration?: Configuration, basePath?: string,
|
|
|
5423
2357
|
* @param {*} [options] Override http request option.
|
|
5424
2358
|
* @throws {RequiredError}
|
|
5425
2359
|
*/
|
|
5426
|
-
removeTagsFromCollection(collectionId?: number, removeTagsFromCollectionRequest?: RemoveTagsFromCollectionRequest, options?:
|
|
2360
|
+
removeTagsFromCollection(collectionId?: number, removeTagsFromCollectionRequest?: RemoveTagsFromCollectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<SimpleResponse>;
|
|
5427
2361
|
/**
|
|
5428
2362
|
*
|
|
5429
2363
|
* @param {number} [collectionId]
|
|
@@ -5431,13 +2365,10 @@ declare const TagApiFactory: (configuration?: Configuration, basePath?: string,
|
|
|
5431
2365
|
* @param {*} [options] Override http request option.
|
|
5432
2366
|
* @throws {RequiredError}
|
|
5433
2367
|
*/
|
|
5434
|
-
renameOrMergeTags(collectionId?: number, renameOrMergeTagsRequest?: RenameOrMergeTagsRequest, options?:
|
|
2368
|
+
renameOrMergeTags(collectionId?: number, renameOrMergeTagsRequest?: RenameOrMergeTagsRequest, options?: RawAxiosRequestConfig): AxiosPromise<SimpleResponse>;
|
|
5435
2369
|
};
|
|
5436
2370
|
/**
|
|
5437
2371
|
* TagApi - object-oriented interface
|
|
5438
|
-
* @export
|
|
5439
|
-
* @class TagApi
|
|
5440
|
-
* @extends {BaseAPI}
|
|
5441
2372
|
*/
|
|
5442
2373
|
declare class TagApi extends BaseAPI {
|
|
5443
2374
|
/**
|
|
@@ -5445,7 +2376,6 @@ declare class TagApi extends BaseAPI {
|
|
|
5445
2376
|
* @param {number} [collectionId]
|
|
5446
2377
|
* @param {*} [options] Override http request option.
|
|
5447
2378
|
* @throws {RequiredError}
|
|
5448
|
-
* @memberof TagApi
|
|
5449
2379
|
*/
|
|
5450
2380
|
getTagsInCollection(collectionId?: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<GetTagsInCollectionResponse, any, {}>>;
|
|
5451
2381
|
/**
|
|
@@ -5454,7 +2384,6 @@ declare class TagApi extends BaseAPI {
|
|
|
5454
2384
|
* @param {RemoveTagsFromCollectionRequest} [removeTagsFromCollectionRequest]
|
|
5455
2385
|
* @param {*} [options] Override http request option.
|
|
5456
2386
|
* @throws {RequiredError}
|
|
5457
|
-
* @memberof TagApi
|
|
5458
2387
|
*/
|
|
5459
2388
|
removeTagsFromCollection(collectionId?: number, removeTagsFromCollectionRequest?: RemoveTagsFromCollectionRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SimpleResponse, any, {}>>;
|
|
5460
2389
|
/**
|
|
@@ -5463,13 +2392,11 @@ declare class TagApi extends BaseAPI {
|
|
|
5463
2392
|
* @param {RenameOrMergeTagsRequest} [renameOrMergeTagsRequest]
|
|
5464
2393
|
* @param {*} [options] Override http request option.
|
|
5465
2394
|
* @throws {RequiredError}
|
|
5466
|
-
* @memberof TagApi
|
|
5467
2395
|
*/
|
|
5468
2396
|
renameOrMergeTags(collectionId?: number, renameOrMergeTagsRequest?: RenameOrMergeTagsRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SimpleResponse, any, {}>>;
|
|
5469
2397
|
}
|
|
5470
2398
|
/**
|
|
5471
2399
|
* UserApi - axios parameter creator
|
|
5472
|
-
* @export
|
|
5473
2400
|
*/
|
|
5474
2401
|
declare const UserApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5475
2402
|
/**
|
|
@@ -5515,7 +2442,6 @@ declare const UserApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5515
2442
|
};
|
|
5516
2443
|
/**
|
|
5517
2444
|
* UserApi - functional programming interface
|
|
5518
|
-
* @export
|
|
5519
2445
|
*/
|
|
5520
2446
|
declare const UserApiFp: (configuration?: Configuration) => {
|
|
5521
2447
|
/**
|
|
@@ -5561,7 +2487,6 @@ declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
5561
2487
|
};
|
|
5562
2488
|
/**
|
|
5563
2489
|
* UserApi - factory interface
|
|
5564
|
-
* @export
|
|
5565
2490
|
*/
|
|
5566
2491
|
declare const UserApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5567
2492
|
/**
|
|
@@ -5570,46 +2495,43 @@ declare const UserApiFactory: (configuration?: Configuration, basePath?: string,
|
|
|
5570
2495
|
* @param {*} [options] Override http request option.
|
|
5571
2496
|
* @throws {RequiredError}
|
|
5572
2497
|
*/
|
|
5573
|
-
connectSocialNetworkProvider(provider: ConnectSocialNetworkProviderProviderEnum, options?:
|
|
2498
|
+
connectSocialNetworkProvider(provider: ConnectSocialNetworkProviderProviderEnum, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5574
2499
|
/**
|
|
5575
2500
|
*
|
|
5576
2501
|
* @param {DisconnectSocialNetworkProviderProviderEnum} provider
|
|
5577
2502
|
* @param {*} [options] Override http request option.
|
|
5578
2503
|
* @throws {RequiredError}
|
|
5579
2504
|
*/
|
|
5580
|
-
disconnectSocialNetworkProvider(provider: DisconnectSocialNetworkProviderProviderEnum, options?:
|
|
2505
|
+
disconnectSocialNetworkProvider(provider: DisconnectSocialNetworkProviderProviderEnum, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5581
2506
|
/**
|
|
5582
2507
|
*
|
|
5583
2508
|
* @param {*} [options] Override http request option.
|
|
5584
2509
|
* @throws {RequiredError}
|
|
5585
2510
|
*/
|
|
5586
|
-
getCurrentUser(options?:
|
|
2511
|
+
getCurrentUser(options?: RawAxiosRequestConfig): AxiosPromise<GetCurrentUserResponse>;
|
|
5587
2512
|
/**
|
|
5588
2513
|
*
|
|
5589
2514
|
* @param {number} name
|
|
5590
2515
|
* @param {*} [options] Override http request option.
|
|
5591
2516
|
* @throws {RequiredError}
|
|
5592
2517
|
*/
|
|
5593
|
-
getPublicUserByName(name: number, options?:
|
|
2518
|
+
getPublicUserByName(name: number, options?: RawAxiosRequestConfig): AxiosPromise<GetPublicUserByNameResponse>;
|
|
5594
2519
|
/**
|
|
5595
2520
|
*
|
|
5596
2521
|
* @param {*} [options] Override http request option.
|
|
5597
2522
|
* @throws {RequiredError}
|
|
5598
2523
|
*/
|
|
5599
|
-
getSystemCollectionStats(options?:
|
|
2524
|
+
getSystemCollectionStats(options?: RawAxiosRequestConfig): AxiosPromise<GetSystemCollectionStatsResponse>;
|
|
5600
2525
|
/**
|
|
5601
2526
|
*
|
|
5602
2527
|
* @param {UpdateCurrentUserRequest} [updateCurrentUserRequest]
|
|
5603
2528
|
* @param {*} [options] Override http request option.
|
|
5604
2529
|
* @throws {RequiredError}
|
|
5605
2530
|
*/
|
|
5606
|
-
updateCurrentUser(updateCurrentUserRequest?: UpdateCurrentUserRequest, options?:
|
|
2531
|
+
updateCurrentUser(updateCurrentUserRequest?: UpdateCurrentUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateCurrentUserResponse>;
|
|
5607
2532
|
};
|
|
5608
2533
|
/**
|
|
5609
2534
|
* UserApi - object-oriented interface
|
|
5610
|
-
* @export
|
|
5611
|
-
* @class UserApi
|
|
5612
|
-
* @extends {BaseAPI}
|
|
5613
2535
|
*/
|
|
5614
2536
|
declare class UserApi extends BaseAPI {
|
|
5615
2537
|
/**
|
|
@@ -5617,7 +2539,6 @@ declare class UserApi extends BaseAPI {
|
|
|
5617
2539
|
* @param {ConnectSocialNetworkProviderProviderEnum} provider
|
|
5618
2540
|
* @param {*} [options] Override http request option.
|
|
5619
2541
|
* @throws {RequiredError}
|
|
5620
|
-
* @memberof UserApi
|
|
5621
2542
|
*/
|
|
5622
2543
|
connectSocialNetworkProvider(provider: ConnectSocialNetworkProviderProviderEnum, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any, {}>>;
|
|
5623
2544
|
/**
|
|
@@ -5625,14 +2546,12 @@ declare class UserApi extends BaseAPI {
|
|
|
5625
2546
|
* @param {DisconnectSocialNetworkProviderProviderEnum} provider
|
|
5626
2547
|
* @param {*} [options] Override http request option.
|
|
5627
2548
|
* @throws {RequiredError}
|
|
5628
|
-
* @memberof UserApi
|
|
5629
2549
|
*/
|
|
5630
2550
|
disconnectSocialNetworkProvider(provider: DisconnectSocialNetworkProviderProviderEnum, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any, {}>>;
|
|
5631
2551
|
/**
|
|
5632
2552
|
*
|
|
5633
2553
|
* @param {*} [options] Override http request option.
|
|
5634
2554
|
* @throws {RequiredError}
|
|
5635
|
-
* @memberof UserApi
|
|
5636
2555
|
*/
|
|
5637
2556
|
getCurrentUser(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<GetCurrentUserResponse, any, {}>>;
|
|
5638
2557
|
/**
|
|
@@ -5640,14 +2559,12 @@ declare class UserApi extends BaseAPI {
|
|
|
5640
2559
|
* @param {number} name
|
|
5641
2560
|
* @param {*} [options] Override http request option.
|
|
5642
2561
|
* @throws {RequiredError}
|
|
5643
|
-
* @memberof UserApi
|
|
5644
2562
|
*/
|
|
5645
2563
|
getPublicUserByName(name: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<GetPublicUserByNameResponse, any, {}>>;
|
|
5646
2564
|
/**
|
|
5647
2565
|
*
|
|
5648
2566
|
* @param {*} [options] Override http request option.
|
|
5649
2567
|
* @throws {RequiredError}
|
|
5650
|
-
* @memberof UserApi
|
|
5651
2568
|
*/
|
|
5652
2569
|
getSystemCollectionStats(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<GetSystemCollectionStatsResponse, any, {}>>;
|
|
5653
2570
|
/**
|
|
@@ -5655,13 +2572,9 @@ declare class UserApi extends BaseAPI {
|
|
|
5655
2572
|
* @param {UpdateCurrentUserRequest} [updateCurrentUserRequest]
|
|
5656
2573
|
* @param {*} [options] Override http request option.
|
|
5657
2574
|
* @throws {RequiredError}
|
|
5658
|
-
* @memberof UserApi
|
|
5659
2575
|
*/
|
|
5660
2576
|
updateCurrentUser(updateCurrentUserRequest?: UpdateCurrentUserRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UpdateCurrentUserResponse, any, {}>>;
|
|
5661
2577
|
}
|
|
5662
|
-
/**
|
|
5663
|
-
* @export
|
|
5664
|
-
*/
|
|
5665
2578
|
declare const ConnectSocialNetworkProviderProviderEnum: {
|
|
5666
2579
|
readonly Facebook: "facebook";
|
|
5667
2580
|
readonly Google: "google";
|
|
@@ -5671,9 +2584,6 @@ declare const ConnectSocialNetworkProviderProviderEnum: {
|
|
|
5671
2584
|
readonly Gdrive: "gdrive";
|
|
5672
2585
|
};
|
|
5673
2586
|
type ConnectSocialNetworkProviderProviderEnum = typeof ConnectSocialNetworkProviderProviderEnum[keyof typeof ConnectSocialNetworkProviderProviderEnum];
|
|
5674
|
-
/**
|
|
5675
|
-
* @export
|
|
5676
|
-
*/
|
|
5677
2587
|
declare const DisconnectSocialNetworkProviderProviderEnum: {
|
|
5678
2588
|
readonly Facebook: "facebook";
|
|
5679
2589
|
readonly Google: "google";
|