orgnote-api 0.0.11 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -4
- package/src/api.ts +70 -0
- package/src/generated/api/.gitignore +4 -0
- package/src/generated/api/.npmignore +1 -0
- package/src/generated/api/.openapi-generator/FILES +9 -0
- package/src/generated/api/.openapi-generator/VERSION +1 -0
- package/src/generated/api/.openapi-generator-ignore +23 -0
- package/src/generated/api/api.ts +2040 -0
- package/src/generated/api/base.ts +72 -0
- package/src/generated/api/common.ts +150 -0
- package/{dist/generated/api/configuration.d.ts → src/generated/api/configuration.ts} +21 -3
- package/src/generated/api/git_push.sh +57 -0
- package/{dist/generated/api/index.d.ts → src/generated/api/index.ts} +5 -0
- package/{dist/index.d.ts → src/index.ts} +3 -0
- package/src/models/command.ts +30 -0
- package/src/models/completion.ts +30 -0
- package/src/models/extension.ts +45 -0
- package/src/models/modal.ts +4 -0
- package/src/models/note.ts +24 -0
- package/src/models/theme-variables.ts +194 -0
- package/src/models/widget.ts +56 -0
- package/dist/api.d.ts +0 -66
- package/dist/generated/api/api.d.ts +0 -1376
- package/dist/generated/api/base.d.ts +0 -54
- package/dist/generated/api/common.d.ts +0 -65
- package/dist/models/command.d.ts +0 -18
- package/dist/models/completion.d.ts +0 -22
- package/dist/models/extension.d.ts +0 -34
- package/dist/models/modal.d.ts +0 -4
- package/dist/models/note.d.ts +0 -21
- package/dist/models/theme-variables.d.ts +0 -192
- package/dist/models/widget.d.ts +0 -45
- /package/{dist/models/index.d.ts → src/models/index.ts} +0 -0
|
@@ -1,1376 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Org Note API
|
|
3
|
-
* List of methods for work with Org Note.
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 0.0.1
|
|
6
|
-
* Contact: artawower@protonmail.com
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
import type { Configuration } from './configuration';
|
|
13
|
-
import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
14
|
-
import type { RequestArgs } from './base';
|
|
15
|
-
import { BaseAPI } from './base';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface FilesUploadPostRequest
|
|
20
|
-
*/
|
|
21
|
-
export interface FilesUploadPostRequest {
|
|
22
|
-
/**
|
|
23
|
-
* files
|
|
24
|
-
* @type {Array<string>}
|
|
25
|
-
* @memberof FilesUploadPostRequest
|
|
26
|
-
*/
|
|
27
|
-
'files': Array<string>;
|
|
28
|
-
}
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
* @export
|
|
32
|
-
* @interface HandlersCreatingNote
|
|
33
|
-
*/
|
|
34
|
-
export interface HandlersCreatingNote {
|
|
35
|
-
/**
|
|
36
|
-
*
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof HandlersCreatingNote
|
|
39
|
-
*/
|
|
40
|
-
'content'?: string;
|
|
41
|
-
/**
|
|
42
|
-
*
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof HandlersCreatingNote
|
|
45
|
-
*/
|
|
46
|
-
'createdAt'?: string;
|
|
47
|
-
/**
|
|
48
|
-
*
|
|
49
|
-
* @type {Array<string>}
|
|
50
|
-
* @memberof HandlersCreatingNote
|
|
51
|
-
*/
|
|
52
|
-
'filePath'?: Array<string>;
|
|
53
|
-
/**
|
|
54
|
-
*
|
|
55
|
-
* @type {string}
|
|
56
|
-
* @memberof HandlersCreatingNote
|
|
57
|
-
*/
|
|
58
|
-
'id'?: string;
|
|
59
|
-
/**
|
|
60
|
-
*
|
|
61
|
-
* @type {ModelsNoteMeta}
|
|
62
|
-
* @memberof HandlersCreatingNote
|
|
63
|
-
*/
|
|
64
|
-
'meta'?: ModelsNoteMeta;
|
|
65
|
-
/**
|
|
66
|
-
*
|
|
67
|
-
* @type {string}
|
|
68
|
-
* @memberof HandlersCreatingNote
|
|
69
|
-
*/
|
|
70
|
-
'touchedAt'?: string;
|
|
71
|
-
/**
|
|
72
|
-
*
|
|
73
|
-
* @type {string}
|
|
74
|
-
* @memberof HandlersCreatingNote
|
|
75
|
-
*/
|
|
76
|
-
'updatedAt'?: string;
|
|
77
|
-
}
|
|
78
|
-
/**
|
|
79
|
-
*
|
|
80
|
-
* @export
|
|
81
|
-
* @interface HandlersDeletedNote
|
|
82
|
-
*/
|
|
83
|
-
export interface HandlersDeletedNote {
|
|
84
|
-
/**
|
|
85
|
-
*
|
|
86
|
-
* @type {Array<string>}
|
|
87
|
-
* @memberof HandlersDeletedNote
|
|
88
|
-
*/
|
|
89
|
-
'filePath'?: Array<string>;
|
|
90
|
-
/**
|
|
91
|
-
*
|
|
92
|
-
* @type {string}
|
|
93
|
-
* @memberof HandlersDeletedNote
|
|
94
|
-
*/
|
|
95
|
-
'id'?: string;
|
|
96
|
-
}
|
|
97
|
-
/**
|
|
98
|
-
*
|
|
99
|
-
* @export
|
|
100
|
-
* @interface HandlersHttpErrorAny
|
|
101
|
-
*/
|
|
102
|
-
export interface HandlersHttpErrorAny {
|
|
103
|
-
/**
|
|
104
|
-
*
|
|
105
|
-
* @type {object}
|
|
106
|
-
* @memberof HandlersHttpErrorAny
|
|
107
|
-
*/
|
|
108
|
-
'data'?: object;
|
|
109
|
-
/**
|
|
110
|
-
*
|
|
111
|
-
* @type {string}
|
|
112
|
-
* @memberof HandlersHttpErrorAny
|
|
113
|
-
*/
|
|
114
|
-
'message'?: string;
|
|
115
|
-
}
|
|
116
|
-
/**
|
|
117
|
-
*
|
|
118
|
-
* @export
|
|
119
|
-
* @interface HandlersHttpResponseAnyAny
|
|
120
|
-
*/
|
|
121
|
-
export interface HandlersHttpResponseAnyAny {
|
|
122
|
-
/**
|
|
123
|
-
*
|
|
124
|
-
* @type {object}
|
|
125
|
-
* @memberof HandlersHttpResponseAnyAny
|
|
126
|
-
*/
|
|
127
|
-
'data'?: object;
|
|
128
|
-
/**
|
|
129
|
-
*
|
|
130
|
-
* @type {object}
|
|
131
|
-
* @memberof HandlersHttpResponseAnyAny
|
|
132
|
-
*/
|
|
133
|
-
'meta'?: object;
|
|
134
|
-
}
|
|
135
|
-
/**
|
|
136
|
-
*
|
|
137
|
-
* @export
|
|
138
|
-
* @interface HandlersHttpResponseArrayModelsAPITokenAny
|
|
139
|
-
*/
|
|
140
|
-
export interface HandlersHttpResponseArrayModelsAPITokenAny {
|
|
141
|
-
/**
|
|
142
|
-
*
|
|
143
|
-
* @type {Array<ModelsAPIToken>}
|
|
144
|
-
* @memberof HandlersHttpResponseArrayModelsAPITokenAny
|
|
145
|
-
*/
|
|
146
|
-
'data'?: Array<ModelsAPIToken>;
|
|
147
|
-
/**
|
|
148
|
-
*
|
|
149
|
-
* @type {object}
|
|
150
|
-
* @memberof HandlersHttpResponseArrayModelsAPITokenAny
|
|
151
|
-
*/
|
|
152
|
-
'meta'?: object;
|
|
153
|
-
}
|
|
154
|
-
/**
|
|
155
|
-
*
|
|
156
|
-
* @export
|
|
157
|
-
* @interface HandlersHttpResponseArrayModelsPublicNoteModelsPagination
|
|
158
|
-
*/
|
|
159
|
-
export interface HandlersHttpResponseArrayModelsPublicNoteModelsPagination {
|
|
160
|
-
/**
|
|
161
|
-
*
|
|
162
|
-
* @type {Array<ModelsPublicNote>}
|
|
163
|
-
* @memberof HandlersHttpResponseArrayModelsPublicNoteModelsPagination
|
|
164
|
-
*/
|
|
165
|
-
'data'?: Array<ModelsPublicNote>;
|
|
166
|
-
/**
|
|
167
|
-
*
|
|
168
|
-
* @type {ModelsPagination}
|
|
169
|
-
* @memberof HandlersHttpResponseArrayModelsPublicNoteModelsPagination
|
|
170
|
-
*/
|
|
171
|
-
'meta'?: ModelsPagination;
|
|
172
|
-
}
|
|
173
|
-
/**
|
|
174
|
-
*
|
|
175
|
-
* @export
|
|
176
|
-
* @interface HandlersHttpResponseArrayStringAny
|
|
177
|
-
*/
|
|
178
|
-
export interface HandlersHttpResponseArrayStringAny {
|
|
179
|
-
/**
|
|
180
|
-
*
|
|
181
|
-
* @type {Array<string>}
|
|
182
|
-
* @memberof HandlersHttpResponseArrayStringAny
|
|
183
|
-
*/
|
|
184
|
-
'data'?: Array<string>;
|
|
185
|
-
/**
|
|
186
|
-
*
|
|
187
|
-
* @type {object}
|
|
188
|
-
* @memberof HandlersHttpResponseArrayStringAny
|
|
189
|
-
*/
|
|
190
|
-
'meta'?: object;
|
|
191
|
-
}
|
|
192
|
-
/**
|
|
193
|
-
*
|
|
194
|
-
* @export
|
|
195
|
-
* @interface HandlersHttpResponseHandlersOAuthRedirectDataAny
|
|
196
|
-
*/
|
|
197
|
-
export interface HandlersHttpResponseHandlersOAuthRedirectDataAny {
|
|
198
|
-
/**
|
|
199
|
-
*
|
|
200
|
-
* @type {HandlersOAuthRedirectData}
|
|
201
|
-
* @memberof HandlersHttpResponseHandlersOAuthRedirectDataAny
|
|
202
|
-
*/
|
|
203
|
-
'data'?: HandlersOAuthRedirectData;
|
|
204
|
-
/**
|
|
205
|
-
*
|
|
206
|
-
* @type {object}
|
|
207
|
-
* @memberof HandlersHttpResponseHandlersOAuthRedirectDataAny
|
|
208
|
-
*/
|
|
209
|
-
'meta'?: object;
|
|
210
|
-
}
|
|
211
|
-
/**
|
|
212
|
-
*
|
|
213
|
-
* @export
|
|
214
|
-
* @interface HandlersHttpResponseHandlersSyncNotesResponseAny
|
|
215
|
-
*/
|
|
216
|
-
export interface HandlersHttpResponseHandlersSyncNotesResponseAny {
|
|
217
|
-
/**
|
|
218
|
-
*
|
|
219
|
-
* @type {HandlersSyncNotesResponse}
|
|
220
|
-
* @memberof HandlersHttpResponseHandlersSyncNotesResponseAny
|
|
221
|
-
*/
|
|
222
|
-
'data'?: HandlersSyncNotesResponse;
|
|
223
|
-
/**
|
|
224
|
-
*
|
|
225
|
-
* @type {object}
|
|
226
|
-
* @memberof HandlersHttpResponseHandlersSyncNotesResponseAny
|
|
227
|
-
*/
|
|
228
|
-
'meta'?: object;
|
|
229
|
-
}
|
|
230
|
-
/**
|
|
231
|
-
*
|
|
232
|
-
* @export
|
|
233
|
-
* @interface HandlersHttpResponseModelsAPITokenAny
|
|
234
|
-
*/
|
|
235
|
-
export interface HandlersHttpResponseModelsAPITokenAny {
|
|
236
|
-
/**
|
|
237
|
-
*
|
|
238
|
-
* @type {ModelsAPIToken}
|
|
239
|
-
* @memberof HandlersHttpResponseModelsAPITokenAny
|
|
240
|
-
*/
|
|
241
|
-
'data'?: ModelsAPIToken;
|
|
242
|
-
/**
|
|
243
|
-
*
|
|
244
|
-
* @type {object}
|
|
245
|
-
* @memberof HandlersHttpResponseModelsAPITokenAny
|
|
246
|
-
*/
|
|
247
|
-
'meta'?: object;
|
|
248
|
-
}
|
|
249
|
-
/**
|
|
250
|
-
*
|
|
251
|
-
* @export
|
|
252
|
-
* @interface HandlersHttpResponseModelsPublicNoteAny
|
|
253
|
-
*/
|
|
254
|
-
export interface HandlersHttpResponseModelsPublicNoteAny {
|
|
255
|
-
/**
|
|
256
|
-
*
|
|
257
|
-
* @type {ModelsPublicNote}
|
|
258
|
-
* @memberof HandlersHttpResponseModelsPublicNoteAny
|
|
259
|
-
*/
|
|
260
|
-
'data'?: ModelsPublicNote;
|
|
261
|
-
/**
|
|
262
|
-
*
|
|
263
|
-
* @type {object}
|
|
264
|
-
* @memberof HandlersHttpResponseModelsPublicNoteAny
|
|
265
|
-
*/
|
|
266
|
-
'meta'?: object;
|
|
267
|
-
}
|
|
268
|
-
/**
|
|
269
|
-
*
|
|
270
|
-
* @export
|
|
271
|
-
* @interface HandlersHttpResponseModelsUserPersonalInfoAny
|
|
272
|
-
*/
|
|
273
|
-
export interface HandlersHttpResponseModelsUserPersonalInfoAny {
|
|
274
|
-
/**
|
|
275
|
-
*
|
|
276
|
-
* @type {ModelsUserPersonalInfo}
|
|
277
|
-
* @memberof HandlersHttpResponseModelsUserPersonalInfoAny
|
|
278
|
-
*/
|
|
279
|
-
'data'?: ModelsUserPersonalInfo;
|
|
280
|
-
/**
|
|
281
|
-
*
|
|
282
|
-
* @type {object}
|
|
283
|
-
* @memberof HandlersHttpResponseModelsUserPersonalInfoAny
|
|
284
|
-
*/
|
|
285
|
-
'meta'?: object;
|
|
286
|
-
}
|
|
287
|
-
/**
|
|
288
|
-
*
|
|
289
|
-
* @export
|
|
290
|
-
* @interface HandlersOAuthRedirectData
|
|
291
|
-
*/
|
|
292
|
-
export interface HandlersOAuthRedirectData {
|
|
293
|
-
/**
|
|
294
|
-
*
|
|
295
|
-
* @type {string}
|
|
296
|
-
* @memberof HandlersOAuthRedirectData
|
|
297
|
-
*/
|
|
298
|
-
'redirectUrl'?: string;
|
|
299
|
-
}
|
|
300
|
-
/**
|
|
301
|
-
*
|
|
302
|
-
* @export
|
|
303
|
-
* @interface HandlersSubscribeBody
|
|
304
|
-
*/
|
|
305
|
-
export interface HandlersSubscribeBody {
|
|
306
|
-
/**
|
|
307
|
-
*
|
|
308
|
-
* @type {string}
|
|
309
|
-
* @memberof HandlersSubscribeBody
|
|
310
|
-
*/
|
|
311
|
-
'email'?: string;
|
|
312
|
-
/**
|
|
313
|
-
*
|
|
314
|
-
* @type {string}
|
|
315
|
-
* @memberof HandlersSubscribeBody
|
|
316
|
-
*/
|
|
317
|
-
'token'?: string;
|
|
318
|
-
}
|
|
319
|
-
/**
|
|
320
|
-
*
|
|
321
|
-
* @export
|
|
322
|
-
* @interface HandlersSyncNotesRequest
|
|
323
|
-
*/
|
|
324
|
-
export interface HandlersSyncNotesRequest {
|
|
325
|
-
/**
|
|
326
|
-
*
|
|
327
|
-
* @type {Array<string>}
|
|
328
|
-
* @memberof HandlersSyncNotesRequest
|
|
329
|
-
*/
|
|
330
|
-
'deletedNotesIds'?: Array<string>;
|
|
331
|
-
/**
|
|
332
|
-
*
|
|
333
|
-
* @type {Array<HandlersCreatingNote>}
|
|
334
|
-
* @memberof HandlersSyncNotesRequest
|
|
335
|
-
*/
|
|
336
|
-
'notes'?: Array<HandlersCreatingNote>;
|
|
337
|
-
/**
|
|
338
|
-
*
|
|
339
|
-
* @type {string}
|
|
340
|
-
* @memberof HandlersSyncNotesRequest
|
|
341
|
-
*/
|
|
342
|
-
'timestamp'?: string;
|
|
343
|
-
}
|
|
344
|
-
/**
|
|
345
|
-
*
|
|
346
|
-
* @export
|
|
347
|
-
* @interface HandlersSyncNotesResponse
|
|
348
|
-
*/
|
|
349
|
-
export interface HandlersSyncNotesResponse {
|
|
350
|
-
/**
|
|
351
|
-
*
|
|
352
|
-
* @type {Array<HandlersDeletedNote>}
|
|
353
|
-
* @memberof HandlersSyncNotesResponse
|
|
354
|
-
*/
|
|
355
|
-
'deletedNotes'?: Array<HandlersDeletedNote>;
|
|
356
|
-
/**
|
|
357
|
-
*
|
|
358
|
-
* @type {Array<ModelsPublicNote>}
|
|
359
|
-
* @memberof HandlersSyncNotesResponse
|
|
360
|
-
*/
|
|
361
|
-
'notes'?: Array<ModelsPublicNote>;
|
|
362
|
-
}
|
|
363
|
-
/**
|
|
364
|
-
*
|
|
365
|
-
* @export
|
|
366
|
-
* @interface ModelsAPIToken
|
|
367
|
-
*/
|
|
368
|
-
export interface ModelsAPIToken {
|
|
369
|
-
/**
|
|
370
|
-
*
|
|
371
|
-
* @type {string}
|
|
372
|
-
* @memberof ModelsAPIToken
|
|
373
|
-
*/
|
|
374
|
-
'id'?: string;
|
|
375
|
-
/**
|
|
376
|
-
*
|
|
377
|
-
* @type {string}
|
|
378
|
-
* @memberof ModelsAPIToken
|
|
379
|
-
*/
|
|
380
|
-
'permission'?: string;
|
|
381
|
-
/**
|
|
382
|
-
*
|
|
383
|
-
* @type {string}
|
|
384
|
-
* @memberof ModelsAPIToken
|
|
385
|
-
*/
|
|
386
|
-
'token'?: string;
|
|
387
|
-
}
|
|
388
|
-
/**
|
|
389
|
-
*
|
|
390
|
-
* @export
|
|
391
|
-
* @enum {string}
|
|
392
|
-
*/
|
|
393
|
-
export declare const ModelsCategory: {
|
|
394
|
-
readonly CategoryArticle: "article";
|
|
395
|
-
readonly CategoryBook: "book";
|
|
396
|
-
readonly CategorySchedule: "schedule";
|
|
397
|
-
};
|
|
398
|
-
export type ModelsCategory = typeof ModelsCategory[keyof typeof ModelsCategory];
|
|
399
|
-
/**
|
|
400
|
-
*
|
|
401
|
-
* @export
|
|
402
|
-
* @interface ModelsNoteHeading
|
|
403
|
-
*/
|
|
404
|
-
export interface ModelsNoteHeading {
|
|
405
|
-
/**
|
|
406
|
-
*
|
|
407
|
-
* @type {number}
|
|
408
|
-
* @memberof ModelsNoteHeading
|
|
409
|
-
*/
|
|
410
|
-
'level'?: number;
|
|
411
|
-
/**
|
|
412
|
-
*
|
|
413
|
-
* @type {string}
|
|
414
|
-
* @memberof ModelsNoteHeading
|
|
415
|
-
*/
|
|
416
|
-
'text'?: string;
|
|
417
|
-
}
|
|
418
|
-
/**
|
|
419
|
-
*
|
|
420
|
-
* @export
|
|
421
|
-
* @interface ModelsNoteLink
|
|
422
|
-
*/
|
|
423
|
-
export interface ModelsNoteLink {
|
|
424
|
-
/**
|
|
425
|
-
*
|
|
426
|
-
* @type {string}
|
|
427
|
-
* @memberof ModelsNoteLink
|
|
428
|
-
*/
|
|
429
|
-
'name'?: string;
|
|
430
|
-
/**
|
|
431
|
-
*
|
|
432
|
-
* @type {string}
|
|
433
|
-
* @memberof ModelsNoteLink
|
|
434
|
-
*/
|
|
435
|
-
'url'?: string;
|
|
436
|
-
}
|
|
437
|
-
/**
|
|
438
|
-
*
|
|
439
|
-
* @export
|
|
440
|
-
* @interface ModelsNoteMeta
|
|
441
|
-
*/
|
|
442
|
-
export interface ModelsNoteMeta {
|
|
443
|
-
/**
|
|
444
|
-
*
|
|
445
|
-
* @type {ModelsCategory}
|
|
446
|
-
* @memberof ModelsNoteMeta
|
|
447
|
-
*/
|
|
448
|
-
'category'?: ModelsCategory;
|
|
449
|
-
/**
|
|
450
|
-
*
|
|
451
|
-
* @type {{ [key: string]: string; }}
|
|
452
|
-
* @memberof ModelsNoteMeta
|
|
453
|
-
*/
|
|
454
|
-
'connectedNotes'?: {
|
|
455
|
-
[key: string]: string;
|
|
456
|
-
};
|
|
457
|
-
/**
|
|
458
|
-
*
|
|
459
|
-
* @type {string}
|
|
460
|
-
* @memberof ModelsNoteMeta
|
|
461
|
-
*/
|
|
462
|
-
'description'?: string;
|
|
463
|
-
/**
|
|
464
|
-
*
|
|
465
|
-
* @type {Array<ModelsNoteLink>}
|
|
466
|
-
* @memberof ModelsNoteMeta
|
|
467
|
-
*/
|
|
468
|
-
'externalLinks'?: Array<ModelsNoteLink>;
|
|
469
|
-
/**
|
|
470
|
-
*
|
|
471
|
-
* @type {Array<string>}
|
|
472
|
-
* @memberof ModelsNoteMeta
|
|
473
|
-
*/
|
|
474
|
-
'fileTags'?: Array<string>;
|
|
475
|
-
/**
|
|
476
|
-
*
|
|
477
|
-
* @type {Array<ModelsNoteHeading>}
|
|
478
|
-
* @memberof ModelsNoteMeta
|
|
479
|
-
*/
|
|
480
|
-
'headings'?: Array<ModelsNoteHeading>;
|
|
481
|
-
/**
|
|
482
|
-
*
|
|
483
|
-
* @type {Array<string>}
|
|
484
|
-
* @memberof ModelsNoteMeta
|
|
485
|
-
*/
|
|
486
|
-
'images'?: Array<string>;
|
|
487
|
-
/**
|
|
488
|
-
*
|
|
489
|
-
* @type {string}
|
|
490
|
-
* @memberof ModelsNoteMeta
|
|
491
|
-
*/
|
|
492
|
-
'previewImg'?: string;
|
|
493
|
-
/**
|
|
494
|
-
*
|
|
495
|
-
* @type {boolean}
|
|
496
|
-
* @memberof ModelsNoteMeta
|
|
497
|
-
*/
|
|
498
|
-
'published'?: boolean;
|
|
499
|
-
/**
|
|
500
|
-
*
|
|
501
|
-
* @type {string}
|
|
502
|
-
* @memberof ModelsNoteMeta
|
|
503
|
-
*/
|
|
504
|
-
'startup'?: string;
|
|
505
|
-
/**
|
|
506
|
-
*
|
|
507
|
-
* @type {string}
|
|
508
|
-
* @memberof ModelsNoteMeta
|
|
509
|
-
*/
|
|
510
|
-
'title'?: string;
|
|
511
|
-
}
|
|
512
|
-
/**
|
|
513
|
-
*
|
|
514
|
-
* @export
|
|
515
|
-
* @interface ModelsPagination
|
|
516
|
-
*/
|
|
517
|
-
export interface ModelsPagination {
|
|
518
|
-
/**
|
|
519
|
-
*
|
|
520
|
-
* @type {number}
|
|
521
|
-
* @memberof ModelsPagination
|
|
522
|
-
*/
|
|
523
|
-
'limit'?: number;
|
|
524
|
-
/**
|
|
525
|
-
*
|
|
526
|
-
* @type {number}
|
|
527
|
-
* @memberof ModelsPagination
|
|
528
|
-
*/
|
|
529
|
-
'offset'?: number;
|
|
530
|
-
/**
|
|
531
|
-
*
|
|
532
|
-
* @type {number}
|
|
533
|
-
* @memberof ModelsPagination
|
|
534
|
-
*/
|
|
535
|
-
'total'?: number;
|
|
536
|
-
}
|
|
537
|
-
/**
|
|
538
|
-
*
|
|
539
|
-
* @export
|
|
540
|
-
* @interface ModelsPublicNote
|
|
541
|
-
*/
|
|
542
|
-
export interface ModelsPublicNote {
|
|
543
|
-
/**
|
|
544
|
-
*
|
|
545
|
-
* @type {ModelsPublicUser}
|
|
546
|
-
* @memberof ModelsPublicNote
|
|
547
|
-
*/
|
|
548
|
-
'author'?: ModelsPublicUser;
|
|
549
|
-
/**
|
|
550
|
-
*
|
|
551
|
-
* @type {string}
|
|
552
|
-
* @memberof ModelsPublicNote
|
|
553
|
-
*/
|
|
554
|
-
'content'?: string;
|
|
555
|
-
/**
|
|
556
|
-
*
|
|
557
|
-
* @type {string}
|
|
558
|
-
* @memberof ModelsPublicNote
|
|
559
|
-
*/
|
|
560
|
-
'createdAt'?: string;
|
|
561
|
-
/**
|
|
562
|
-
*
|
|
563
|
-
* @type {Array<string>}
|
|
564
|
-
* @memberof ModelsPublicNote
|
|
565
|
-
*/
|
|
566
|
-
'filePath'?: Array<string>;
|
|
567
|
-
/**
|
|
568
|
-
* It\'s externalID from original note
|
|
569
|
-
* @type {string}
|
|
570
|
-
* @memberof ModelsPublicNote
|
|
571
|
-
*/
|
|
572
|
-
'id'?: string;
|
|
573
|
-
/**
|
|
574
|
-
*
|
|
575
|
-
* @type {boolean}
|
|
576
|
-
* @memberof ModelsPublicNote
|
|
577
|
-
*/
|
|
578
|
-
'isMy'?: boolean;
|
|
579
|
-
/**
|
|
580
|
-
*
|
|
581
|
-
* @type {ModelsNoteMeta}
|
|
582
|
-
* @memberof ModelsPublicNote
|
|
583
|
-
*/
|
|
584
|
-
'meta'?: ModelsNoteMeta;
|
|
585
|
-
/**
|
|
586
|
-
*
|
|
587
|
-
* @type {number}
|
|
588
|
-
* @memberof ModelsPublicNote
|
|
589
|
-
*/
|
|
590
|
-
'size'?: number;
|
|
591
|
-
/**
|
|
592
|
-
*
|
|
593
|
-
* @type {string}
|
|
594
|
-
* @memberof ModelsPublicNote
|
|
595
|
-
*/
|
|
596
|
-
'touchedAt'?: string;
|
|
597
|
-
/**
|
|
598
|
-
*
|
|
599
|
-
* @type {string}
|
|
600
|
-
* @memberof ModelsPublicNote
|
|
601
|
-
*/
|
|
602
|
-
'updatedAt'?: string;
|
|
603
|
-
}
|
|
604
|
-
/**
|
|
605
|
-
*
|
|
606
|
-
* @export
|
|
607
|
-
* @interface ModelsPublicUser
|
|
608
|
-
*/
|
|
609
|
-
export interface ModelsPublicUser {
|
|
610
|
-
/**
|
|
611
|
-
*
|
|
612
|
-
* @type {string}
|
|
613
|
-
* @memberof ModelsPublicUser
|
|
614
|
-
*/
|
|
615
|
-
'avatarUrl'?: string;
|
|
616
|
-
/**
|
|
617
|
-
*
|
|
618
|
-
* @type {string}
|
|
619
|
-
* @memberof ModelsPublicUser
|
|
620
|
-
*/
|
|
621
|
-
'email'?: string;
|
|
622
|
-
/**
|
|
623
|
-
*
|
|
624
|
-
* @type {string}
|
|
625
|
-
* @memberof ModelsPublicUser
|
|
626
|
-
*/
|
|
627
|
-
'id'?: string;
|
|
628
|
-
/**
|
|
629
|
-
*
|
|
630
|
-
* @type {string}
|
|
631
|
-
* @memberof ModelsPublicUser
|
|
632
|
-
*/
|
|
633
|
-
'name'?: string;
|
|
634
|
-
/**
|
|
635
|
-
*
|
|
636
|
-
* @type {string}
|
|
637
|
-
* @memberof ModelsPublicUser
|
|
638
|
-
*/
|
|
639
|
-
'nickName'?: string;
|
|
640
|
-
/**
|
|
641
|
-
*
|
|
642
|
-
* @type {string}
|
|
643
|
-
* @memberof ModelsPublicUser
|
|
644
|
-
*/
|
|
645
|
-
'profileUrl'?: string;
|
|
646
|
-
}
|
|
647
|
-
/**
|
|
648
|
-
*
|
|
649
|
-
* @export
|
|
650
|
-
* @interface ModelsUserPersonalInfo
|
|
651
|
-
*/
|
|
652
|
-
export interface ModelsUserPersonalInfo {
|
|
653
|
-
/**
|
|
654
|
-
*
|
|
655
|
-
* @type {string}
|
|
656
|
-
* @memberof ModelsUserPersonalInfo
|
|
657
|
-
*/
|
|
658
|
-
'active'?: string;
|
|
659
|
-
/**
|
|
660
|
-
*
|
|
661
|
-
* @type {string}
|
|
662
|
-
* @memberof ModelsUserPersonalInfo
|
|
663
|
-
*/
|
|
664
|
-
'avatarUrl'?: string;
|
|
665
|
-
/**
|
|
666
|
-
*
|
|
667
|
-
* @type {string}
|
|
668
|
-
* @memberof ModelsUserPersonalInfo
|
|
669
|
-
*/
|
|
670
|
-
'email'?: string;
|
|
671
|
-
/**
|
|
672
|
-
*
|
|
673
|
-
* @type {string}
|
|
674
|
-
* @memberof ModelsUserPersonalInfo
|
|
675
|
-
*/
|
|
676
|
-
'id'?: string;
|
|
677
|
-
/**
|
|
678
|
-
*
|
|
679
|
-
* @type {string}
|
|
680
|
-
* @memberof ModelsUserPersonalInfo
|
|
681
|
-
*/
|
|
682
|
-
'name'?: string;
|
|
683
|
-
/**
|
|
684
|
-
*
|
|
685
|
-
* @type {string}
|
|
686
|
-
* @memberof ModelsUserPersonalInfo
|
|
687
|
-
*/
|
|
688
|
-
'nickName'?: string;
|
|
689
|
-
/**
|
|
690
|
-
*
|
|
691
|
-
* @type {string}
|
|
692
|
-
* @memberof ModelsUserPersonalInfo
|
|
693
|
-
*/
|
|
694
|
-
'profileUrl'?: string;
|
|
695
|
-
/**
|
|
696
|
-
*
|
|
697
|
-
* @type {number}
|
|
698
|
-
* @memberof ModelsUserPersonalInfo
|
|
699
|
-
*/
|
|
700
|
-
'spaceLimit'?: number;
|
|
701
|
-
/**
|
|
702
|
-
*
|
|
703
|
-
* @type {number}
|
|
704
|
-
* @memberof ModelsUserPersonalInfo
|
|
705
|
-
*/
|
|
706
|
-
'usedSpace'?: number;
|
|
707
|
-
}
|
|
708
|
-
/**
|
|
709
|
-
* AuthApi - axios parameter creator
|
|
710
|
-
* @export
|
|
711
|
-
*/
|
|
712
|
-
export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
713
|
-
/**
|
|
714
|
-
* Delete user account
|
|
715
|
-
* @summary Delete user account
|
|
716
|
-
* @param {*} [options] Override http request option.
|
|
717
|
-
* @throws {RequiredError}
|
|
718
|
-
*/
|
|
719
|
-
authAccountDelete: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
720
|
-
/**
|
|
721
|
-
* Return all available API tokens
|
|
722
|
-
* @summary Get API tokens
|
|
723
|
-
* @param {*} [options] Override http request option.
|
|
724
|
-
* @throws {RequiredError}
|
|
725
|
-
*/
|
|
726
|
-
authApiTokensGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
727
|
-
/**
|
|
728
|
-
*
|
|
729
|
-
* @summary Logout
|
|
730
|
-
* @param {*} [options] Override http request option.
|
|
731
|
-
* @throws {RequiredError}
|
|
732
|
-
*/
|
|
733
|
-
authLogoutGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
734
|
-
/**
|
|
735
|
-
*
|
|
736
|
-
* @summary Callback for OAuth
|
|
737
|
-
* @param {string} provider provider
|
|
738
|
-
* @param {*} [options] Override http request option.
|
|
739
|
-
* @throws {RequiredError}
|
|
740
|
-
*/
|
|
741
|
-
authProviderCallbackGet: (provider: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
742
|
-
/**
|
|
743
|
-
* Entrypoint for login
|
|
744
|
-
* @summary OAuth Login
|
|
745
|
-
* @param {string} provider provider
|
|
746
|
-
* @param {string} [state] OAuth state
|
|
747
|
-
* @param {*} [options] Override http request option.
|
|
748
|
-
* @throws {RequiredError}
|
|
749
|
-
*/
|
|
750
|
-
authProviderLoginGet: (provider: string, state?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
751
|
-
/**
|
|
752
|
-
* Subscribe for backend features, like sync notes
|
|
753
|
-
* @summary Subscribe
|
|
754
|
-
* @param {HandlersSubscribeBody} data token
|
|
755
|
-
* @param {*} [options] Override http request option.
|
|
756
|
-
* @throws {RequiredError}
|
|
757
|
-
*/
|
|
758
|
-
authSubscribePost: (data: HandlersSubscribeBody, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
759
|
-
/**
|
|
760
|
-
* Create API token
|
|
761
|
-
* @summary Create API token
|
|
762
|
-
* @param {*} [options] Override http request option.
|
|
763
|
-
* @throws {RequiredError}
|
|
764
|
-
*/
|
|
765
|
-
authTokenPost: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
766
|
-
/**
|
|
767
|
-
* Delete API token
|
|
768
|
-
* @summary Delete API token
|
|
769
|
-
* @param {string} tokenId token id
|
|
770
|
-
* @param {*} [options] Override http request option.
|
|
771
|
-
* @throws {RequiredError}
|
|
772
|
-
*/
|
|
773
|
-
authTokenTokenIdDelete: (tokenId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
774
|
-
/**
|
|
775
|
-
* Return found user by provided token
|
|
776
|
-
* @summary Verify user
|
|
777
|
-
* @param {*} [options] Override http request option.
|
|
778
|
-
* @throws {RequiredError}
|
|
779
|
-
*/
|
|
780
|
-
authVerifyGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
781
|
-
};
|
|
782
|
-
/**
|
|
783
|
-
* AuthApi - functional programming interface
|
|
784
|
-
* @export
|
|
785
|
-
*/
|
|
786
|
-
export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
787
|
-
/**
|
|
788
|
-
* Delete user account
|
|
789
|
-
* @summary Delete user account
|
|
790
|
-
* @param {*} [options] Override http request option.
|
|
791
|
-
* @throws {RequiredError}
|
|
792
|
-
*/
|
|
793
|
-
authAccountDelete(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
794
|
-
/**
|
|
795
|
-
* Return all available API tokens
|
|
796
|
-
* @summary Get API tokens
|
|
797
|
-
* @param {*} [options] Override http request option.
|
|
798
|
-
* @throws {RequiredError}
|
|
799
|
-
*/
|
|
800
|
-
authApiTokensGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HandlersHttpResponseArrayModelsAPITokenAny>>;
|
|
801
|
-
/**
|
|
802
|
-
*
|
|
803
|
-
* @summary Logout
|
|
804
|
-
* @param {*} [options] Override http request option.
|
|
805
|
-
* @throws {RequiredError}
|
|
806
|
-
*/
|
|
807
|
-
authLogoutGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
808
|
-
/**
|
|
809
|
-
*
|
|
810
|
-
* @summary Callback for OAuth
|
|
811
|
-
* @param {string} provider provider
|
|
812
|
-
* @param {*} [options] Override http request option.
|
|
813
|
-
* @throws {RequiredError}
|
|
814
|
-
*/
|
|
815
|
-
authProviderCallbackGet(provider: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
816
|
-
/**
|
|
817
|
-
* Entrypoint for login
|
|
818
|
-
* @summary OAuth Login
|
|
819
|
-
* @param {string} provider provider
|
|
820
|
-
* @param {string} [state] OAuth state
|
|
821
|
-
* @param {*} [options] Override http request option.
|
|
822
|
-
* @throws {RequiredError}
|
|
823
|
-
*/
|
|
824
|
-
authProviderLoginGet(provider: string, state?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HandlersHttpResponseHandlersOAuthRedirectDataAny>>;
|
|
825
|
-
/**
|
|
826
|
-
* Subscribe for backend features, like sync notes
|
|
827
|
-
* @summary Subscribe
|
|
828
|
-
* @param {HandlersSubscribeBody} data token
|
|
829
|
-
* @param {*} [options] Override http request option.
|
|
830
|
-
* @throws {RequiredError}
|
|
831
|
-
*/
|
|
832
|
-
authSubscribePost(data: HandlersSubscribeBody, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
833
|
-
/**
|
|
834
|
-
* Create API token
|
|
835
|
-
* @summary Create API token
|
|
836
|
-
* @param {*} [options] Override http request option.
|
|
837
|
-
* @throws {RequiredError}
|
|
838
|
-
*/
|
|
839
|
-
authTokenPost(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HandlersHttpResponseModelsAPITokenAny>>;
|
|
840
|
-
/**
|
|
841
|
-
* Delete API token
|
|
842
|
-
* @summary Delete API token
|
|
843
|
-
* @param {string} tokenId token id
|
|
844
|
-
* @param {*} [options] Override http request option.
|
|
845
|
-
* @throws {RequiredError}
|
|
846
|
-
*/
|
|
847
|
-
authTokenTokenIdDelete(tokenId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
848
|
-
/**
|
|
849
|
-
* Return found user by provided token
|
|
850
|
-
* @summary Verify user
|
|
851
|
-
* @param {*} [options] Override http request option.
|
|
852
|
-
* @throws {RequiredError}
|
|
853
|
-
*/
|
|
854
|
-
authVerifyGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HandlersHttpResponseModelsUserPersonalInfoAny>>;
|
|
855
|
-
};
|
|
856
|
-
/**
|
|
857
|
-
* AuthApi - factory interface
|
|
858
|
-
* @export
|
|
859
|
-
*/
|
|
860
|
-
export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
861
|
-
/**
|
|
862
|
-
* Delete user account
|
|
863
|
-
* @summary Delete user account
|
|
864
|
-
* @param {*} [options] Override http request option.
|
|
865
|
-
* @throws {RequiredError}
|
|
866
|
-
*/
|
|
867
|
-
authAccountDelete(options?: any): AxiosPromise<object>;
|
|
868
|
-
/**
|
|
869
|
-
* Return all available API tokens
|
|
870
|
-
* @summary Get API tokens
|
|
871
|
-
* @param {*} [options] Override http request option.
|
|
872
|
-
* @throws {RequiredError}
|
|
873
|
-
*/
|
|
874
|
-
authApiTokensGet(options?: any): AxiosPromise<HandlersHttpResponseArrayModelsAPITokenAny>;
|
|
875
|
-
/**
|
|
876
|
-
*
|
|
877
|
-
* @summary Logout
|
|
878
|
-
* @param {*} [options] Override http request option.
|
|
879
|
-
* @throws {RequiredError}
|
|
880
|
-
*/
|
|
881
|
-
authLogoutGet(options?: any): AxiosPromise<object>;
|
|
882
|
-
/**
|
|
883
|
-
*
|
|
884
|
-
* @summary Callback for OAuth
|
|
885
|
-
* @param {string} provider provider
|
|
886
|
-
* @param {*} [options] Override http request option.
|
|
887
|
-
* @throws {RequiredError}
|
|
888
|
-
*/
|
|
889
|
-
authProviderCallbackGet(provider: string, options?: any): AxiosPromise<object>;
|
|
890
|
-
/**
|
|
891
|
-
* Entrypoint for login
|
|
892
|
-
* @summary OAuth Login
|
|
893
|
-
* @param {string} provider provider
|
|
894
|
-
* @param {string} [state] OAuth state
|
|
895
|
-
* @param {*} [options] Override http request option.
|
|
896
|
-
* @throws {RequiredError}
|
|
897
|
-
*/
|
|
898
|
-
authProviderLoginGet(provider: string, state?: string, options?: any): AxiosPromise<HandlersHttpResponseHandlersOAuthRedirectDataAny>;
|
|
899
|
-
/**
|
|
900
|
-
* Subscribe for backend features, like sync notes
|
|
901
|
-
* @summary Subscribe
|
|
902
|
-
* @param {HandlersSubscribeBody} data token
|
|
903
|
-
* @param {*} [options] Override http request option.
|
|
904
|
-
* @throws {RequiredError}
|
|
905
|
-
*/
|
|
906
|
-
authSubscribePost(data: HandlersSubscribeBody, options?: any): AxiosPromise<object>;
|
|
907
|
-
/**
|
|
908
|
-
* Create API token
|
|
909
|
-
* @summary Create API token
|
|
910
|
-
* @param {*} [options] Override http request option.
|
|
911
|
-
* @throws {RequiredError}
|
|
912
|
-
*/
|
|
913
|
-
authTokenPost(options?: any): AxiosPromise<HandlersHttpResponseModelsAPITokenAny>;
|
|
914
|
-
/**
|
|
915
|
-
* Delete API token
|
|
916
|
-
* @summary Delete API token
|
|
917
|
-
* @param {string} tokenId token id
|
|
918
|
-
* @param {*} [options] Override http request option.
|
|
919
|
-
* @throws {RequiredError}
|
|
920
|
-
*/
|
|
921
|
-
authTokenTokenIdDelete(tokenId: string, options?: any): AxiosPromise<object>;
|
|
922
|
-
/**
|
|
923
|
-
* Return found user by provided token
|
|
924
|
-
* @summary Verify user
|
|
925
|
-
* @param {*} [options] Override http request option.
|
|
926
|
-
* @throws {RequiredError}
|
|
927
|
-
*/
|
|
928
|
-
authVerifyGet(options?: any): AxiosPromise<HandlersHttpResponseModelsUserPersonalInfoAny>;
|
|
929
|
-
};
|
|
930
|
-
/**
|
|
931
|
-
* AuthApi - object-oriented interface
|
|
932
|
-
* @export
|
|
933
|
-
* @class AuthApi
|
|
934
|
-
* @extends {BaseAPI}
|
|
935
|
-
*/
|
|
936
|
-
export declare class AuthApi extends BaseAPI {
|
|
937
|
-
/**
|
|
938
|
-
* Delete user account
|
|
939
|
-
* @summary Delete user account
|
|
940
|
-
* @param {*} [options] Override http request option.
|
|
941
|
-
* @throws {RequiredError}
|
|
942
|
-
* @memberof AuthApi
|
|
943
|
-
*/
|
|
944
|
-
authAccountDelete(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
945
|
-
/**
|
|
946
|
-
* Return all available API tokens
|
|
947
|
-
* @summary Get API tokens
|
|
948
|
-
* @param {*} [options] Override http request option.
|
|
949
|
-
* @throws {RequiredError}
|
|
950
|
-
* @memberof AuthApi
|
|
951
|
-
*/
|
|
952
|
-
authApiTokensGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HandlersHttpResponseArrayModelsAPITokenAny, any>>;
|
|
953
|
-
/**
|
|
954
|
-
*
|
|
955
|
-
* @summary Logout
|
|
956
|
-
* @param {*} [options] Override http request option.
|
|
957
|
-
* @throws {RequiredError}
|
|
958
|
-
* @memberof AuthApi
|
|
959
|
-
*/
|
|
960
|
-
authLogoutGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
961
|
-
/**
|
|
962
|
-
*
|
|
963
|
-
* @summary Callback for OAuth
|
|
964
|
-
* @param {string} provider provider
|
|
965
|
-
* @param {*} [options] Override http request option.
|
|
966
|
-
* @throws {RequiredError}
|
|
967
|
-
* @memberof AuthApi
|
|
968
|
-
*/
|
|
969
|
-
authProviderCallbackGet(provider: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
970
|
-
/**
|
|
971
|
-
* Entrypoint for login
|
|
972
|
-
* @summary OAuth Login
|
|
973
|
-
* @param {string} provider provider
|
|
974
|
-
* @param {string} [state] OAuth state
|
|
975
|
-
* @param {*} [options] Override http request option.
|
|
976
|
-
* @throws {RequiredError}
|
|
977
|
-
* @memberof AuthApi
|
|
978
|
-
*/
|
|
979
|
-
authProviderLoginGet(provider: string, state?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HandlersHttpResponseHandlersOAuthRedirectDataAny, any>>;
|
|
980
|
-
/**
|
|
981
|
-
* Subscribe for backend features, like sync notes
|
|
982
|
-
* @summary Subscribe
|
|
983
|
-
* @param {HandlersSubscribeBody} data token
|
|
984
|
-
* @param {*} [options] Override http request option.
|
|
985
|
-
* @throws {RequiredError}
|
|
986
|
-
* @memberof AuthApi
|
|
987
|
-
*/
|
|
988
|
-
authSubscribePost(data: HandlersSubscribeBody, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
989
|
-
/**
|
|
990
|
-
* Create API token
|
|
991
|
-
* @summary Create API token
|
|
992
|
-
* @param {*} [options] Override http request option.
|
|
993
|
-
* @throws {RequiredError}
|
|
994
|
-
* @memberof AuthApi
|
|
995
|
-
*/
|
|
996
|
-
authTokenPost(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HandlersHttpResponseModelsAPITokenAny, any>>;
|
|
997
|
-
/**
|
|
998
|
-
* Delete API token
|
|
999
|
-
* @summary Delete API token
|
|
1000
|
-
* @param {string} tokenId token id
|
|
1001
|
-
* @param {*} [options] Override http request option.
|
|
1002
|
-
* @throws {RequiredError}
|
|
1003
|
-
* @memberof AuthApi
|
|
1004
|
-
*/
|
|
1005
|
-
authTokenTokenIdDelete(tokenId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1006
|
-
/**
|
|
1007
|
-
* Return found user by provided token
|
|
1008
|
-
* @summary Verify user
|
|
1009
|
-
* @param {*} [options] Override http request option.
|
|
1010
|
-
* @throws {RequiredError}
|
|
1011
|
-
* @memberof AuthApi
|
|
1012
|
-
*/
|
|
1013
|
-
authVerifyGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HandlersHttpResponseModelsUserPersonalInfoAny, any>>;
|
|
1014
|
-
}
|
|
1015
|
-
/**
|
|
1016
|
-
* FilesApi - axios parameter creator
|
|
1017
|
-
* @export
|
|
1018
|
-
*/
|
|
1019
|
-
export declare const FilesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1020
|
-
/**
|
|
1021
|
-
* Upload files.
|
|
1022
|
-
* @summary Upload files
|
|
1023
|
-
* @param {FilesUploadPostRequest} filesUploadPostRequest
|
|
1024
|
-
* @param {*} [options] Override http request option.
|
|
1025
|
-
* @throws {RequiredError}
|
|
1026
|
-
*/
|
|
1027
|
-
filesUploadPost: (filesUploadPostRequest: FilesUploadPostRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1028
|
-
};
|
|
1029
|
-
/**
|
|
1030
|
-
* FilesApi - functional programming interface
|
|
1031
|
-
* @export
|
|
1032
|
-
*/
|
|
1033
|
-
export declare const FilesApiFp: (configuration?: Configuration) => {
|
|
1034
|
-
/**
|
|
1035
|
-
* Upload files.
|
|
1036
|
-
* @summary Upload files
|
|
1037
|
-
* @param {FilesUploadPostRequest} filesUploadPostRequest
|
|
1038
|
-
* @param {*} [options] Override http request option.
|
|
1039
|
-
* @throws {RequiredError}
|
|
1040
|
-
*/
|
|
1041
|
-
filesUploadPost(filesUploadPostRequest: FilesUploadPostRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1042
|
-
};
|
|
1043
|
-
/**
|
|
1044
|
-
* FilesApi - factory interface
|
|
1045
|
-
* @export
|
|
1046
|
-
*/
|
|
1047
|
-
export declare const FilesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1048
|
-
/**
|
|
1049
|
-
* Upload files.
|
|
1050
|
-
* @summary Upload files
|
|
1051
|
-
* @param {FilesUploadPostRequest} filesUploadPostRequest
|
|
1052
|
-
* @param {*} [options] Override http request option.
|
|
1053
|
-
* @throws {RequiredError}
|
|
1054
|
-
*/
|
|
1055
|
-
filesUploadPost(filesUploadPostRequest: FilesUploadPostRequest, options?: any): AxiosPromise<object>;
|
|
1056
|
-
};
|
|
1057
|
-
/**
|
|
1058
|
-
* FilesApi - object-oriented interface
|
|
1059
|
-
* @export
|
|
1060
|
-
* @class FilesApi
|
|
1061
|
-
* @extends {BaseAPI}
|
|
1062
|
-
*/
|
|
1063
|
-
export declare class FilesApi extends BaseAPI {
|
|
1064
|
-
/**
|
|
1065
|
-
* Upload files.
|
|
1066
|
-
* @summary Upload files
|
|
1067
|
-
* @param {FilesUploadPostRequest} filesUploadPostRequest
|
|
1068
|
-
* @param {*} [options] Override http request option.
|
|
1069
|
-
* @throws {RequiredError}
|
|
1070
|
-
* @memberof FilesApi
|
|
1071
|
-
*/
|
|
1072
|
-
filesUploadPost(filesUploadPostRequest: FilesUploadPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1073
|
-
}
|
|
1074
|
-
/**
|
|
1075
|
-
* NotesApi - axios parameter creator
|
|
1076
|
-
* @export
|
|
1077
|
-
*/
|
|
1078
|
-
export declare const NotesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1079
|
-
/**
|
|
1080
|
-
* Bulk update or insert notes
|
|
1081
|
-
* @summary Upsert notes
|
|
1082
|
-
* @param {Array<HandlersCreatingNote>} notes List of crated notes
|
|
1083
|
-
* @param {*} [options] Override http request option.
|
|
1084
|
-
* @throws {RequiredError}
|
|
1085
|
-
*/
|
|
1086
|
-
notesBulkUpsertPut: (notes: Array<HandlersCreatingNote>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1087
|
-
/**
|
|
1088
|
-
* Mark notes as deleted by provided list of ids
|
|
1089
|
-
* @summary Delete notes
|
|
1090
|
-
* @param {Array<string>} ids List of ids of deleted notes
|
|
1091
|
-
* @param {*} [options] Override http request option.
|
|
1092
|
-
* @throws {RequiredError}
|
|
1093
|
-
*/
|
|
1094
|
-
notesDelete: (ids: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1095
|
-
/**
|
|
1096
|
-
* Get all notes with optional filter
|
|
1097
|
-
* @summary Get notes
|
|
1098
|
-
* @param {number} [limit]
|
|
1099
|
-
* @param {number} [offset]
|
|
1100
|
-
* @param {string} [userId] User id of which notes to load
|
|
1101
|
-
* @param {string} [searchText]
|
|
1102
|
-
* @param {boolean} [my] Load all my own notes (user will be used from provided token)
|
|
1103
|
-
* @param {string} [from]
|
|
1104
|
-
* @param {boolean} [includeDeleted]
|
|
1105
|
-
* @param {*} [options] Override http request option.
|
|
1106
|
-
* @throws {RequiredError}
|
|
1107
|
-
*/
|
|
1108
|
-
notesGet: (limit?: number, offset?: number, userId?: string, searchText?: string, my?: boolean, from?: string, includeDeleted?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1109
|
-
/**
|
|
1110
|
-
* get note by id
|
|
1111
|
-
* @summary Get note
|
|
1112
|
-
* @param {string} id Note ID
|
|
1113
|
-
* @param {*} [options] Override http request option.
|
|
1114
|
-
* @throws {RequiredError}
|
|
1115
|
-
*/
|
|
1116
|
-
notesIdGet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1117
|
-
/**
|
|
1118
|
-
* Create note
|
|
1119
|
-
* @summary Create note
|
|
1120
|
-
* @param {HandlersCreatingNote} note Note model
|
|
1121
|
-
* @param {*} [options] Override http request option.
|
|
1122
|
-
* @throws {RequiredError}
|
|
1123
|
-
*/
|
|
1124
|
-
notesPost: (note: HandlersCreatingNote, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1125
|
-
/**
|
|
1126
|
-
* Synchronize notes with specific timestamp
|
|
1127
|
-
* @summary Synchronize notes
|
|
1128
|
-
* @param {HandlersSyncNotesRequest} data Sync notes request
|
|
1129
|
-
* @param {*} [options] Override http request option.
|
|
1130
|
-
* @throws {RequiredError}
|
|
1131
|
-
*/
|
|
1132
|
-
notesSyncPost: (data: HandlersSyncNotesRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1133
|
-
};
|
|
1134
|
-
/**
|
|
1135
|
-
* NotesApi - functional programming interface
|
|
1136
|
-
* @export
|
|
1137
|
-
*/
|
|
1138
|
-
export declare const NotesApiFp: (configuration?: Configuration) => {
|
|
1139
|
-
/**
|
|
1140
|
-
* Bulk update or insert notes
|
|
1141
|
-
* @summary Upsert notes
|
|
1142
|
-
* @param {Array<HandlersCreatingNote>} notes List of crated notes
|
|
1143
|
-
* @param {*} [options] Override http request option.
|
|
1144
|
-
* @throws {RequiredError}
|
|
1145
|
-
*/
|
|
1146
|
-
notesBulkUpsertPut(notes: Array<HandlersCreatingNote>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1147
|
-
/**
|
|
1148
|
-
* Mark notes as deleted by provided list of ids
|
|
1149
|
-
* @summary Delete notes
|
|
1150
|
-
* @param {Array<string>} ids List of ids of deleted notes
|
|
1151
|
-
* @param {*} [options] Override http request option.
|
|
1152
|
-
* @throws {RequiredError}
|
|
1153
|
-
*/
|
|
1154
|
-
notesDelete(ids: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HandlersHttpResponseAnyAny>>;
|
|
1155
|
-
/**
|
|
1156
|
-
* Get all notes with optional filter
|
|
1157
|
-
* @summary Get notes
|
|
1158
|
-
* @param {number} [limit]
|
|
1159
|
-
* @param {number} [offset]
|
|
1160
|
-
* @param {string} [userId] User id of which notes to load
|
|
1161
|
-
* @param {string} [searchText]
|
|
1162
|
-
* @param {boolean} [my] Load all my own notes (user will be used from provided token)
|
|
1163
|
-
* @param {string} [from]
|
|
1164
|
-
* @param {boolean} [includeDeleted]
|
|
1165
|
-
* @param {*} [options] Override http request option.
|
|
1166
|
-
* @throws {RequiredError}
|
|
1167
|
-
*/
|
|
1168
|
-
notesGet(limit?: number, offset?: number, userId?: string, searchText?: string, my?: boolean, from?: string, includeDeleted?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HandlersHttpResponseArrayModelsPublicNoteModelsPagination>>;
|
|
1169
|
-
/**
|
|
1170
|
-
* get note by id
|
|
1171
|
-
* @summary Get note
|
|
1172
|
-
* @param {string} id Note ID
|
|
1173
|
-
* @param {*} [options] Override http request option.
|
|
1174
|
-
* @throws {RequiredError}
|
|
1175
|
-
*/
|
|
1176
|
-
notesIdGet(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HandlersHttpResponseModelsPublicNoteAny>>;
|
|
1177
|
-
/**
|
|
1178
|
-
* Create note
|
|
1179
|
-
* @summary Create note
|
|
1180
|
-
* @param {HandlersCreatingNote} note Note model
|
|
1181
|
-
* @param {*} [options] Override http request option.
|
|
1182
|
-
* @throws {RequiredError}
|
|
1183
|
-
*/
|
|
1184
|
-
notesPost(note: HandlersCreatingNote, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
1185
|
-
/**
|
|
1186
|
-
* Synchronize notes with specific timestamp
|
|
1187
|
-
* @summary Synchronize notes
|
|
1188
|
-
* @param {HandlersSyncNotesRequest} data Sync notes request
|
|
1189
|
-
* @param {*} [options] Override http request option.
|
|
1190
|
-
* @throws {RequiredError}
|
|
1191
|
-
*/
|
|
1192
|
-
notesSyncPost(data: HandlersSyncNotesRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HandlersHttpResponseHandlersSyncNotesResponseAny>>;
|
|
1193
|
-
};
|
|
1194
|
-
/**
|
|
1195
|
-
* NotesApi - factory interface
|
|
1196
|
-
* @export
|
|
1197
|
-
*/
|
|
1198
|
-
export declare const NotesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1199
|
-
/**
|
|
1200
|
-
* Bulk update or insert notes
|
|
1201
|
-
* @summary Upsert notes
|
|
1202
|
-
* @param {Array<HandlersCreatingNote>} notes List of crated notes
|
|
1203
|
-
* @param {*} [options] Override http request option.
|
|
1204
|
-
* @throws {RequiredError}
|
|
1205
|
-
*/
|
|
1206
|
-
notesBulkUpsertPut(notes: Array<HandlersCreatingNote>, options?: any): AxiosPromise<object>;
|
|
1207
|
-
/**
|
|
1208
|
-
* Mark notes as deleted by provided list of ids
|
|
1209
|
-
* @summary Delete notes
|
|
1210
|
-
* @param {Array<string>} ids List of ids of deleted notes
|
|
1211
|
-
* @param {*} [options] Override http request option.
|
|
1212
|
-
* @throws {RequiredError}
|
|
1213
|
-
*/
|
|
1214
|
-
notesDelete(ids: Array<string>, options?: any): AxiosPromise<HandlersHttpResponseAnyAny>;
|
|
1215
|
-
/**
|
|
1216
|
-
* Get all notes with optional filter
|
|
1217
|
-
* @summary Get notes
|
|
1218
|
-
* @param {number} [limit]
|
|
1219
|
-
* @param {number} [offset]
|
|
1220
|
-
* @param {string} [userId] User id of which notes to load
|
|
1221
|
-
* @param {string} [searchText]
|
|
1222
|
-
* @param {boolean} [my] Load all my own notes (user will be used from provided token)
|
|
1223
|
-
* @param {string} [from]
|
|
1224
|
-
* @param {boolean} [includeDeleted]
|
|
1225
|
-
* @param {*} [options] Override http request option.
|
|
1226
|
-
* @throws {RequiredError}
|
|
1227
|
-
*/
|
|
1228
|
-
notesGet(limit?: number, offset?: number, userId?: string, searchText?: string, my?: boolean, from?: string, includeDeleted?: boolean, options?: any): AxiosPromise<HandlersHttpResponseArrayModelsPublicNoteModelsPagination>;
|
|
1229
|
-
/**
|
|
1230
|
-
* get note by id
|
|
1231
|
-
* @summary Get note
|
|
1232
|
-
* @param {string} id Note ID
|
|
1233
|
-
* @param {*} [options] Override http request option.
|
|
1234
|
-
* @throws {RequiredError}
|
|
1235
|
-
*/
|
|
1236
|
-
notesIdGet(id: string, options?: any): AxiosPromise<HandlersHttpResponseModelsPublicNoteAny>;
|
|
1237
|
-
/**
|
|
1238
|
-
* Create note
|
|
1239
|
-
* @summary Create note
|
|
1240
|
-
* @param {HandlersCreatingNote} note Note model
|
|
1241
|
-
* @param {*} [options] Override http request option.
|
|
1242
|
-
* @throws {RequiredError}
|
|
1243
|
-
*/
|
|
1244
|
-
notesPost(note: HandlersCreatingNote, options?: any): AxiosPromise<object>;
|
|
1245
|
-
/**
|
|
1246
|
-
* Synchronize notes with specific timestamp
|
|
1247
|
-
* @summary Synchronize notes
|
|
1248
|
-
* @param {HandlersSyncNotesRequest} data Sync notes request
|
|
1249
|
-
* @param {*} [options] Override http request option.
|
|
1250
|
-
* @throws {RequiredError}
|
|
1251
|
-
*/
|
|
1252
|
-
notesSyncPost(data: HandlersSyncNotesRequest, options?: any): AxiosPromise<HandlersHttpResponseHandlersSyncNotesResponseAny>;
|
|
1253
|
-
};
|
|
1254
|
-
/**
|
|
1255
|
-
* NotesApi - object-oriented interface
|
|
1256
|
-
* @export
|
|
1257
|
-
* @class NotesApi
|
|
1258
|
-
* @extends {BaseAPI}
|
|
1259
|
-
*/
|
|
1260
|
-
export declare class NotesApi extends BaseAPI {
|
|
1261
|
-
/**
|
|
1262
|
-
* Bulk update or insert notes
|
|
1263
|
-
* @summary Upsert notes
|
|
1264
|
-
* @param {Array<HandlersCreatingNote>} notes List of crated notes
|
|
1265
|
-
* @param {*} [options] Override http request option.
|
|
1266
|
-
* @throws {RequiredError}
|
|
1267
|
-
* @memberof NotesApi
|
|
1268
|
-
*/
|
|
1269
|
-
notesBulkUpsertPut(notes: Array<HandlersCreatingNote>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1270
|
-
/**
|
|
1271
|
-
* Mark notes as deleted by provided list of ids
|
|
1272
|
-
* @summary Delete notes
|
|
1273
|
-
* @param {Array<string>} ids List of ids of deleted notes
|
|
1274
|
-
* @param {*} [options] Override http request option.
|
|
1275
|
-
* @throws {RequiredError}
|
|
1276
|
-
* @memberof NotesApi
|
|
1277
|
-
*/
|
|
1278
|
-
notesDelete(ids: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HandlersHttpResponseAnyAny, any>>;
|
|
1279
|
-
/**
|
|
1280
|
-
* Get all notes with optional filter
|
|
1281
|
-
* @summary Get notes
|
|
1282
|
-
* @param {number} [limit]
|
|
1283
|
-
* @param {number} [offset]
|
|
1284
|
-
* @param {string} [userId] User id of which notes to load
|
|
1285
|
-
* @param {string} [searchText]
|
|
1286
|
-
* @param {boolean} [my] Load all my own notes (user will be used from provided token)
|
|
1287
|
-
* @param {string} [from]
|
|
1288
|
-
* @param {boolean} [includeDeleted]
|
|
1289
|
-
* @param {*} [options] Override http request option.
|
|
1290
|
-
* @throws {RequiredError}
|
|
1291
|
-
* @memberof NotesApi
|
|
1292
|
-
*/
|
|
1293
|
-
notesGet(limit?: number, offset?: number, userId?: string, searchText?: string, my?: boolean, from?: string, includeDeleted?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HandlersHttpResponseArrayModelsPublicNoteModelsPagination, any>>;
|
|
1294
|
-
/**
|
|
1295
|
-
* get note by id
|
|
1296
|
-
* @summary Get note
|
|
1297
|
-
* @param {string} id Note ID
|
|
1298
|
-
* @param {*} [options] Override http request option.
|
|
1299
|
-
* @throws {RequiredError}
|
|
1300
|
-
* @memberof NotesApi
|
|
1301
|
-
*/
|
|
1302
|
-
notesIdGet(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HandlersHttpResponseModelsPublicNoteAny, any>>;
|
|
1303
|
-
/**
|
|
1304
|
-
* Create note
|
|
1305
|
-
* @summary Create note
|
|
1306
|
-
* @param {HandlersCreatingNote} note Note model
|
|
1307
|
-
* @param {*} [options] Override http request option.
|
|
1308
|
-
* @throws {RequiredError}
|
|
1309
|
-
* @memberof NotesApi
|
|
1310
|
-
*/
|
|
1311
|
-
notesPost(note: HandlersCreatingNote, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
1312
|
-
/**
|
|
1313
|
-
* Synchronize notes with specific timestamp
|
|
1314
|
-
* @summary Synchronize notes
|
|
1315
|
-
* @param {HandlersSyncNotesRequest} data Sync notes request
|
|
1316
|
-
* @param {*} [options] Override http request option.
|
|
1317
|
-
* @throws {RequiredError}
|
|
1318
|
-
* @memberof NotesApi
|
|
1319
|
-
*/
|
|
1320
|
-
notesSyncPost(data: HandlersSyncNotesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HandlersHttpResponseHandlersSyncNotesResponseAny, any>>;
|
|
1321
|
-
}
|
|
1322
|
-
/**
|
|
1323
|
-
* TagsApi - axios parameter creator
|
|
1324
|
-
* @export
|
|
1325
|
-
*/
|
|
1326
|
-
export declare const TagsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1327
|
-
/**
|
|
1328
|
-
* Return list of al registered tags
|
|
1329
|
-
* @summary Get tags
|
|
1330
|
-
* @param {*} [options] Override http request option.
|
|
1331
|
-
* @throws {RequiredError}
|
|
1332
|
-
*/
|
|
1333
|
-
tagsGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1334
|
-
};
|
|
1335
|
-
/**
|
|
1336
|
-
* TagsApi - functional programming interface
|
|
1337
|
-
* @export
|
|
1338
|
-
*/
|
|
1339
|
-
export declare const TagsApiFp: (configuration?: Configuration) => {
|
|
1340
|
-
/**
|
|
1341
|
-
* Return list of al registered tags
|
|
1342
|
-
* @summary Get tags
|
|
1343
|
-
* @param {*} [options] Override http request option.
|
|
1344
|
-
* @throws {RequiredError}
|
|
1345
|
-
*/
|
|
1346
|
-
tagsGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HandlersHttpResponseArrayStringAny>>;
|
|
1347
|
-
};
|
|
1348
|
-
/**
|
|
1349
|
-
* TagsApi - factory interface
|
|
1350
|
-
* @export
|
|
1351
|
-
*/
|
|
1352
|
-
export declare const TagsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1353
|
-
/**
|
|
1354
|
-
* Return list of al registered tags
|
|
1355
|
-
* @summary Get tags
|
|
1356
|
-
* @param {*} [options] Override http request option.
|
|
1357
|
-
* @throws {RequiredError}
|
|
1358
|
-
*/
|
|
1359
|
-
tagsGet(options?: any): AxiosPromise<HandlersHttpResponseArrayStringAny>;
|
|
1360
|
-
};
|
|
1361
|
-
/**
|
|
1362
|
-
* TagsApi - object-oriented interface
|
|
1363
|
-
* @export
|
|
1364
|
-
* @class TagsApi
|
|
1365
|
-
* @extends {BaseAPI}
|
|
1366
|
-
*/
|
|
1367
|
-
export declare class TagsApi extends BaseAPI {
|
|
1368
|
-
/**
|
|
1369
|
-
* Return list of al registered tags
|
|
1370
|
-
* @summary Get tags
|
|
1371
|
-
* @param {*} [options] Override http request option.
|
|
1372
|
-
* @throws {RequiredError}
|
|
1373
|
-
* @memberof TagsApi
|
|
1374
|
-
*/
|
|
1375
|
-
tagsGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HandlersHttpResponseArrayStringAny, any>>;
|
|
1376
|
-
}
|