@eluvio/elv-client-js 4.0.113 → 4.0.115

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (129) hide show
  1. package/dist/ElvClient-min.js +67 -0
  2. package/dist/ElvClient-node-min.js +66 -0
  3. package/dist/ElvFrameClient-min.js +60 -0
  4. package/dist/ElvPermissionsClient-min.js +60 -0
  5. package/dist/ElvWalletClient-min.js +67 -0
  6. package/dist/ElvWalletClient-node-min.js +66 -0
  7. package/dist/src/AuthorizationClient.js +2169 -0
  8. package/dist/src/ContentObjectAudit.js +175 -0
  9. package/dist/src/ContentObjectVerification.js +281 -0
  10. package/dist/src/Crypto.js +412 -0
  11. package/dist/src/ElvClient.js +2044 -0
  12. package/dist/src/ElvWallet.js +245 -0
  13. package/dist/src/EthClient.js +1154 -0
  14. package/dist/src/FrameClient.js +485 -0
  15. package/dist/src/HttpClient.js +315 -0
  16. package/dist/src/Id.js +21 -0
  17. package/dist/src/LogMessage.js +25 -0
  18. package/dist/src/PermissionsClient.js +1544 -0
  19. package/dist/src/RemoteSigner.js +385 -0
  20. package/dist/src/UserProfileClient.js +1450 -0
  21. package/dist/src/Utils.js +894 -0
  22. package/dist/src/Validation.js +121 -0
  23. package/dist/src/abr_profiles/abr_profile_live_drm.js +1661 -0
  24. package/dist/src/abr_profiles/abr_profile_live_to_vod.js +1606 -0
  25. package/dist/src/client/ABRPublishing.js +1018 -0
  26. package/dist/src/client/AccessGroups.js +1503 -0
  27. package/dist/src/client/ContentAccess.js +5195 -0
  28. package/dist/src/client/ContentManagement.js +2680 -0
  29. package/dist/src/client/Contracts.js +1520 -0
  30. package/dist/src/client/Files.js +2181 -0
  31. package/dist/src/client/LiveConf.js +569 -0
  32. package/dist/src/client/LiveStream.js +2640 -0
  33. package/dist/src/client/NFT.js +162 -0
  34. package/dist/src/client/NTP.js +581 -0
  35. package/dist/src/contracts/v2/AccessIndexor.js +831 -0
  36. package/dist/src/contracts/v2/Accessible.js +31 -0
  37. package/dist/src/contracts/v2/BaseAccessControlGroup.js +1263 -0
  38. package/dist/src/contracts/v2/BaseAccessWallet.js +1609 -0
  39. package/dist/src/contracts/v2/BaseAccessWalletFactory.js +93 -0
  40. package/dist/src/contracts/v2/BaseContent.js +1076 -0
  41. package/dist/src/contracts/v2/BaseContentFactory.js +219 -0
  42. package/dist/src/contracts/v2/BaseContentSpace.js +1352 -0
  43. package/dist/src/contracts/v2/BaseContentType.js +364 -0
  44. package/dist/src/contracts/v2/BaseFactory.js +107 -0
  45. package/dist/src/contracts/v2/BaseGroupFactory.js +93 -0
  46. package/dist/src/contracts/v2/BaseLibrary.js +1041 -0
  47. package/dist/src/contracts/v2/BaseLibraryFactory.js +96 -0
  48. package/dist/src/contracts/v2/Certifyer.js +86 -0
  49. package/dist/src/contracts/v2/Container.js +540 -0
  50. package/dist/src/contracts/v2/Content.js +443 -0
  51. package/dist/src/contracts/v2/Editable.js +306 -0
  52. package/dist/src/contracts/v2/ExternalUserWallet.js +379 -0
  53. package/dist/src/contracts/v2/IFactorySpace.js +57 -0
  54. package/dist/src/contracts/v2/IKmsSpace.js +52 -0
  55. package/dist/src/contracts/v2/INodeSpace.js +18 -0
  56. package/dist/src/contracts/v2/IUserSpace.js +18 -0
  57. package/dist/src/contracts/v2/LvRecordableStream.js +1037 -0
  58. package/dist/src/contracts/v2/LvRecording.js +627 -0
  59. package/dist/src/contracts/v2/LvStreamRightsHolder.js +562 -0
  60. package/dist/src/contracts/v2/MetaObject.js +119 -0
  61. package/dist/src/contracts/v2/Node.js +167 -0
  62. package/dist/src/contracts/v2/NodeSpace.js +273 -0
  63. package/dist/src/contracts/v2/Ownable.js +87 -0
  64. package/dist/src/contracts/v2/PaymentService.js +627 -0
  65. package/dist/src/contracts/v2/Precompile.js +15 -0
  66. package/dist/src/contracts/v2/Transactable.js +82 -0
  67. package/dist/src/contracts/v2/UserSpace.js +29 -0
  68. package/dist/src/contracts/v2/Utils.js +18 -0
  69. package/dist/src/contracts/v2/Verifier.js +53 -0
  70. package/dist/src/contracts/v2/strings.js +4 -0
  71. package/dist/src/contracts/v3/AccessIndexor.js +774 -0
  72. package/dist/src/contracts/v3/Accessible.js +232 -0
  73. package/dist/src/contracts/v3/Adminable.js +107 -0
  74. package/dist/src/contracts/v3/AvailsDelivery.js +586 -0
  75. package/dist/src/contracts/v3/BaseAccessControlGroup.js +1603 -0
  76. package/dist/src/contracts/v3/BaseAccessWallet.js +1628 -0
  77. package/dist/src/contracts/v3/BaseAccessWalletFactory.js +112 -0
  78. package/dist/src/contracts/v3/BaseContent.js +1312 -0
  79. package/dist/src/contracts/v3/BaseContentFactory.js +183 -0
  80. package/dist/src/contracts/v3/BaseContentFactoryExt.js +175 -0
  81. package/dist/src/contracts/v3/BaseContentSpace.js +1515 -0
  82. package/dist/src/contracts/v3/BaseContentType.js +527 -0
  83. package/dist/src/contracts/v3/BaseFactory.js +126 -0
  84. package/dist/src/contracts/v3/BaseGroupFactory.js +112 -0
  85. package/dist/src/contracts/v3/BaseLibrary.js +1204 -0
  86. package/dist/src/contracts/v3/BaseLibraryFactory.js +115 -0
  87. package/dist/src/contracts/v3/BaseTenantSpace.js +1587 -0
  88. package/dist/src/contracts/v3/Certifyer.js +86 -0
  89. package/dist/src/contracts/v3/Container.js +739 -0
  90. package/dist/src/contracts/v3/Content.js +438 -0
  91. package/dist/src/contracts/v3/CounterObject.js +243 -0
  92. package/dist/src/contracts/v3/Editable.js +519 -0
  93. package/dist/src/contracts/v3/EncToken.js +4 -0
  94. package/dist/src/contracts/v3/ExternalUserWallet.js +587 -0
  95. package/dist/src/contracts/v3/IAdmin.js +18 -0
  96. package/dist/src/contracts/v3/IFactorySpace.js +57 -0
  97. package/dist/src/contracts/v3/IKmsSpace.js +52 -0
  98. package/dist/src/contracts/v3/INodeSpace.js +18 -0
  99. package/dist/src/contracts/v3/IUserSpace.js +32 -0
  100. package/dist/src/contracts/v3/LvRecordableStream.js +1032 -0
  101. package/dist/src/contracts/v3/LvRecording.js +650 -0
  102. package/dist/src/contracts/v3/LvStreamRightsHolder.js +557 -0
  103. package/dist/src/contracts/v3/MetaObject.js +144 -0
  104. package/dist/src/contracts/v3/Node.js +178 -0
  105. package/dist/src/contracts/v3/NodeSpace.js +284 -0
  106. package/dist/src/contracts/v3/Ownable.js +98 -0
  107. package/dist/src/contracts/v3/PaymentService.js +622 -0
  108. package/dist/src/contracts/v3/Precompile.js +26 -0
  109. package/dist/src/contracts/v3/TenantFuncsBase.js +351 -0
  110. package/dist/src/contracts/v3/Transactable.js +82 -0
  111. package/dist/src/contracts/v3/UserSpace.js +43 -0
  112. package/dist/src/contracts/v3/Utils.js +18 -0
  113. package/dist/src/contracts/v3/Verifier.js +53 -0
  114. package/dist/src/contracts/v3/strings.js +4 -0
  115. package/dist/src/contracts/v3b/BaseAccessControlGroup.js +1704 -0
  116. package/dist/src/events/Topics.js +1793 -0
  117. package/dist/src/index.js +8 -0
  118. package/dist/src/walletClient/ClientMethods.js +3102 -0
  119. package/dist/src/walletClient/Configuration.js +38 -0
  120. package/dist/src/walletClient/Notifications.js +168 -0
  121. package/dist/src/walletClient/Profile.js +332 -0
  122. package/dist/src/walletClient/Utils.js +281 -0
  123. package/dist/src/walletClient/index.js +2106 -0
  124. package/package.json +1 -1
  125. package/src/AuthorizationClient.js +25 -18
  126. package/src/ElvClient.js +19 -0
  127. package/src/client/ContentAccess.js +10 -1
  128. package/src/client/LiveConf.js +10 -8
  129. package/src/client/LiveStream.js +6 -4
