@nmshd/runtime 1.2.0 → 1.2.4
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/dist/buildInformation.js +5 -5
- package/dist/events/DataEvent.d.ts +2 -1
- package/dist/events/DataEvent.js +2 -1
- package/dist/events/DataEvent.js.map +1 -1
- package/dist/events/consumption/MailReceivedEvent.d.ts +1 -1
- package/dist/events/consumption/MailReceivedEvent.js +2 -2
- package/dist/events/consumption/MailReceivedEvent.js.map +1 -1
- package/dist/events/consumption/RelationshipEvent.d.ts +1 -1
- package/dist/events/consumption/RelationshipEvent.js +2 -2
- package/dist/events/consumption/RelationshipEvent.js.map +1 -1
- package/dist/events/consumption/RequestMailReceivedEvent.d.ts +1 -1
- package/dist/events/consumption/RequestMailReceivedEvent.js +2 -2
- package/dist/events/consumption/RequestMailReceivedEvent.js.map +1 -1
- package/dist/events/consumption/RequestReceivedEvent.d.ts +1 -1
- package/dist/events/consumption/RequestReceivedEvent.js +2 -2
- package/dist/events/consumption/RequestReceivedEvent.js.map +1 -1
- package/dist/events/transport/MessageDeliveredEvent.d.ts +1 -1
- package/dist/events/transport/MessageDeliveredEvent.js +2 -2
- package/dist/events/transport/MessageDeliveredEvent.js.map +1 -1
- package/dist/events/transport/MessageReceivedEvent.d.ts +1 -1
- package/dist/events/transport/MessageReceivedEvent.js +2 -2
- package/dist/events/transport/MessageReceivedEvent.js.map +1 -1
- package/dist/events/transport/MessageSentEvent.d.ts +1 -1
- package/dist/events/transport/MessageSentEvent.js +2 -2
- package/dist/events/transport/MessageSentEvent.js.map +1 -1
- package/dist/events/transport/RelationshipChangeReceivedEvent.d.ts +1 -1
- package/dist/events/transport/RelationshipChangeReceivedEvent.js +2 -2
- package/dist/events/transport/RelationshipChangeReceivedEvent.js.map +1 -1
- package/dist/events/transport/RelationshipChangedEvent.d.ts +1 -1
- package/dist/events/transport/RelationshipChangedEvent.js +2 -2
- package/dist/events/transport/RelationshipChangedEvent.js.map +1 -1
- package/dist/modules/MessageModule.js +4 -4
- package/dist/modules/MessageModule.js.map +1 -1
- package/dist/useCases/common/SchemaRepository.d.ts +5 -4
- package/dist/useCases/common/SchemaRepository.js +11 -9
- package/dist/useCases/common/SchemaRepository.js.map +1 -1
- package/dist/useCases/common/Schemas.d.ts +78 -1602
- package/dist/useCases/common/Schemas.js +172 -57
- package/dist/useCases/common/Schemas.js.map +1 -1
- package/dist/useCases/common/UseCase.d.ts +1 -4
- package/dist/useCases/common/UseCase.js.map +1 -1
- package/dist/useCases/common/index.d.ts +2 -0
- package/dist/useCases/common/index.js +2 -0
- package/dist/useCases/common/index.js.map +1 -1
- package/dist/useCases/common/validation/IValidator.d.ts +4 -0
- package/dist/useCases/common/validation/IValidator.js +3 -0
- package/dist/useCases/common/validation/IValidator.js.map +1 -0
- package/dist/useCases/common/validation/SchemaValidator.d.ts +10 -0
- package/dist/useCases/common/{SchemaValidator.js → validation/SchemaValidator.js} +6 -3
- package/dist/useCases/common/validation/SchemaValidator.js.map +1 -0
- package/dist/useCases/transport/account/SyncEverything.d.ts +3 -2
- package/dist/useCases/transport/account/SyncEverything.js +14 -8
- package/dist/useCases/transport/account/SyncEverything.js.map +1 -1
- package/dist/useCases/transport/files/CreateTokenForFile.d.ts +1 -3
- package/dist/useCases/transport/files/CreateTokenForFile.js +2 -4
- package/dist/useCases/transport/files/CreateTokenForFile.js.map +1 -1
- package/dist/useCases/transport/files/CreateTokenQrCodeForFile.d.ts +1 -3
- package/dist/useCases/transport/files/CreateTokenQrCodeForFile.js +2 -4
- package/dist/useCases/transport/files/CreateTokenQrCodeForFile.js.map +1 -1
- package/dist/useCases/transport/files/DownloadFile.d.ts +1 -3
- package/dist/useCases/transport/files/DownloadFile.js +2 -4
- package/dist/useCases/transport/files/DownloadFile.js.map +1 -1
- package/dist/useCases/transport/files/GetFile.d.ts +1 -3
- package/dist/useCases/transport/files/GetFile.js +2 -4
- package/dist/useCases/transport/files/GetFile.js.map +1 -1
- package/dist/useCases/transport/files/LoadPeerFile.d.ts +24 -13
- package/dist/useCases/transport/files/LoadPeerFile.js +36 -37
- package/dist/useCases/transport/files/LoadPeerFile.js.map +1 -1
- package/dist/useCases/transport/messages/SendMessage.d.ts +3 -2
- package/dist/useCases/transport/messages/SendMessage.js +5 -2
- package/dist/useCases/transport/messages/SendMessage.js.map +1 -1
- package/dist/useCases/transport/relationships/AcceptRelationshipChange.d.ts +3 -2
- package/dist/useCases/transport/relationships/AcceptRelationshipChange.js +5 -2
- package/dist/useCases/transport/relationships/AcceptRelationshipChange.js.map +1 -1
- package/dist/useCases/transport/relationships/CreateRelationship.d.ts +3 -2
- package/dist/useCases/transport/relationships/CreateRelationship.js +5 -2
- package/dist/useCases/transport/relationships/CreateRelationship.js.map +1 -1
- package/dist/useCases/transport/relationships/RejectRelationshipChange.d.ts +3 -2
- package/dist/useCases/transport/relationships/RejectRelationshipChange.js +5 -2
- package/dist/useCases/transport/relationships/RejectRelationshipChange.js.map +1 -1
- package/dist/useCases/transport/relationships/RevokeRelationshipChange.d.ts +3 -2
- package/dist/useCases/transport/relationships/RevokeRelationshipChange.js +5 -2
- package/dist/useCases/transport/relationships/RevokeRelationshipChange.js.map +1 -1
- package/lib-web/nmshd.runtime.js +643 -214
- package/lib-web/nmshd.runtime.js.map +1 -1
- package/lib-web/nmshd.runtime.min.js +2 -2
- package/lib-web/nmshd.runtime.min.js.map +1 -1
- package/package.json +22 -22
- package/dist/useCases/common/SchemaValidator.d.ts +0 -9
- package/dist/useCases/common/SchemaValidator.js.map +0 -1
|
@@ -1,1602 +1,78 @@
|
|
|
1
|
-
export declare const LoadPeerTokenAnonymousByIdAndKeyRequest:
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
export declare const
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
export declare const
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
export declare const DeleteAttributeRequest: {
|
|
80
|
-
$schema: string;
|
|
81
|
-
$ref: string;
|
|
82
|
-
definitions: {
|
|
83
|
-
DeleteAttributeRequest: {
|
|
84
|
-
type: string;
|
|
85
|
-
properties: {
|
|
86
|
-
id: {
|
|
87
|
-
type: string;
|
|
88
|
-
};
|
|
89
|
-
};
|
|
90
|
-
required: string[];
|
|
91
|
-
additionalProperties: boolean;
|
|
92
|
-
};
|
|
93
|
-
};
|
|
94
|
-
};
|
|
95
|
-
export declare const DeleteAttributeByNameRequest: {
|
|
96
|
-
$schema: string;
|
|
97
|
-
$ref: string;
|
|
98
|
-
definitions: {
|
|
99
|
-
DeleteAttributeByNameRequest: {
|
|
100
|
-
type: string;
|
|
101
|
-
properties: {
|
|
102
|
-
name: {
|
|
103
|
-
type: string;
|
|
104
|
-
};
|
|
105
|
-
};
|
|
106
|
-
required: string[];
|
|
107
|
-
additionalProperties: boolean;
|
|
108
|
-
};
|
|
109
|
-
};
|
|
110
|
-
};
|
|
111
|
-
export declare const GetAttributeRequest: {
|
|
112
|
-
$schema: string;
|
|
113
|
-
$ref: string;
|
|
114
|
-
definitions: {
|
|
115
|
-
GetAttributeRequest: {
|
|
116
|
-
type: string;
|
|
117
|
-
properties: {
|
|
118
|
-
id: {
|
|
119
|
-
type: string;
|
|
120
|
-
};
|
|
121
|
-
};
|
|
122
|
-
required: string[];
|
|
123
|
-
additionalProperties: boolean;
|
|
124
|
-
};
|
|
125
|
-
};
|
|
126
|
-
};
|
|
127
|
-
export declare const GetAttributeByNameRequest: {
|
|
128
|
-
$schema: string;
|
|
129
|
-
$ref: string;
|
|
130
|
-
definitions: {
|
|
131
|
-
GetAttributeByNameRequest: {
|
|
132
|
-
type: string;
|
|
133
|
-
properties: {
|
|
134
|
-
name: {
|
|
135
|
-
type: string;
|
|
136
|
-
};
|
|
137
|
-
};
|
|
138
|
-
required: string[];
|
|
139
|
-
additionalProperties: boolean;
|
|
140
|
-
};
|
|
141
|
-
};
|
|
142
|
-
};
|
|
143
|
-
export declare const GetAttributesRequest: {
|
|
144
|
-
$schema: string;
|
|
145
|
-
$ref: string;
|
|
146
|
-
definitions: {
|
|
147
|
-
GetAttributesRequest: {
|
|
148
|
-
type: string;
|
|
149
|
-
additionalProperties: boolean;
|
|
150
|
-
};
|
|
151
|
-
};
|
|
152
|
-
};
|
|
153
|
-
export declare const GetAttributesByNameRequest: {
|
|
154
|
-
$schema: string;
|
|
155
|
-
$ref: string;
|
|
156
|
-
definitions: {
|
|
157
|
-
GetAttributesByNameRequest: {
|
|
158
|
-
type: string;
|
|
159
|
-
additionalProperties: boolean;
|
|
160
|
-
};
|
|
161
|
-
};
|
|
162
|
-
};
|
|
163
|
-
export declare const GetHistoryByNameRequest: {
|
|
164
|
-
$schema: string;
|
|
165
|
-
$ref: string;
|
|
166
|
-
definitions: {
|
|
167
|
-
GetHistoryByNameRequest: {
|
|
168
|
-
type: string;
|
|
169
|
-
properties: {
|
|
170
|
-
name: {
|
|
171
|
-
type: string;
|
|
172
|
-
};
|
|
173
|
-
};
|
|
174
|
-
required: string[];
|
|
175
|
-
additionalProperties: boolean;
|
|
176
|
-
};
|
|
177
|
-
};
|
|
178
|
-
};
|
|
179
|
-
export declare const SucceedAttributeRequest: {
|
|
180
|
-
$schema: string;
|
|
181
|
-
$ref: string;
|
|
182
|
-
definitions: {
|
|
183
|
-
SucceedAttributeRequest: {
|
|
184
|
-
type: string;
|
|
185
|
-
properties: {
|
|
186
|
-
attribute: {
|
|
187
|
-
$ref: string;
|
|
188
|
-
};
|
|
189
|
-
validFrom: {
|
|
190
|
-
type: string;
|
|
191
|
-
};
|
|
192
|
-
};
|
|
193
|
-
required: string[];
|
|
194
|
-
additionalProperties: boolean;
|
|
195
|
-
};
|
|
196
|
-
IAttribute: {
|
|
197
|
-
type: string;
|
|
198
|
-
properties: {
|
|
199
|
-
name: {
|
|
200
|
-
type: string;
|
|
201
|
-
};
|
|
202
|
-
value: {};
|
|
203
|
-
validFrom: {
|
|
204
|
-
$ref: string;
|
|
205
|
-
};
|
|
206
|
-
validTo: {
|
|
207
|
-
$ref: string;
|
|
208
|
-
};
|
|
209
|
-
};
|
|
210
|
-
required: string[];
|
|
211
|
-
additionalProperties: boolean;
|
|
212
|
-
};
|
|
213
|
-
ICoreDate: {
|
|
214
|
-
type: string;
|
|
215
|
-
properties: {
|
|
216
|
-
date: {
|
|
217
|
-
type: string;
|
|
218
|
-
};
|
|
219
|
-
};
|
|
220
|
-
required: string[];
|
|
221
|
-
additionalProperties: boolean;
|
|
222
|
-
};
|
|
223
|
-
};
|
|
224
|
-
};
|
|
225
|
-
export declare const UpdateAttributeRequest: {
|
|
226
|
-
$schema: string;
|
|
227
|
-
$ref: string;
|
|
228
|
-
definitions: {
|
|
229
|
-
UpdateAttributeRequest: {
|
|
230
|
-
type: string;
|
|
231
|
-
properties: {
|
|
232
|
-
id: {
|
|
233
|
-
type: string;
|
|
234
|
-
};
|
|
235
|
-
attribute: {
|
|
236
|
-
$ref: string;
|
|
237
|
-
};
|
|
238
|
-
};
|
|
239
|
-
required: string[];
|
|
240
|
-
additionalProperties: boolean;
|
|
241
|
-
};
|
|
242
|
-
IAttribute: {
|
|
243
|
-
type: string;
|
|
244
|
-
properties: {
|
|
245
|
-
name: {
|
|
246
|
-
type: string;
|
|
247
|
-
};
|
|
248
|
-
value: {};
|
|
249
|
-
validFrom: {
|
|
250
|
-
$ref: string;
|
|
251
|
-
};
|
|
252
|
-
validTo: {
|
|
253
|
-
$ref: string;
|
|
254
|
-
};
|
|
255
|
-
};
|
|
256
|
-
required: string[];
|
|
257
|
-
additionalProperties: boolean;
|
|
258
|
-
};
|
|
259
|
-
ICoreDate: {
|
|
260
|
-
type: string;
|
|
261
|
-
properties: {
|
|
262
|
-
date: {
|
|
263
|
-
type: string;
|
|
264
|
-
};
|
|
265
|
-
};
|
|
266
|
-
required: string[];
|
|
267
|
-
additionalProperties: boolean;
|
|
268
|
-
};
|
|
269
|
-
};
|
|
270
|
-
};
|
|
271
|
-
export declare const CreateDraftRequest: {
|
|
272
|
-
$schema: string;
|
|
273
|
-
$ref: string;
|
|
274
|
-
definitions: {
|
|
275
|
-
CreateDraftRequest: {
|
|
276
|
-
type: string;
|
|
277
|
-
properties: {
|
|
278
|
-
content: {};
|
|
279
|
-
type: {
|
|
280
|
-
type: string;
|
|
281
|
-
};
|
|
282
|
-
};
|
|
283
|
-
required: string[];
|
|
284
|
-
additionalProperties: boolean;
|
|
285
|
-
};
|
|
286
|
-
};
|
|
287
|
-
};
|
|
288
|
-
export declare const DeleteDraftRequest: {
|
|
289
|
-
$schema: string;
|
|
290
|
-
$ref: string;
|
|
291
|
-
definitions: {
|
|
292
|
-
DeleteDraftRequest: {
|
|
293
|
-
type: string;
|
|
294
|
-
properties: {
|
|
295
|
-
id: {
|
|
296
|
-
type: string;
|
|
297
|
-
};
|
|
298
|
-
};
|
|
299
|
-
required: string[];
|
|
300
|
-
additionalProperties: boolean;
|
|
301
|
-
};
|
|
302
|
-
};
|
|
303
|
-
};
|
|
304
|
-
export declare const GetDraftRequest: {
|
|
305
|
-
$schema: string;
|
|
306
|
-
$ref: string;
|
|
307
|
-
definitions: {
|
|
308
|
-
GetDraftRequest: {
|
|
309
|
-
type: string;
|
|
310
|
-
properties: {
|
|
311
|
-
id: {
|
|
312
|
-
type: string;
|
|
313
|
-
};
|
|
314
|
-
};
|
|
315
|
-
required: string[];
|
|
316
|
-
additionalProperties: boolean;
|
|
317
|
-
};
|
|
318
|
-
};
|
|
319
|
-
};
|
|
320
|
-
export declare const GetDraftsRequest: {
|
|
321
|
-
$schema: string;
|
|
322
|
-
$ref: string;
|
|
323
|
-
definitions: {
|
|
324
|
-
GetDraftsRequest: {
|
|
325
|
-
type: string;
|
|
326
|
-
properties: {
|
|
327
|
-
query: {};
|
|
328
|
-
};
|
|
329
|
-
additionalProperties: boolean;
|
|
330
|
-
};
|
|
331
|
-
};
|
|
332
|
-
};
|
|
333
|
-
export declare const UpdateDraftRequest: {
|
|
334
|
-
$schema: string;
|
|
335
|
-
$ref: string;
|
|
336
|
-
definitions: {
|
|
337
|
-
UpdateDraftRequest: {
|
|
338
|
-
type: string;
|
|
339
|
-
properties: {
|
|
340
|
-
id: {
|
|
341
|
-
type: string;
|
|
342
|
-
};
|
|
343
|
-
content: {};
|
|
344
|
-
};
|
|
345
|
-
required: string[];
|
|
346
|
-
additionalProperties: boolean;
|
|
347
|
-
};
|
|
348
|
-
};
|
|
349
|
-
};
|
|
350
|
-
export declare const CreateRelationshipInfoRequest: {
|
|
351
|
-
$schema: string;
|
|
352
|
-
$ref: string;
|
|
353
|
-
definitions: {
|
|
354
|
-
CreateRelationshipInfoRequest: {
|
|
355
|
-
type: string;
|
|
356
|
-
properties: {
|
|
357
|
-
relationshipId: {
|
|
358
|
-
type: string;
|
|
359
|
-
};
|
|
360
|
-
attributes: {
|
|
361
|
-
type: string;
|
|
362
|
-
items: {
|
|
363
|
-
$ref: string;
|
|
364
|
-
};
|
|
365
|
-
};
|
|
366
|
-
isPinned: {
|
|
367
|
-
type: string;
|
|
368
|
-
};
|
|
369
|
-
title: {
|
|
370
|
-
type: string;
|
|
371
|
-
};
|
|
372
|
-
description: {
|
|
373
|
-
type: string;
|
|
374
|
-
};
|
|
375
|
-
userTitle: {
|
|
376
|
-
type: string;
|
|
377
|
-
};
|
|
378
|
-
userDescription: {
|
|
379
|
-
type: string;
|
|
380
|
-
};
|
|
381
|
-
theme: {
|
|
382
|
-
$ref: string;
|
|
383
|
-
};
|
|
384
|
-
};
|
|
385
|
-
required: string[];
|
|
386
|
-
additionalProperties: boolean;
|
|
387
|
-
};
|
|
388
|
-
RelationshipAttributeDTO: {
|
|
389
|
-
type: string;
|
|
390
|
-
properties: {
|
|
391
|
-
name: {
|
|
392
|
-
type: string;
|
|
393
|
-
};
|
|
394
|
-
content: {
|
|
395
|
-
$ref: string;
|
|
396
|
-
};
|
|
397
|
-
sharedItem: {
|
|
398
|
-
type: string;
|
|
399
|
-
};
|
|
400
|
-
};
|
|
401
|
-
required: string[];
|
|
402
|
-
additionalProperties: boolean;
|
|
403
|
-
};
|
|
404
|
-
AttributeJSON: {
|
|
405
|
-
type: string;
|
|
406
|
-
properties: {
|
|
407
|
-
"@type": {
|
|
408
|
-
type: string;
|
|
409
|
-
};
|
|
410
|
-
"@schema": {
|
|
411
|
-
type: string;
|
|
412
|
-
};
|
|
413
|
-
name: {
|
|
414
|
-
type: string;
|
|
415
|
-
};
|
|
416
|
-
value: {};
|
|
417
|
-
validFrom: {
|
|
418
|
-
type: string;
|
|
419
|
-
};
|
|
420
|
-
validTo: {
|
|
421
|
-
type: string;
|
|
422
|
-
};
|
|
423
|
-
};
|
|
424
|
-
required: string[];
|
|
425
|
-
additionalProperties: boolean;
|
|
426
|
-
};
|
|
427
|
-
RelationshipThemeDTO: {
|
|
428
|
-
type: string;
|
|
429
|
-
properties: {
|
|
430
|
-
image: {
|
|
431
|
-
type: string;
|
|
432
|
-
};
|
|
433
|
-
imageBar: {
|
|
434
|
-
type: string;
|
|
435
|
-
};
|
|
436
|
-
backgroundColor: {
|
|
437
|
-
type: string;
|
|
438
|
-
};
|
|
439
|
-
foregroundColor: {
|
|
440
|
-
type: string;
|
|
441
|
-
};
|
|
442
|
-
};
|
|
443
|
-
required: string[];
|
|
444
|
-
additionalProperties: boolean;
|
|
445
|
-
};
|
|
446
|
-
};
|
|
447
|
-
};
|
|
448
|
-
export declare const DeleteRelationshipInfoRequest: {
|
|
449
|
-
$schema: string;
|
|
450
|
-
$ref: string;
|
|
451
|
-
definitions: {
|
|
452
|
-
DeleteRelationshipInfoRequest: {
|
|
453
|
-
type: string;
|
|
454
|
-
properties: {
|
|
455
|
-
id: {
|
|
456
|
-
type: string;
|
|
457
|
-
};
|
|
458
|
-
};
|
|
459
|
-
required: string[];
|
|
460
|
-
additionalProperties: boolean;
|
|
461
|
-
};
|
|
462
|
-
};
|
|
463
|
-
};
|
|
464
|
-
export declare const DeleteRelationshipInfoByRelationshipRequest: {
|
|
465
|
-
$schema: string;
|
|
466
|
-
$ref: string;
|
|
467
|
-
definitions: {
|
|
468
|
-
DeleteRelationshipInfoByRelationshipRequest: {
|
|
469
|
-
type: string;
|
|
470
|
-
properties: {
|
|
471
|
-
relationshipId: {
|
|
472
|
-
type: string;
|
|
473
|
-
};
|
|
474
|
-
};
|
|
475
|
-
required: string[];
|
|
476
|
-
additionalProperties: boolean;
|
|
477
|
-
};
|
|
478
|
-
};
|
|
479
|
-
};
|
|
480
|
-
export declare const GetRelationshipInfoRequest: {
|
|
481
|
-
$schema: string;
|
|
482
|
-
$ref: string;
|
|
483
|
-
definitions: {
|
|
484
|
-
GetRelationshipInfoRequest: {
|
|
485
|
-
type: string;
|
|
486
|
-
properties: {
|
|
487
|
-
id: {
|
|
488
|
-
type: string;
|
|
489
|
-
};
|
|
490
|
-
};
|
|
491
|
-
required: string[];
|
|
492
|
-
additionalProperties: boolean;
|
|
493
|
-
};
|
|
494
|
-
};
|
|
495
|
-
};
|
|
496
|
-
export declare const GetRelationshipInfoByRelationshipRequest: {
|
|
497
|
-
$schema: string;
|
|
498
|
-
$ref: string;
|
|
499
|
-
definitions: {
|
|
500
|
-
GetRelationshipInfoByRelationshipRequest: {
|
|
501
|
-
type: string;
|
|
502
|
-
properties: {
|
|
503
|
-
relationshipId: {
|
|
504
|
-
type: string;
|
|
505
|
-
};
|
|
506
|
-
};
|
|
507
|
-
required: string[];
|
|
508
|
-
additionalProperties: boolean;
|
|
509
|
-
};
|
|
510
|
-
};
|
|
511
|
-
};
|
|
512
|
-
export declare const UpdateRelationshipInfoRequest: {
|
|
513
|
-
$schema: string;
|
|
514
|
-
$ref: string;
|
|
515
|
-
definitions: {
|
|
516
|
-
UpdateRelationshipInfoRequest: {
|
|
517
|
-
type: string;
|
|
518
|
-
properties: {
|
|
519
|
-
id: {
|
|
520
|
-
type: string;
|
|
521
|
-
};
|
|
522
|
-
attributes: {
|
|
523
|
-
type: string;
|
|
524
|
-
items: {
|
|
525
|
-
$ref: string;
|
|
526
|
-
};
|
|
527
|
-
};
|
|
528
|
-
isPinned: {
|
|
529
|
-
type: string;
|
|
530
|
-
};
|
|
531
|
-
title: {
|
|
532
|
-
type: string;
|
|
533
|
-
};
|
|
534
|
-
description: {
|
|
535
|
-
type: string;
|
|
536
|
-
};
|
|
537
|
-
userTitle: {
|
|
538
|
-
type: string;
|
|
539
|
-
};
|
|
540
|
-
userDescription: {
|
|
541
|
-
type: string;
|
|
542
|
-
};
|
|
543
|
-
theme: {
|
|
544
|
-
$ref: string;
|
|
545
|
-
};
|
|
546
|
-
};
|
|
547
|
-
required: string[];
|
|
548
|
-
additionalProperties: boolean;
|
|
549
|
-
description: string;
|
|
550
|
-
};
|
|
551
|
-
RelationshipAttributeDTO: {
|
|
552
|
-
type: string;
|
|
553
|
-
properties: {
|
|
554
|
-
name: {
|
|
555
|
-
type: string;
|
|
556
|
-
};
|
|
557
|
-
content: {
|
|
558
|
-
$ref: string;
|
|
559
|
-
};
|
|
560
|
-
sharedItem: {
|
|
561
|
-
type: string;
|
|
562
|
-
};
|
|
563
|
-
};
|
|
564
|
-
required: string[];
|
|
565
|
-
additionalProperties: boolean;
|
|
566
|
-
};
|
|
567
|
-
AttributeJSON: {
|
|
568
|
-
type: string;
|
|
569
|
-
properties: {
|
|
570
|
-
"@type": {
|
|
571
|
-
type: string;
|
|
572
|
-
};
|
|
573
|
-
"@schema": {
|
|
574
|
-
type: string;
|
|
575
|
-
};
|
|
576
|
-
name: {
|
|
577
|
-
type: string;
|
|
578
|
-
};
|
|
579
|
-
value: {};
|
|
580
|
-
validFrom: {
|
|
581
|
-
type: string;
|
|
582
|
-
};
|
|
583
|
-
validTo: {
|
|
584
|
-
type: string;
|
|
585
|
-
};
|
|
586
|
-
};
|
|
587
|
-
required: string[];
|
|
588
|
-
additionalProperties: boolean;
|
|
589
|
-
};
|
|
590
|
-
RelationshipThemeDTO: {
|
|
591
|
-
type: string;
|
|
592
|
-
properties: {
|
|
593
|
-
image: {
|
|
594
|
-
type: string;
|
|
595
|
-
};
|
|
596
|
-
imageBar: {
|
|
597
|
-
type: string;
|
|
598
|
-
};
|
|
599
|
-
backgroundColor: {
|
|
600
|
-
type: string;
|
|
601
|
-
};
|
|
602
|
-
foregroundColor: {
|
|
603
|
-
type: string;
|
|
604
|
-
};
|
|
605
|
-
};
|
|
606
|
-
required: string[];
|
|
607
|
-
additionalProperties: boolean;
|
|
608
|
-
};
|
|
609
|
-
};
|
|
610
|
-
};
|
|
611
|
-
export declare const CreateSettingRequest: {
|
|
612
|
-
$schema: string;
|
|
613
|
-
$ref: string;
|
|
614
|
-
definitions: {
|
|
615
|
-
CreateSettingRequest: {
|
|
616
|
-
type: string;
|
|
617
|
-
properties: {
|
|
618
|
-
key: {
|
|
619
|
-
type: string;
|
|
620
|
-
};
|
|
621
|
-
value: {};
|
|
622
|
-
reference: {
|
|
623
|
-
type: string;
|
|
624
|
-
};
|
|
625
|
-
scope: {
|
|
626
|
-
type: string;
|
|
627
|
-
};
|
|
628
|
-
succeedsAt: {
|
|
629
|
-
type: string;
|
|
630
|
-
};
|
|
631
|
-
succeedsItem: {
|
|
632
|
-
type: string;
|
|
633
|
-
};
|
|
634
|
-
};
|
|
635
|
-
required: string[];
|
|
636
|
-
additionalProperties: boolean;
|
|
637
|
-
};
|
|
638
|
-
};
|
|
639
|
-
};
|
|
640
|
-
export declare const DeleteSettingRequest: {
|
|
641
|
-
$schema: string;
|
|
642
|
-
$ref: string;
|
|
643
|
-
definitions: {
|
|
644
|
-
DeleteSettingRequest: {
|
|
645
|
-
type: string;
|
|
646
|
-
properties: {
|
|
647
|
-
id: {
|
|
648
|
-
type: string;
|
|
649
|
-
};
|
|
650
|
-
};
|
|
651
|
-
required: string[];
|
|
652
|
-
additionalProperties: boolean;
|
|
653
|
-
};
|
|
654
|
-
};
|
|
655
|
-
};
|
|
656
|
-
export declare const GetSettingRequest: {
|
|
657
|
-
$schema: string;
|
|
658
|
-
$ref: string;
|
|
659
|
-
definitions: {
|
|
660
|
-
GetSettingRequest: {
|
|
661
|
-
type: string;
|
|
662
|
-
properties: {
|
|
663
|
-
id: {
|
|
664
|
-
type: string;
|
|
665
|
-
};
|
|
666
|
-
};
|
|
667
|
-
required: string[];
|
|
668
|
-
additionalProperties: boolean;
|
|
669
|
-
};
|
|
670
|
-
};
|
|
671
|
-
};
|
|
672
|
-
export declare const GetSettingsRequest: {
|
|
673
|
-
$schema: string;
|
|
674
|
-
$ref: string;
|
|
675
|
-
definitions: {
|
|
676
|
-
GetSettingsRequest: {
|
|
677
|
-
type: string;
|
|
678
|
-
properties: {
|
|
679
|
-
query: {};
|
|
680
|
-
};
|
|
681
|
-
additionalProperties: boolean;
|
|
682
|
-
};
|
|
683
|
-
};
|
|
684
|
-
};
|
|
685
|
-
export declare const UpdateSettingRequest: {
|
|
686
|
-
$schema: string;
|
|
687
|
-
$ref: string;
|
|
688
|
-
definitions: {
|
|
689
|
-
UpdateSettingRequest: {
|
|
690
|
-
type: string;
|
|
691
|
-
properties: {
|
|
692
|
-
id: {
|
|
693
|
-
type: string;
|
|
694
|
-
};
|
|
695
|
-
value: {};
|
|
696
|
-
};
|
|
697
|
-
required: string[];
|
|
698
|
-
additionalProperties: boolean;
|
|
699
|
-
};
|
|
700
|
-
};
|
|
701
|
-
};
|
|
702
|
-
export declare const CreateSharedItemRequest: {
|
|
703
|
-
$schema: string;
|
|
704
|
-
$ref: string;
|
|
705
|
-
definitions: {
|
|
706
|
-
CreateSharedItemRequest: {
|
|
707
|
-
type: string;
|
|
708
|
-
properties: {
|
|
709
|
-
tags: {
|
|
710
|
-
type: string;
|
|
711
|
-
items: {
|
|
712
|
-
type: string;
|
|
713
|
-
};
|
|
714
|
-
};
|
|
715
|
-
sharedBy: {
|
|
716
|
-
type: string;
|
|
717
|
-
};
|
|
718
|
-
sharedWith: {
|
|
719
|
-
type: string;
|
|
720
|
-
};
|
|
721
|
-
sharedAt: {
|
|
722
|
-
type: string;
|
|
723
|
-
};
|
|
724
|
-
reference: {
|
|
725
|
-
type: string;
|
|
726
|
-
};
|
|
727
|
-
content: {};
|
|
728
|
-
succeedsItem: {
|
|
729
|
-
type: string;
|
|
730
|
-
};
|
|
731
|
-
succeedsAt: {
|
|
732
|
-
type: string;
|
|
733
|
-
};
|
|
734
|
-
expiresAt: {
|
|
735
|
-
type: string;
|
|
736
|
-
};
|
|
737
|
-
};
|
|
738
|
-
required: string[];
|
|
739
|
-
additionalProperties: boolean;
|
|
740
|
-
};
|
|
741
|
-
};
|
|
742
|
-
};
|
|
743
|
-
export declare const DeleteSharedItemRequest: {
|
|
744
|
-
$schema: string;
|
|
745
|
-
$ref: string;
|
|
746
|
-
definitions: {
|
|
747
|
-
DeleteSharedItemRequest: {
|
|
748
|
-
type: string;
|
|
749
|
-
properties: {
|
|
750
|
-
id: {
|
|
751
|
-
type: string;
|
|
752
|
-
};
|
|
753
|
-
};
|
|
754
|
-
required: string[];
|
|
755
|
-
additionalProperties: boolean;
|
|
756
|
-
};
|
|
757
|
-
};
|
|
758
|
-
};
|
|
759
|
-
export declare const GetSharedItemRequest: {
|
|
760
|
-
$schema: string;
|
|
761
|
-
$ref: string;
|
|
762
|
-
definitions: {
|
|
763
|
-
GetSharedItemRequest: {
|
|
764
|
-
type: string;
|
|
765
|
-
properties: {
|
|
766
|
-
id: {
|
|
767
|
-
type: string;
|
|
768
|
-
};
|
|
769
|
-
};
|
|
770
|
-
required: string[];
|
|
771
|
-
additionalProperties: boolean;
|
|
772
|
-
};
|
|
773
|
-
};
|
|
774
|
-
};
|
|
775
|
-
export declare const GetSharedItemsRequest: {
|
|
776
|
-
$schema: string;
|
|
777
|
-
$ref: string;
|
|
778
|
-
definitions: {
|
|
779
|
-
GetSharedItemsRequest: {
|
|
780
|
-
type: string;
|
|
781
|
-
properties: {
|
|
782
|
-
query: {};
|
|
783
|
-
};
|
|
784
|
-
additionalProperties: boolean;
|
|
785
|
-
};
|
|
786
|
-
};
|
|
787
|
-
};
|
|
788
|
-
export declare const GetSharedItemsByAddressRequest: {
|
|
789
|
-
$schema: string;
|
|
790
|
-
$ref: string;
|
|
791
|
-
definitions: {
|
|
792
|
-
GetSharedItemsByAddressRequest: {
|
|
793
|
-
type: string;
|
|
794
|
-
properties: {
|
|
795
|
-
address: {
|
|
796
|
-
type: string;
|
|
797
|
-
};
|
|
798
|
-
};
|
|
799
|
-
required: string[];
|
|
800
|
-
additionalProperties: boolean;
|
|
801
|
-
};
|
|
802
|
-
};
|
|
803
|
-
};
|
|
804
|
-
export declare const GetSharedItemsByReferenceRequest: {
|
|
805
|
-
$schema: string;
|
|
806
|
-
$ref: string;
|
|
807
|
-
definitions: {
|
|
808
|
-
GetSharedItemsByReferenceRequest: {
|
|
809
|
-
type: string;
|
|
810
|
-
properties: {
|
|
811
|
-
reference: {
|
|
812
|
-
type: string;
|
|
813
|
-
};
|
|
814
|
-
};
|
|
815
|
-
required: string[];
|
|
816
|
-
additionalProperties: boolean;
|
|
817
|
-
};
|
|
818
|
-
};
|
|
819
|
-
};
|
|
820
|
-
export declare const GetSharedItemsSharedByAddressRequest: {
|
|
821
|
-
$schema: string;
|
|
822
|
-
$ref: string;
|
|
823
|
-
definitions: {
|
|
824
|
-
GetSharedItemsSharedByAddressRequest: {
|
|
825
|
-
type: string;
|
|
826
|
-
properties: {
|
|
827
|
-
address: {
|
|
828
|
-
type: string;
|
|
829
|
-
};
|
|
830
|
-
};
|
|
831
|
-
required: string[];
|
|
832
|
-
additionalProperties: boolean;
|
|
833
|
-
};
|
|
834
|
-
};
|
|
835
|
-
};
|
|
836
|
-
export declare const GetSharedItemsSharedWithAddressRequest: {
|
|
837
|
-
$schema: string;
|
|
838
|
-
$ref: string;
|
|
839
|
-
definitions: {
|
|
840
|
-
GetSharedItemsSharedWithAddressRequest: {
|
|
841
|
-
type: string;
|
|
842
|
-
properties: {
|
|
843
|
-
address: {
|
|
844
|
-
type: string;
|
|
845
|
-
};
|
|
846
|
-
};
|
|
847
|
-
required: string[];
|
|
848
|
-
additionalProperties: boolean;
|
|
849
|
-
};
|
|
850
|
-
};
|
|
851
|
-
};
|
|
852
|
-
export declare const UpdateSharedItemRequest: {
|
|
853
|
-
$schema: string;
|
|
854
|
-
$ref: string;
|
|
855
|
-
definitions: {
|
|
856
|
-
UpdateSharedItemRequest: {
|
|
857
|
-
type: string;
|
|
858
|
-
properties: {
|
|
859
|
-
id: {
|
|
860
|
-
type: string;
|
|
861
|
-
};
|
|
862
|
-
content: {};
|
|
863
|
-
};
|
|
864
|
-
required: string[];
|
|
865
|
-
additionalProperties: boolean;
|
|
866
|
-
};
|
|
867
|
-
};
|
|
868
|
-
};
|
|
869
|
-
export declare const RegisterPushNotificationTokenRequest: {
|
|
870
|
-
$schema: string;
|
|
871
|
-
$ref: string;
|
|
872
|
-
definitions: {
|
|
873
|
-
RegisterPushNotificationTokenRequest: {
|
|
874
|
-
type: string;
|
|
875
|
-
properties: {
|
|
876
|
-
handle: {
|
|
877
|
-
type: string;
|
|
878
|
-
};
|
|
879
|
-
installationId: {
|
|
880
|
-
type: string;
|
|
881
|
-
};
|
|
882
|
-
platform: {
|
|
883
|
-
type: string;
|
|
884
|
-
};
|
|
885
|
-
};
|
|
886
|
-
required: string[];
|
|
887
|
-
additionalProperties: boolean;
|
|
888
|
-
};
|
|
889
|
-
};
|
|
890
|
-
};
|
|
891
|
-
export declare const CreateDeviceRequest: {
|
|
892
|
-
$schema: string;
|
|
893
|
-
$ref: string;
|
|
894
|
-
definitions: {
|
|
895
|
-
CreateDeviceRequest: {
|
|
896
|
-
type: string;
|
|
897
|
-
properties: {
|
|
898
|
-
name: {
|
|
899
|
-
type: string;
|
|
900
|
-
};
|
|
901
|
-
description: {
|
|
902
|
-
type: string;
|
|
903
|
-
};
|
|
904
|
-
isAdmin: {
|
|
905
|
-
type: string;
|
|
906
|
-
};
|
|
907
|
-
};
|
|
908
|
-
additionalProperties: boolean;
|
|
909
|
-
};
|
|
910
|
-
};
|
|
911
|
-
};
|
|
912
|
-
export declare const CreateDeviceOnboardingTokenRequest: {
|
|
913
|
-
$schema: string;
|
|
914
|
-
$ref: string;
|
|
915
|
-
definitions: {
|
|
916
|
-
CreateDeviceOnboardingTokenRequest: {
|
|
917
|
-
type: string;
|
|
918
|
-
properties: {
|
|
919
|
-
id: {
|
|
920
|
-
type: string;
|
|
921
|
-
};
|
|
922
|
-
expiresAt: {
|
|
923
|
-
type: string;
|
|
924
|
-
};
|
|
925
|
-
};
|
|
926
|
-
required: string[];
|
|
927
|
-
additionalProperties: boolean;
|
|
928
|
-
};
|
|
929
|
-
};
|
|
930
|
-
};
|
|
931
|
-
export declare const DeleteDeviceRequest: {
|
|
932
|
-
$schema: string;
|
|
933
|
-
$ref: string;
|
|
934
|
-
definitions: {
|
|
935
|
-
DeleteDeviceRequest: {
|
|
936
|
-
type: string;
|
|
937
|
-
properties: {
|
|
938
|
-
id: {
|
|
939
|
-
type: string;
|
|
940
|
-
};
|
|
941
|
-
};
|
|
942
|
-
required: string[];
|
|
943
|
-
additionalProperties: boolean;
|
|
944
|
-
};
|
|
945
|
-
};
|
|
946
|
-
};
|
|
947
|
-
export declare const GetDeviceRequest: {
|
|
948
|
-
$schema: string;
|
|
949
|
-
$ref: string;
|
|
950
|
-
definitions: {
|
|
951
|
-
GetDeviceRequest: {
|
|
952
|
-
type: string;
|
|
953
|
-
properties: {
|
|
954
|
-
id: {
|
|
955
|
-
type: string;
|
|
956
|
-
};
|
|
957
|
-
};
|
|
958
|
-
required: string[];
|
|
959
|
-
additionalProperties: boolean;
|
|
960
|
-
};
|
|
961
|
-
};
|
|
962
|
-
};
|
|
963
|
-
export declare const GetDeviceOnboardingInfoRequest: {
|
|
964
|
-
$schema: string;
|
|
965
|
-
$ref: string;
|
|
966
|
-
definitions: {
|
|
967
|
-
GetDeviceOnboardingInfoRequest: {
|
|
968
|
-
type: string;
|
|
969
|
-
properties: {
|
|
970
|
-
id: {
|
|
971
|
-
type: string;
|
|
972
|
-
};
|
|
973
|
-
};
|
|
974
|
-
required: string[];
|
|
975
|
-
additionalProperties: boolean;
|
|
976
|
-
};
|
|
977
|
-
};
|
|
978
|
-
};
|
|
979
|
-
export declare const UpdateDeviceRequest: {
|
|
980
|
-
$schema: string;
|
|
981
|
-
$ref: string;
|
|
982
|
-
definitions: {
|
|
983
|
-
UpdateDeviceRequest: {
|
|
984
|
-
type: string;
|
|
985
|
-
properties: {
|
|
986
|
-
id: {
|
|
987
|
-
type: string;
|
|
988
|
-
};
|
|
989
|
-
name: {
|
|
990
|
-
type: string;
|
|
991
|
-
};
|
|
992
|
-
description: {
|
|
993
|
-
type: string;
|
|
994
|
-
};
|
|
995
|
-
};
|
|
996
|
-
required: string[];
|
|
997
|
-
additionalProperties: boolean;
|
|
998
|
-
};
|
|
999
|
-
};
|
|
1000
|
-
};
|
|
1001
|
-
export declare const CreateTokenForFileRequest: {
|
|
1002
|
-
$schema: string;
|
|
1003
|
-
$ref: string;
|
|
1004
|
-
definitions: {
|
|
1005
|
-
CreateTokenForFileRequest: {
|
|
1006
|
-
type: string;
|
|
1007
|
-
properties: {
|
|
1008
|
-
fileId: {
|
|
1009
|
-
type: string;
|
|
1010
|
-
format: string;
|
|
1011
|
-
};
|
|
1012
|
-
expiresAt: {
|
|
1013
|
-
type: string;
|
|
1014
|
-
format: string;
|
|
1015
|
-
};
|
|
1016
|
-
ephemeral: {
|
|
1017
|
-
type: string;
|
|
1018
|
-
};
|
|
1019
|
-
};
|
|
1020
|
-
required: string[];
|
|
1021
|
-
additionalProperties: boolean;
|
|
1022
|
-
};
|
|
1023
|
-
};
|
|
1024
|
-
};
|
|
1025
|
-
export declare const CreateTokenQrCodeForFileRequest: {
|
|
1026
|
-
$schema: string;
|
|
1027
|
-
$ref: string;
|
|
1028
|
-
definitions: {
|
|
1029
|
-
CreateTokenQrCodeForFileRequest: {
|
|
1030
|
-
type: string;
|
|
1031
|
-
properties: {
|
|
1032
|
-
fileId: {
|
|
1033
|
-
type: string;
|
|
1034
|
-
format: string;
|
|
1035
|
-
};
|
|
1036
|
-
expiresAt: {
|
|
1037
|
-
type: string;
|
|
1038
|
-
format: string;
|
|
1039
|
-
};
|
|
1040
|
-
};
|
|
1041
|
-
required: string[];
|
|
1042
|
-
additionalProperties: boolean;
|
|
1043
|
-
};
|
|
1044
|
-
};
|
|
1045
|
-
};
|
|
1046
|
-
export declare const DownloadFileRequest: {
|
|
1047
|
-
$schema: string;
|
|
1048
|
-
$ref: string;
|
|
1049
|
-
definitions: {
|
|
1050
|
-
DownloadFileRequest: {
|
|
1051
|
-
type: string;
|
|
1052
|
-
properties: {
|
|
1053
|
-
id: {
|
|
1054
|
-
type: string;
|
|
1055
|
-
format: string;
|
|
1056
|
-
};
|
|
1057
|
-
};
|
|
1058
|
-
required: string[];
|
|
1059
|
-
additionalProperties: boolean;
|
|
1060
|
-
};
|
|
1061
|
-
};
|
|
1062
|
-
};
|
|
1063
|
-
export declare const GetFileRequest: {
|
|
1064
|
-
$schema: string;
|
|
1065
|
-
$ref: string;
|
|
1066
|
-
definitions: {
|
|
1067
|
-
GetFileRequest: {
|
|
1068
|
-
type: string;
|
|
1069
|
-
properties: {
|
|
1070
|
-
id: {
|
|
1071
|
-
type: string;
|
|
1072
|
-
format: string;
|
|
1073
|
-
};
|
|
1074
|
-
};
|
|
1075
|
-
required: string[];
|
|
1076
|
-
additionalProperties: boolean;
|
|
1077
|
-
};
|
|
1078
|
-
};
|
|
1079
|
-
};
|
|
1080
|
-
export declare const GetFilesRequest: {
|
|
1081
|
-
$schema: string;
|
|
1082
|
-
$ref: string;
|
|
1083
|
-
definitions: {
|
|
1084
|
-
GetFilesRequest: {
|
|
1085
|
-
type: string;
|
|
1086
|
-
properties: {
|
|
1087
|
-
query: {};
|
|
1088
|
-
ownerRestriction: {
|
|
1089
|
-
$ref: string;
|
|
1090
|
-
};
|
|
1091
|
-
};
|
|
1092
|
-
additionalProperties: boolean;
|
|
1093
|
-
};
|
|
1094
|
-
OwnerRestriction: {
|
|
1095
|
-
type: string;
|
|
1096
|
-
enum: string[];
|
|
1097
|
-
};
|
|
1098
|
-
};
|
|
1099
|
-
};
|
|
1100
|
-
export declare const LoadPeerFileRequest: {
|
|
1101
|
-
$schema: string;
|
|
1102
|
-
$ref: string;
|
|
1103
|
-
definitions: {
|
|
1104
|
-
LoadPeerFileRequest: {
|
|
1105
|
-
type: string;
|
|
1106
|
-
properties: {
|
|
1107
|
-
id: {
|
|
1108
|
-
type: string;
|
|
1109
|
-
format: string;
|
|
1110
|
-
};
|
|
1111
|
-
secretKey: {
|
|
1112
|
-
type: string;
|
|
1113
|
-
};
|
|
1114
|
-
reference: {
|
|
1115
|
-
type: string;
|
|
1116
|
-
};
|
|
1117
|
-
};
|
|
1118
|
-
additionalProperties: boolean;
|
|
1119
|
-
};
|
|
1120
|
-
};
|
|
1121
|
-
};
|
|
1122
|
-
export declare const UploadOwnFileRequest: {
|
|
1123
|
-
$schema: string;
|
|
1124
|
-
$ref: string;
|
|
1125
|
-
definitions: {
|
|
1126
|
-
UploadOwnFileRequest: {
|
|
1127
|
-
type: string;
|
|
1128
|
-
properties: {
|
|
1129
|
-
content: {
|
|
1130
|
-
type: string;
|
|
1131
|
-
properties: {
|
|
1132
|
-
BYTES_PER_ELEMENT: {
|
|
1133
|
-
type: string;
|
|
1134
|
-
};
|
|
1135
|
-
buffer: {
|
|
1136
|
-
type: string;
|
|
1137
|
-
properties: {
|
|
1138
|
-
byteLength: {
|
|
1139
|
-
type: string;
|
|
1140
|
-
};
|
|
1141
|
-
};
|
|
1142
|
-
required: string[];
|
|
1143
|
-
additionalProperties: boolean;
|
|
1144
|
-
};
|
|
1145
|
-
byteLength: {
|
|
1146
|
-
type: string;
|
|
1147
|
-
};
|
|
1148
|
-
byteOffset: {
|
|
1149
|
-
type: string;
|
|
1150
|
-
};
|
|
1151
|
-
length: {
|
|
1152
|
-
type: string;
|
|
1153
|
-
};
|
|
1154
|
-
};
|
|
1155
|
-
required: string[];
|
|
1156
|
-
additionalProperties: {
|
|
1157
|
-
type: string;
|
|
1158
|
-
};
|
|
1159
|
-
};
|
|
1160
|
-
filename: {
|
|
1161
|
-
type: string;
|
|
1162
|
-
};
|
|
1163
|
-
mimetype: {
|
|
1164
|
-
type: string;
|
|
1165
|
-
};
|
|
1166
|
-
expiresAt: {
|
|
1167
|
-
type: string;
|
|
1168
|
-
};
|
|
1169
|
-
title: {
|
|
1170
|
-
type: string;
|
|
1171
|
-
};
|
|
1172
|
-
description: {
|
|
1173
|
-
type: string;
|
|
1174
|
-
};
|
|
1175
|
-
};
|
|
1176
|
-
required: string[];
|
|
1177
|
-
additionalProperties: boolean;
|
|
1178
|
-
};
|
|
1179
|
-
};
|
|
1180
|
-
};
|
|
1181
|
-
export declare const CheckIdentityRequest: {
|
|
1182
|
-
$schema: string;
|
|
1183
|
-
$ref: string;
|
|
1184
|
-
definitions: {
|
|
1185
|
-
CheckIdentityRequest: {
|
|
1186
|
-
type: string;
|
|
1187
|
-
properties: {
|
|
1188
|
-
address: {
|
|
1189
|
-
type: string;
|
|
1190
|
-
};
|
|
1191
|
-
};
|
|
1192
|
-
required: string[];
|
|
1193
|
-
additionalProperties: boolean;
|
|
1194
|
-
};
|
|
1195
|
-
};
|
|
1196
|
-
};
|
|
1197
|
-
export declare const DownloadAttachmentRequest: {
|
|
1198
|
-
$schema: string;
|
|
1199
|
-
$ref: string;
|
|
1200
|
-
definitions: {
|
|
1201
|
-
DownloadAttachmentRequest: {
|
|
1202
|
-
type: string;
|
|
1203
|
-
properties: {
|
|
1204
|
-
id: {
|
|
1205
|
-
type: string;
|
|
1206
|
-
};
|
|
1207
|
-
attachmentId: {
|
|
1208
|
-
type: string;
|
|
1209
|
-
};
|
|
1210
|
-
};
|
|
1211
|
-
required: string[];
|
|
1212
|
-
additionalProperties: boolean;
|
|
1213
|
-
};
|
|
1214
|
-
};
|
|
1215
|
-
};
|
|
1216
|
-
export declare const GetAttachmentMetadataRequest: {
|
|
1217
|
-
$schema: string;
|
|
1218
|
-
$ref: string;
|
|
1219
|
-
definitions: {
|
|
1220
|
-
GetAttachmentMetadataRequest: {
|
|
1221
|
-
type: string;
|
|
1222
|
-
properties: {
|
|
1223
|
-
id: {
|
|
1224
|
-
type: string;
|
|
1225
|
-
};
|
|
1226
|
-
attachmentId: {
|
|
1227
|
-
type: string;
|
|
1228
|
-
};
|
|
1229
|
-
};
|
|
1230
|
-
required: string[];
|
|
1231
|
-
additionalProperties: boolean;
|
|
1232
|
-
};
|
|
1233
|
-
};
|
|
1234
|
-
};
|
|
1235
|
-
export declare const GetMessageRequest: {
|
|
1236
|
-
$schema: string;
|
|
1237
|
-
$ref: string;
|
|
1238
|
-
definitions: {
|
|
1239
|
-
GetMessageRequest: {
|
|
1240
|
-
type: string;
|
|
1241
|
-
properties: {
|
|
1242
|
-
id: {
|
|
1243
|
-
type: string;
|
|
1244
|
-
};
|
|
1245
|
-
};
|
|
1246
|
-
required: string[];
|
|
1247
|
-
additionalProperties: boolean;
|
|
1248
|
-
};
|
|
1249
|
-
};
|
|
1250
|
-
};
|
|
1251
|
-
export declare const GetMessagesRequest: {
|
|
1252
|
-
$schema: string;
|
|
1253
|
-
$ref: string;
|
|
1254
|
-
definitions: {
|
|
1255
|
-
GetMessagesRequest: {
|
|
1256
|
-
type: string;
|
|
1257
|
-
properties: {
|
|
1258
|
-
query: {};
|
|
1259
|
-
};
|
|
1260
|
-
additionalProperties: boolean;
|
|
1261
|
-
};
|
|
1262
|
-
};
|
|
1263
|
-
};
|
|
1264
|
-
export declare const SendMessageRequest: {
|
|
1265
|
-
$schema: string;
|
|
1266
|
-
$ref: string;
|
|
1267
|
-
definitions: {
|
|
1268
|
-
SendMessageRequest: {
|
|
1269
|
-
type: string;
|
|
1270
|
-
properties: {
|
|
1271
|
-
recipients: {
|
|
1272
|
-
type: string;
|
|
1273
|
-
items: {
|
|
1274
|
-
type: string;
|
|
1275
|
-
};
|
|
1276
|
-
};
|
|
1277
|
-
content: {};
|
|
1278
|
-
attachments: {
|
|
1279
|
-
type: string;
|
|
1280
|
-
items: {
|
|
1281
|
-
type: string;
|
|
1282
|
-
};
|
|
1283
|
-
};
|
|
1284
|
-
};
|
|
1285
|
-
required: string[];
|
|
1286
|
-
additionalProperties: boolean;
|
|
1287
|
-
};
|
|
1288
|
-
};
|
|
1289
|
-
};
|
|
1290
|
-
export declare const AcceptRelationshipChangeRequest: {
|
|
1291
|
-
$schema: string;
|
|
1292
|
-
$ref: string;
|
|
1293
|
-
definitions: {
|
|
1294
|
-
AcceptRelationshipChangeRequest: {
|
|
1295
|
-
type: string;
|
|
1296
|
-
properties: {
|
|
1297
|
-
relationshipId: {
|
|
1298
|
-
type: string;
|
|
1299
|
-
};
|
|
1300
|
-
changeId: {
|
|
1301
|
-
type: string;
|
|
1302
|
-
};
|
|
1303
|
-
content: {};
|
|
1304
|
-
};
|
|
1305
|
-
required: string[];
|
|
1306
|
-
additionalProperties: boolean;
|
|
1307
|
-
};
|
|
1308
|
-
};
|
|
1309
|
-
};
|
|
1310
|
-
export declare const CreateRelationshipRequest: {
|
|
1311
|
-
$schema: string;
|
|
1312
|
-
$ref: string;
|
|
1313
|
-
definitions: {
|
|
1314
|
-
CreateRelationshipRequest: {
|
|
1315
|
-
type: string;
|
|
1316
|
-
properties: {
|
|
1317
|
-
templateId: {
|
|
1318
|
-
type: string;
|
|
1319
|
-
};
|
|
1320
|
-
content: {};
|
|
1321
|
-
};
|
|
1322
|
-
required: string[];
|
|
1323
|
-
additionalProperties: boolean;
|
|
1324
|
-
};
|
|
1325
|
-
};
|
|
1326
|
-
};
|
|
1327
|
-
export declare const CreateRelationshipChangeRequest: {
|
|
1328
|
-
$schema: string;
|
|
1329
|
-
$ref: string;
|
|
1330
|
-
definitions: {
|
|
1331
|
-
CreateRelationshipChangeRequest: {
|
|
1332
|
-
type: string;
|
|
1333
|
-
properties: {
|
|
1334
|
-
id: {
|
|
1335
|
-
type: string;
|
|
1336
|
-
};
|
|
1337
|
-
content: {};
|
|
1338
|
-
};
|
|
1339
|
-
required: string[];
|
|
1340
|
-
additionalProperties: boolean;
|
|
1341
|
-
};
|
|
1342
|
-
};
|
|
1343
|
-
};
|
|
1344
|
-
export declare const GetRelationshipRequest: {
|
|
1345
|
-
$schema: string;
|
|
1346
|
-
$ref: string;
|
|
1347
|
-
definitions: {
|
|
1348
|
-
GetRelationshipRequest: {
|
|
1349
|
-
type: string;
|
|
1350
|
-
properties: {
|
|
1351
|
-
id: {
|
|
1352
|
-
type: string;
|
|
1353
|
-
};
|
|
1354
|
-
};
|
|
1355
|
-
required: string[];
|
|
1356
|
-
additionalProperties: boolean;
|
|
1357
|
-
};
|
|
1358
|
-
};
|
|
1359
|
-
};
|
|
1360
|
-
export declare const GetRelationshipByAddressRequest: {
|
|
1361
|
-
$schema: string;
|
|
1362
|
-
$ref: string;
|
|
1363
|
-
definitions: {
|
|
1364
|
-
GetRelationshipByAddressRequest: {
|
|
1365
|
-
type: string;
|
|
1366
|
-
properties: {
|
|
1367
|
-
address: {
|
|
1368
|
-
type: string;
|
|
1369
|
-
};
|
|
1370
|
-
};
|
|
1371
|
-
required: string[];
|
|
1372
|
-
additionalProperties: boolean;
|
|
1373
|
-
};
|
|
1374
|
-
};
|
|
1375
|
-
};
|
|
1376
|
-
export declare const GetRelationshipsRequest: {
|
|
1377
|
-
$schema: string;
|
|
1378
|
-
$ref: string;
|
|
1379
|
-
definitions: {
|
|
1380
|
-
GetRelationshipsRequest: {
|
|
1381
|
-
type: string;
|
|
1382
|
-
properties: {
|
|
1383
|
-
query: {};
|
|
1384
|
-
};
|
|
1385
|
-
additionalProperties: boolean;
|
|
1386
|
-
};
|
|
1387
|
-
};
|
|
1388
|
-
};
|
|
1389
|
-
export declare const RejectRelationshipChangeRequest: {
|
|
1390
|
-
$schema: string;
|
|
1391
|
-
$ref: string;
|
|
1392
|
-
definitions: {
|
|
1393
|
-
RejectRelationshipChangeRequest: {
|
|
1394
|
-
type: string;
|
|
1395
|
-
properties: {
|
|
1396
|
-
relationshipId: {
|
|
1397
|
-
type: string;
|
|
1398
|
-
};
|
|
1399
|
-
changeId: {
|
|
1400
|
-
type: string;
|
|
1401
|
-
};
|
|
1402
|
-
content: {};
|
|
1403
|
-
};
|
|
1404
|
-
required: string[];
|
|
1405
|
-
additionalProperties: boolean;
|
|
1406
|
-
};
|
|
1407
|
-
};
|
|
1408
|
-
};
|
|
1409
|
-
export declare const RevokeRelationshipChangeRequest: {
|
|
1410
|
-
$schema: string;
|
|
1411
|
-
$ref: string;
|
|
1412
|
-
definitions: {
|
|
1413
|
-
RevokeRelationshipChangeRequest: {
|
|
1414
|
-
type: string;
|
|
1415
|
-
properties: {
|
|
1416
|
-
relationshipId: {
|
|
1417
|
-
type: string;
|
|
1418
|
-
};
|
|
1419
|
-
changeId: {
|
|
1420
|
-
type: string;
|
|
1421
|
-
};
|
|
1422
|
-
content: {};
|
|
1423
|
-
};
|
|
1424
|
-
required: string[];
|
|
1425
|
-
additionalProperties: boolean;
|
|
1426
|
-
};
|
|
1427
|
-
};
|
|
1428
|
-
};
|
|
1429
|
-
export declare const CreateOwnRelationshipTemplateRequest: {
|
|
1430
|
-
$schema: string;
|
|
1431
|
-
$ref: string;
|
|
1432
|
-
definitions: {
|
|
1433
|
-
CreateOwnRelationshipTemplateRequest: {
|
|
1434
|
-
type: string;
|
|
1435
|
-
properties: {
|
|
1436
|
-
expiresAt: {
|
|
1437
|
-
type: string;
|
|
1438
|
-
};
|
|
1439
|
-
content: {};
|
|
1440
|
-
maxNumberOfRelationships: {
|
|
1441
|
-
type: string;
|
|
1442
|
-
};
|
|
1443
|
-
};
|
|
1444
|
-
required: string[];
|
|
1445
|
-
additionalProperties: boolean;
|
|
1446
|
-
};
|
|
1447
|
-
};
|
|
1448
|
-
};
|
|
1449
|
-
export declare const GetRelationshipTemplateRequest: {
|
|
1450
|
-
$schema: string;
|
|
1451
|
-
$ref: string;
|
|
1452
|
-
definitions: {
|
|
1453
|
-
GetRelationshipTemplateRequest: {
|
|
1454
|
-
type: string;
|
|
1455
|
-
properties: {
|
|
1456
|
-
id: {
|
|
1457
|
-
type: string;
|
|
1458
|
-
};
|
|
1459
|
-
};
|
|
1460
|
-
required: string[];
|
|
1461
|
-
additionalProperties: boolean;
|
|
1462
|
-
};
|
|
1463
|
-
};
|
|
1464
|
-
};
|
|
1465
|
-
export declare const GetRelationshipTemplatesRequest: {
|
|
1466
|
-
$schema: string;
|
|
1467
|
-
$ref: string;
|
|
1468
|
-
definitions: {
|
|
1469
|
-
GetRelationshipTemplatesRequest: {
|
|
1470
|
-
type: string;
|
|
1471
|
-
properties: {
|
|
1472
|
-
query: {};
|
|
1473
|
-
ownerRestriction: {
|
|
1474
|
-
$ref: string;
|
|
1475
|
-
};
|
|
1476
|
-
};
|
|
1477
|
-
additionalProperties: boolean;
|
|
1478
|
-
};
|
|
1479
|
-
OwnerRestriction: {
|
|
1480
|
-
type: string;
|
|
1481
|
-
enum: string[];
|
|
1482
|
-
};
|
|
1483
|
-
};
|
|
1484
|
-
};
|
|
1485
|
-
export declare const LoadPeerRelationshipTemplateRequest: {
|
|
1486
|
-
$schema: string;
|
|
1487
|
-
$ref: string;
|
|
1488
|
-
definitions: {
|
|
1489
|
-
LoadPeerRelationshipTemplateRequest: {
|
|
1490
|
-
type: string;
|
|
1491
|
-
properties: {
|
|
1492
|
-
id: {
|
|
1493
|
-
type: string;
|
|
1494
|
-
};
|
|
1495
|
-
secretKey: {
|
|
1496
|
-
type: string;
|
|
1497
|
-
};
|
|
1498
|
-
reference: {
|
|
1499
|
-
type: string;
|
|
1500
|
-
};
|
|
1501
|
-
};
|
|
1502
|
-
additionalProperties: boolean;
|
|
1503
|
-
};
|
|
1504
|
-
};
|
|
1505
|
-
};
|
|
1506
|
-
export declare const CreateOwnTokenRequest: {
|
|
1507
|
-
$schema: string;
|
|
1508
|
-
$ref: string;
|
|
1509
|
-
definitions: {
|
|
1510
|
-
CreateOwnTokenRequest: {
|
|
1511
|
-
type: string;
|
|
1512
|
-
properties: {
|
|
1513
|
-
content: {};
|
|
1514
|
-
expiresAt: {
|
|
1515
|
-
type: string;
|
|
1516
|
-
};
|
|
1517
|
-
ephemeral: {
|
|
1518
|
-
type: string;
|
|
1519
|
-
};
|
|
1520
|
-
};
|
|
1521
|
-
required: string[];
|
|
1522
|
-
additionalProperties: boolean;
|
|
1523
|
-
};
|
|
1524
|
-
};
|
|
1525
|
-
};
|
|
1526
|
-
export declare const GetQRCodeForTokenRequest: {
|
|
1527
|
-
$schema: string;
|
|
1528
|
-
$ref: string;
|
|
1529
|
-
definitions: {
|
|
1530
|
-
GetQRCodeForTokenRequest: {
|
|
1531
|
-
type: string;
|
|
1532
|
-
properties: {
|
|
1533
|
-
id: {
|
|
1534
|
-
type: string;
|
|
1535
|
-
};
|
|
1536
|
-
};
|
|
1537
|
-
required: string[];
|
|
1538
|
-
additionalProperties: boolean;
|
|
1539
|
-
};
|
|
1540
|
-
};
|
|
1541
|
-
};
|
|
1542
|
-
export declare const GetTokenRequest: {
|
|
1543
|
-
$schema: string;
|
|
1544
|
-
$ref: string;
|
|
1545
|
-
definitions: {
|
|
1546
|
-
GetTokenRequest: {
|
|
1547
|
-
type: string;
|
|
1548
|
-
properties: {
|
|
1549
|
-
id: {
|
|
1550
|
-
type: string;
|
|
1551
|
-
};
|
|
1552
|
-
};
|
|
1553
|
-
required: string[];
|
|
1554
|
-
additionalProperties: boolean;
|
|
1555
|
-
};
|
|
1556
|
-
};
|
|
1557
|
-
};
|
|
1558
|
-
export declare const GetTokensRequest: {
|
|
1559
|
-
$schema: string;
|
|
1560
|
-
$ref: string;
|
|
1561
|
-
definitions: {
|
|
1562
|
-
GetTokensRequest: {
|
|
1563
|
-
type: string;
|
|
1564
|
-
properties: {
|
|
1565
|
-
query: {};
|
|
1566
|
-
ownerRestriction: {
|
|
1567
|
-
$ref: string;
|
|
1568
|
-
};
|
|
1569
|
-
};
|
|
1570
|
-
additionalProperties: boolean;
|
|
1571
|
-
};
|
|
1572
|
-
OwnerRestriction: {
|
|
1573
|
-
type: string;
|
|
1574
|
-
enum: string[];
|
|
1575
|
-
};
|
|
1576
|
-
};
|
|
1577
|
-
};
|
|
1578
|
-
export declare const LoadPeerTokenRequest: {
|
|
1579
|
-
$schema: string;
|
|
1580
|
-
$ref: string;
|
|
1581
|
-
definitions: {
|
|
1582
|
-
LoadPeerTokenRequest: {
|
|
1583
|
-
type: string;
|
|
1584
|
-
properties: {
|
|
1585
|
-
id: {
|
|
1586
|
-
type: string;
|
|
1587
|
-
};
|
|
1588
|
-
secretKey: {
|
|
1589
|
-
type: string;
|
|
1590
|
-
};
|
|
1591
|
-
reference: {
|
|
1592
|
-
type: string;
|
|
1593
|
-
};
|
|
1594
|
-
ephemeral: {
|
|
1595
|
-
type: string;
|
|
1596
|
-
};
|
|
1597
|
-
};
|
|
1598
|
-
required: string[];
|
|
1599
|
-
additionalProperties: boolean;
|
|
1600
|
-
};
|
|
1601
|
-
};
|
|
1602
|
-
};
|
|
1
|
+
export declare const LoadPeerTokenAnonymousByIdAndKeyRequest: any;
|
|
2
|
+
export declare const LoadPeerTokenAnonymousByTruncatedReferenceRequest: any;
|
|
3
|
+
export declare const GetAttributesByNameRequest: any;
|
|
4
|
+
export declare const CreateAttributeRequest: any;
|
|
5
|
+
export declare const DeleteAttributeRequest: any;
|
|
6
|
+
export declare const DeleteAttributeByNameRequest: any;
|
|
7
|
+
export declare const GetAttributeRequest: any;
|
|
8
|
+
export declare const GetAttributeByNameRequest: any;
|
|
9
|
+
export declare const GetAttributesRequest: any;
|
|
10
|
+
export declare const GetHistoryByNameRequest: any;
|
|
11
|
+
export declare const SucceedAttributeRequest: any;
|
|
12
|
+
export declare const UpdateAttributeRequest: any;
|
|
13
|
+
export declare const CreateDraftRequest: any;
|
|
14
|
+
export declare const DeleteDraftRequest: any;
|
|
15
|
+
export declare const GetDraftRequest: any;
|
|
16
|
+
export declare const GetDraftsRequest: any;
|
|
17
|
+
export declare const UpdateDraftRequest: any;
|
|
18
|
+
export declare const CreateRelationshipInfoRequest: any;
|
|
19
|
+
export declare const DeleteRelationshipInfoRequest: any;
|
|
20
|
+
export declare const DeleteRelationshipInfoByRelationshipRequest: any;
|
|
21
|
+
export declare const GetRelationshipInfoRequest: any;
|
|
22
|
+
export declare const GetRelationshipInfoByRelationshipRequest: any;
|
|
23
|
+
export declare const UpdateRelationshipInfoRequest: any;
|
|
24
|
+
export declare const CreateSettingRequest: any;
|
|
25
|
+
export declare const DeleteSettingRequest: any;
|
|
26
|
+
export declare const GetSettingRequest: any;
|
|
27
|
+
export declare const GetSettingsRequest: any;
|
|
28
|
+
export declare const UpdateSettingRequest: any;
|
|
29
|
+
export declare const CreateSharedItemRequest: any;
|
|
30
|
+
export declare const DeleteSharedItemRequest: any;
|
|
31
|
+
export declare const GetSharedItemRequest: any;
|
|
32
|
+
export declare const GetSharedItemsRequest: any;
|
|
33
|
+
export declare const GetSharedItemsByAddressRequest: any;
|
|
34
|
+
export declare const GetSharedItemsByReferenceRequest: any;
|
|
35
|
+
export declare const GetSharedItemsSharedByAddressRequest: any;
|
|
36
|
+
export declare const GetSharedItemsSharedWithAddressRequest: any;
|
|
37
|
+
export declare const UpdateSharedItemRequest: any;
|
|
38
|
+
export declare const RegisterPushNotificationTokenRequest: any;
|
|
39
|
+
export declare const DownloadFileRequest: any;
|
|
40
|
+
export declare const DownloadAttachmentRequest: any;
|
|
41
|
+
export declare const CreateDeviceRequest: any;
|
|
42
|
+
export declare const CreateDeviceOnboardingTokenRequest: any;
|
|
43
|
+
export declare const DeleteDeviceRequest: any;
|
|
44
|
+
export declare const GetDeviceRequest: any;
|
|
45
|
+
export declare const GetDeviceOnboardingInfoRequest: any;
|
|
46
|
+
export declare const UpdateDeviceRequest: any;
|
|
47
|
+
export declare const CreateTokenForFileRequest: any;
|
|
48
|
+
export declare const CreateTokenQrCodeForFileRequest: any;
|
|
49
|
+
export declare const GetFileRequest: any;
|
|
50
|
+
export declare const GetFilesRequest: any;
|
|
51
|
+
export declare const LoadPeerFileViaSecretRequest: any;
|
|
52
|
+
export declare const LoadPeerFileViaReferenceRequest: any;
|
|
53
|
+
export declare const LoadPeerFileRequest: any;
|
|
54
|
+
export declare const UploadOwnFileRequest: any;
|
|
55
|
+
export declare const CheckIdentityRequest: any;
|
|
56
|
+
export declare const GetAttachmentMetadataRequest: any;
|
|
57
|
+
export declare const GetMessageRequest: any;
|
|
58
|
+
export declare const GetMessagesRequest: any;
|
|
59
|
+
export declare const SendMessageRequest: any;
|
|
60
|
+
export declare const AcceptRelationshipChangeRequest: any;
|
|
61
|
+
export declare const CreateRelationshipRequest: any;
|
|
62
|
+
export declare const CreateRelationshipChangeRequest: any;
|
|
63
|
+
export declare const GetRelationshipRequest: any;
|
|
64
|
+
export declare const GetRelationshipByAddressRequest: any;
|
|
65
|
+
export declare const GetRelationshipsRequest: any;
|
|
66
|
+
export declare const RejectRelationshipChangeRequest: any;
|
|
67
|
+
export declare const RevokeRelationshipChangeRequest: any;
|
|
68
|
+
export declare const CreateOwnRelationshipTemplateRequest: any;
|
|
69
|
+
export declare const CreateTokenForOwnTemplateRequest: any;
|
|
70
|
+
export declare const CreateTokenQrCodeForOwnTemplateRequest: any;
|
|
71
|
+
export declare const GetRelationshipTemplateRequest: any;
|
|
72
|
+
export declare const GetRelationshipTemplatesRequest: any;
|
|
73
|
+
export declare const LoadPeerRelationshipTemplateRequest: any;
|
|
74
|
+
export declare const CreateOwnTokenRequest: any;
|
|
75
|
+
export declare const GetQRCodeForTokenRequest: any;
|
|
76
|
+
export declare const GetTokenRequest: any;
|
|
77
|
+
export declare const GetTokensRequest: any;
|
|
78
|
+
export declare const LoadPeerTokenRequest: any;
|