@@ -0,0 +1,774 @@
1
+ var contract = {
2
+ "abi": [{
3
+ "constant": true,
4
+ "inputs": [],
5
+ "name": "creator",
6
+ "outputs": [{
7
+ "name": "",
8
+ "type": "address"
9
+ }],
10
+ "payable": false,
11
+ "stateMutability": "view",
12
+ "type": "function"
13
+ }, {
14
+ "constant": false,
15
+ "inputs": [],
16
+ "name": "cleanUpContentObjects",
17
+ "outputs": [{
18
+ "name": "",
19
+ "type": "uint256"
20
+ }],
21
+ "payable": false,
22
+ "stateMutability": "nonpayable",
23
+ "type": "function"
24
+ }, {
25
+ "constant": false,
26
+ "inputs": [{
27
+ "name": "content_space",
28
+ "type": "address"
29
+ }],
30
+ "name": "setContentSpace",
31
+ "outputs": [],
32
+ "payable": false,
33
+ "stateMutability": "nonpayable",
34
+ "type": "function"
35
+ }, {
36
+ "constant": true,
37
+ "inputs": [{
38
+ "name": "obj",
39
+ "type": "address"
40
+ }],
41
+ "name": "getContractRights",
42
+ "outputs": [{
43
+ "name": "",
44
+ "type": "uint8"
45
+ }],
46
+ "payable": false,
47
+ "stateMutability": "view",
48
+ "type": "function"
49
+ }, {
50
+ "constant": true,
51
+ "inputs": [],
52
+ "name": "CATEGORY_CONTENT_OBJECT",
53
+ "outputs": [{
54
+ "name": "",
55
+ "type": "uint8"
56
+ }],
57
+ "payable": false,
58
+ "stateMutability": "view",
59
+ "type": "function"
60
+ }, {
61
+ "constant": true,
62
+ "inputs": [],
63
+ "name": "getAccessGroupsLength",
64
+ "outputs": [{
65
+ "name": "",
66
+ "type": "uint256"
67
+ }],
68
+ "payable": false,
69
+ "stateMutability": "view",
70
+ "type": "function"
71
+ }, {
72
+ "constant": true,
73
+ "inputs": [],
74
+ "name": "CATEGORY_GROUP",
75
+ "outputs": [{
76
+ "name": "",
77
+ "type": "uint8"
78
+ }],
79
+ "payable": false,
80
+ "stateMutability": "view",
81
+ "type": "function"
82
+ }, {
83
+ "constant": true,
84
+ "inputs": [],
85
+ "name": "CATEGORY_LIBRARY",
86
+ "outputs": [{
87
+ "name": "",
88
+ "type": "uint8"
89
+ }],
90
+ "payable": false,
91
+ "stateMutability": "view",
92
+ "type": "function"
93
+ }, {
94
+ "constant": true,
95
+ "inputs": [],
96
+ "name": "ACCESS_CONFIRMED",
97
+ "outputs": [{
98
+ "name": "",
99
+ "type": "uint8"
100
+ }],
101
+ "payable": false,
102
+ "stateMutability": "view",
103
+ "type": "function"
104
+ }, {
105
+ "constant": false,
106
+ "inputs": [{
107
+ "name": "obj",
108
+ "type": "address"
109
+ }, {
110
+ "name": "access_type",
111
+ "type": "uint8"
112
+ }, {
113
+ "name": "access",
114
+ "type": "uint8"
115
+ }],
116
+ "name": "setContractRights",
117
+ "outputs": [],
118
+ "payable": false,
119
+ "stateMutability": "nonpayable",
120
+ "type": "function"
121
+ }, {
122
+ "constant": true,
123
+ "inputs": [{
124
+ "name": "position",
125
+ "type": "uint256"
126
+ }],
127
+ "name": "getAccessGroup",
128
+ "outputs": [{
129
+ "name": "",
130
+ "type": "address"
131
+ }],
132
+ "payable": false,
133
+ "stateMutability": "view",
134
+ "type": "function"
135
+ }, {
136
+ "constant": false,
137
+ "inputs": [],
138
+ "name": "cleanUpAll",
139
+ "outputs": [{
140
+ "name": "",
141
+ "type": "uint256"
142
+ }, {
143
+ "name": "",
144
+ "type": "uint256"
145
+ }, {
146
+ "name": "",
147
+ "type": "uint256"
148
+ }, {
149
+ "name": "",
150
+ "type": "uint256"
151
+ }, {
152
+ "name": "",
153
+ "type": "uint256"
154
+ }],
155
+ "payable": false,
156
+ "stateMutability": "nonpayable",
157
+ "type": "function"
158
+ }, {
159
+ "constant": true,
160
+ "inputs": [{
161
+ "name": "group",
162
+ "type": "address"
163
+ }],
164
+ "name": "getAccessGroupRights",
165
+ "outputs": [{
166
+ "name": "",
167
+ "type": "uint8"
168
+ }],
169
+ "payable": false,
170
+ "stateMutability": "view",
171
+ "type": "function"
172
+ }, {
173
+ "constant": true,
174
+ "inputs": [],
175
+ "name": "accessGroups",
176
+ "outputs": [{
177
+ "name": "category",
178
+ "type": "uint8"
179
+ }, {
180
+ "name": "length",
181
+ "type": "uint256"
182
+ }],
183
+ "payable": false,
184
+ "stateMutability": "view",
185
+ "type": "function"
186
+ }, {
187
+ "constant": false,
188
+ "inputs": [{
189
+ "name": "obj",
190
+ "type": "address"
191
+ }, {
192
+ "name": "access_type",
193
+ "type": "uint8"
194
+ }, {
195
+ "name": "access",
196
+ "type": "uint8"
197
+ }],
198
+ "name": "setContentObjectRights",
199
+ "outputs": [],
200
+ "payable": false,
201
+ "stateMutability": "nonpayable",
202
+ "type": "function"
203
+ }, {
204
+ "constant": false,
205
+ "inputs": [],
206
+ "name": "kill",
207
+ "outputs": [],
208
+ "payable": false,
209
+ "stateMutability": "nonpayable",
210
+ "type": "function"
211
+ }, {
212
+ "constant": true,
213
+ "inputs": [{
214
+ "name": "candidate",
215
+ "type": "address"
216
+ }],
217
+ "name": "hasManagerAccess",
218
+ "outputs": [{
219
+ "name": "",
220
+ "type": "bool"
221
+ }],
222
+ "payable": false,
223
+ "stateMutability": "view",
224
+ "type": "function"
225
+ }, {
226
+ "constant": true,
227
+ "inputs": [],
228
+ "name": "ACCESS_TENTATIVE",
229
+ "outputs": [{
230
+ "name": "",
231
+ "type": "uint8"
232
+ }],
233
+ "payable": false,
234
+ "stateMutability": "view",
235
+ "type": "function"
236
+ }, {
237
+ "constant": true,
238
+ "inputs": [],
239
+ "name": "others",
240
+ "outputs": [{
241
+ "name": "category",
242
+ "type": "uint8"
243
+ }, {
244
+ "name": "length",
245
+ "type": "uint256"
246
+ }],
247
+ "payable": false,
248
+ "stateMutability": "view",
249
+ "type": "function"
250
+ }, {
251
+ "constant": true,
252
+ "inputs": [],
253
+ "name": "version",
254
+ "outputs": [{
255
+ "name": "",
256
+ "type": "bytes32"
257
+ }],
258
+ "payable": false,
259
+ "stateMutability": "view",
260
+ "type": "function"
261
+ }, {
262
+ "constant": true,
263
+ "inputs": [],
264
+ "name": "getContentTypesLength",
265
+ "outputs": [{
266
+ "name": "",
267
+ "type": "uint256"
268
+ }],
269
+ "payable": false,
270
+ "stateMutability": "view",
271
+ "type": "function"
272
+ }, {
273
+ "constant": false,
274
+ "inputs": [{
275
+ "name": "indexType",
276
+ "type": "uint8"
277
+ }, {
278
+ "name": "obj",
279
+ "type": "address"
280
+ }, {
281
+ "name": "access_type",
282
+ "type": "uint8"
283
+ }, {
284
+ "name": "access",
285
+ "type": "uint8"
286
+ }],
287
+ "name": "setEntityRights",
288
+ "outputs": [],
289
+ "payable": false,
290
+ "stateMutability": "nonpayable",
291
+ "type": "function"
292
+ }, {
293
+ "constant": true,
294
+ "inputs": [],
295
+ "name": "TYPE_EDIT",
296
+ "outputs": [{
297
+ "name": "",
298
+ "type": "uint8"
299
+ }],
300
+ "payable": false,
301
+ "stateMutability": "view",
302
+ "type": "function"
303
+ }, {
304
+ "constant": true,
305
+ "inputs": [],
306
+ "name": "versionAPI",
307
+ "outputs": [{
308
+ "name": "",
309
+ "type": "bytes32"
310
+ }],
311
+ "payable": false,
312
+ "stateMutability": "view",
313
+ "type": "function"
314
+ }, {
315
+ "constant": true,
316
+ "inputs": [],
317
+ "name": "CATEGORY_CONTRACT",
318
+ "outputs": [{
319
+ "name": "",
320
+ "type": "uint8"
321
+ }],
322
+ "payable": false,
323
+ "stateMutability": "view",
324
+ "type": "function"
325
+ }, {
326
+ "constant": true,
327
+ "inputs": [],
328
+ "name": "CATEGORY_CONTENT_TYPE",
329
+ "outputs": [{
330
+ "name": "",
331
+ "type": "uint8"
332
+ }],
333
+ "payable": false,
334
+ "stateMutability": "view",
335
+ "type": "function"
336
+ }, {
337
+ "constant": true,
338
+ "inputs": [{
339
+ "name": "obj",
340
+ "type": "address"
341
+ }],
342
+ "name": "getContentObjectRights",
343
+ "outputs": [{
344
+ "name": "",
345
+ "type": "uint8"
346
+ }],
347
+ "payable": false,
348
+ "stateMutability": "view",
349
+ "type": "function"
350
+ }, {
351
+ "constant": true,
352
+ "inputs": [],
353
+ "name": "contracts",
354
+ "outputs": [{
355
+ "name": "category",
356
+ "type": "uint8"
357
+ }, {
358
+ "name": "length",
359
+ "type": "uint256"
360
+ }],
361
+ "payable": false,
362
+ "stateMutability": "view",
363
+ "type": "function"
364
+ }, {
365
+ "constant": false,
366
+ "inputs": [{
367
+ "name": "newCreator",
368
+ "type": "address"
369
+ }],
370
+ "name": "transferCreatorship",
371
+ "outputs": [],
372
+ "payable": false,
373
+ "stateMutability": "nonpayable",
374
+ "type": "function"
375
+ }, {
376
+ "constant": true,
377
+ "inputs": [{
378
+ "name": "position",
379
+ "type": "uint256"
380
+ }],
381
+ "name": "getContract",
382
+ "outputs": [{
383
+ "name": "",
384
+ "type": "address"
385
+ }],
386
+ "payable": false,
387
+ "stateMutability": "view",
388
+ "type": "function"
389
+ }, {
390
+ "constant": true,
391
+ "inputs": [{
392
+ "name": "addr",
393
+ "type": "address"
394
+ }],
395
+ "name": "contractExists",
396
+ "outputs": [{
397
+ "name": "",
398
+ "type": "bool"
399
+ }],
400
+ "payable": false,
401
+ "stateMutability": "view",
402
+ "type": "function"
403
+ }, {
404
+ "constant": false,
405
+ "inputs": [{
406
+ "name": "lib",
407
+ "type": "address"
408
+ }, {
409
+ "name": "access_type",
410
+ "type": "uint8"
411
+ }, {
412
+ "name": "access",
413
+ "type": "uint8"
414
+ }],
415
+ "name": "setLibraryRights",
416
+ "outputs": [],
417
+ "payable": false,
418
+ "stateMutability": "nonpayable",
419
+ "type": "function"
420
+ }, {
421
+ "constant": true,
422
+ "inputs": [{
423
+ "name": "index_type",
424
+ "type": "uint8"
425
+ }, {
426
+ "name": "obj",
427
+ "type": "address"
428
+ }, {
429
+ "name": "access_type",
430
+ "type": "uint8"
431
+ }],
432
+ "name": "checkRights",
433
+ "outputs": [{
434
+ "name": "",
435
+ "type": "bool"
436
+ }],
437
+ "payable": false,
438
+ "stateMutability": "view",
439
+ "type": "function"
440
+ }, {
441
+ "constant": true,
442
+ "inputs": [],
443
+ "name": "ACCESS_NONE",
444
+ "outputs": [{
445
+ "name": "",
446
+ "type": "uint8"
447
+ }],
448
+ "payable": false,
449
+ "stateMutability": "view",
450
+ "type": "function"
451
+ }, {
452
+ "constant": false,
453
+ "inputs": [],
454
+ "name": "cleanUpContentTypes",
455
+ "outputs": [{
456
+ "name": "",
457
+ "type": "uint256"
458
+ }],
459
+ "payable": false,
460
+ "stateMutability": "nonpayable",
461
+ "type": "function"
462
+ }, {
463
+ "constant": false,
464
+ "inputs": [{
465
+ "name": "obj",
466
+ "type": "address"
467
+ }, {
468
+ "name": "access_type",
469
+ "type": "uint8"
470
+ }, {
471
+ "name": "access",
472
+ "type": "uint8"
473
+ }],
474
+ "name": "setContentTypeRights",
475
+ "outputs": [],
476
+ "payable": false,
477
+ "stateMutability": "nonpayable",
478
+ "type": "function"
479
+ }, {
480
+ "constant": true,
481
+ "inputs": [],
482
+ "name": "owner",
483
+ "outputs": [{
484
+ "name": "",
485
+ "type": "address"
486
+ }],
487
+ "payable": false,
488
+ "stateMutability": "view",
489
+ "type": "function"
490
+ }, {
491
+ "constant": false,
492
+ "inputs": [],
493
+ "name": "cleanUpLibraries",
494
+ "outputs": [{
495
+ "name": "",
496
+ "type": "uint256"
497
+ }],
498
+ "payable": false,
499
+ "stateMutability": "nonpayable",
500
+ "type": "function"
501
+ }, {
502
+ "constant": true,
503
+ "inputs": [],
504
+ "name": "TYPE_SEE",
505
+ "outputs": [{
506
+ "name": "",
507
+ "type": "uint8"
508
+ }],
509
+ "payable": false,
510
+ "stateMutability": "view",
511
+ "type": "function"
512
+ }, {
513
+ "constant": true,
514
+ "inputs": [],
515
+ "name": "contentTypes",
516
+ "outputs": [{
517
+ "name": "category",
518
+ "type": "uint8"
519
+ }, {
520
+ "name": "length",
521
+ "type": "uint256"
522
+ }],
523
+ "payable": false,
524
+ "stateMutability": "view",
525
+ "type": "function"
526
+ }, {
527
+ "constant": true,
528
+ "inputs": [{
529
+ "name": "index_type",
530
+ "type": "uint8"
531
+ }, {
532
+ "name": "obj",
533
+ "type": "address"
534
+ }, {
535
+ "name": "access_type",
536
+ "type": "uint8"
537
+ }],
538
+ "name": "checkDirectRights",
539
+ "outputs": [{
540
+ "name": "",
541
+ "type": "bool"
542
+ }],
543
+ "payable": false,
544
+ "stateMutability": "view",
545
+ "type": "function"
546
+ }, {
547
+ "constant": true,
548
+ "inputs": [{
549
+ "name": "obj",
550
+ "type": "address"
551
+ }],
552
+ "name": "getContentTypeRights",
553
+ "outputs": [{
554
+ "name": "",
555
+ "type": "uint8"
556
+ }],
557
+ "payable": false,
558
+ "stateMutability": "view",
559
+ "type": "function"
560
+ }, {
561
+ "constant": true,
562
+ "inputs": [],
563
+ "name": "contentObjects",
564
+ "outputs": [{
565
+ "name": "category",
566
+ "type": "uint8"
567
+ }, {
568
+ "name": "length",
569
+ "type": "uint256"
570
+ }],
571
+ "payable": false,
572
+ "stateMutability": "view",
573
+ "type": "function"
574
+ }, {
575
+ "constant": true,
576
+ "inputs": [{
577
+ "name": "position",
578
+ "type": "uint256"
579
+ }],
580
+ "name": "getContentType",
581
+ "outputs": [{
582
+ "name": "",
583
+ "type": "address"
584
+ }],
585
+ "payable": false,
586
+ "stateMutability": "view",
587
+ "type": "function"
588
+ }, {
589
+ "constant": true,
590
+ "inputs": [],
591
+ "name": "contentSpace",
592
+ "outputs": [{
593
+ "name": "",
594
+ "type": "address"
595
+ }],
596
+ "payable": false,
597
+ "stateMutability": "view",
598
+ "type": "function"
599
+ }, {
600
+ "constant": false,
601
+ "inputs": [],
602
+ "name": "setAccessRights",
603
+ "outputs": [],
604
+ "payable": false,
605
+ "stateMutability": "nonpayable",
606
+ "type": "function"
607
+ }, {
608
+ "constant": true,
609
+ "inputs": [],
610
+ "name": "libraries",
611
+ "outputs": [{
612
+ "name": "category",
613
+ "type": "uint8"
614
+ }, {
615
+ "name": "length",
616
+ "type": "uint256"
617
+ }],
618
+ "payable": false,
619
+ "stateMutability": "view",
620
+ "type": "function"
621
+ }, {
622
+ "constant": true,
623
+ "inputs": [],
624
+ "name": "getLibrariesLength",
625
+ "outputs": [{
626
+ "name": "",
627
+ "type": "uint256"
628
+ }],
629
+ "payable": false,
630
+ "stateMutability": "view",
631
+ "type": "function"
632
+ }, {
633
+ "constant": true,
634
+ "inputs": [{
635
+ "name": "position",
636
+ "type": "uint256"
637
+ }],
638
+ "name": "getContentObject",
639
+ "outputs": [{
640
+ "name": "",
641
+ "type": "address"
642
+ }],
643
+ "payable": false,
644
+ "stateMutability": "view",
645
+ "type": "function"
646
+ }, {
647
+ "constant": true,
648
+ "inputs": [{
649
+ "name": "position",
650
+ "type": "uint256"
651
+ }],
652
+ "name": "getLibrary",
653
+ "outputs": [{
654
+ "name": "",
655
+ "type": "address"
656
+ }],
657
+ "payable": false,
658
+ "stateMutability": "view",
659
+ "type": "function"
660
+ }, {
661
+ "constant": true,
662
+ "inputs": [],
663
+ "name": "TYPE_ACCESS",
664
+ "outputs": [{
665
+ "name": "",
666
+ "type": "uint8"
667
+ }],
668
+ "payable": false,
669
+ "stateMutability": "view",
670
+ "type": "function"
671
+ }, {
672
+ "constant": false,
673
+ "inputs": [],
674
+ "name": "cleanUpAccessGroups",
675
+ "outputs": [{
676
+ "name": "",
677
+ "type": "uint256"
678
+ }],
679
+ "payable": false,
680
+ "stateMutability": "nonpayable",
681
+ "type": "function"
682
+ }, {
683
+ "constant": true,
684
+ "inputs": [],
685
+ "name": "getContentObjectsLength",
686
+ "outputs": [{
687
+ "name": "",
688
+ "type": "uint256"
689
+ }],
690
+ "payable": false,
691
+ "stateMutability": "view",
692
+ "type": "function"
693
+ }, {
694
+ "constant": false,
695
+ "inputs": [{
696
+ "name": "group",
697
+ "type": "address"
698
+ }, {
699
+ "name": "access_type",
700
+ "type": "uint8"
701
+ }, {
702
+ "name": "access",
703
+ "type": "uint8"
704
+ }],
705
+ "name": "setAccessGroupRights",
706
+ "outputs": [],
707
+ "payable": false,
708
+ "stateMutability": "nonpayable",
709
+ "type": "function"
710
+ }, {
711
+ "constant": false,
712
+ "inputs": [{
713
+ "name": "newOwner",
714
+ "type": "address"
715
+ }],
716
+ "name": "transferOwnership",
717
+ "outputs": [],
718
+ "payable": false,
719
+ "stateMutability": "nonpayable",
720
+ "type": "function"
721
+ }, {
722
+ "constant": true,
723
+ "inputs": [{
724
+ "name": "lib",
725
+ "type": "address"
726
+ }],
727
+ "name": "getLibraryRights",
728
+ "outputs": [{
729
+ "name": "",
730
+ "type": "uint8"
731
+ }],
732
+ "payable": false,
733
+ "stateMutability": "view",
734
+ "type": "function"
735
+ }, {
736
+ "constant": true,
737
+ "inputs": [],
738
+ "name": "getContractsLength",
739
+ "outputs": [{
740
+ "name": "",
741
+ "type": "uint256"
742
+ }],
743
+ "payable": false,
744
+ "stateMutability": "view",
745
+ "type": "function"
746
+ }, {
747
+ "inputs": [],
748
+ "payable": true,
749
+ "stateMutability": "payable",
750
+ "type": "constructor"
751
+ }, {
752
+ "payable": true,
753
+ "stateMutability": "payable",
754
+ "type": "fallback"
755
+ }, {
756
+ "anonymous": false,
757
+ "inputs": [{
758
+ "indexed": false,
759
+ "name": "principal",
760
+ "type": "address"
761
+ }, {
762
+ "indexed": false,
763
+ "name": "entity",
764
+ "type": "address"
765
+ }, {
766
+ "indexed": false,
767
+ "name": "aggregate",
768
+ "type": "uint8"
769
+ }],
770
+ "name": "RightsChanged",
771
+ "type": "event"
772
+ }]
773
+ };
774
+ module.exports = contract;