@eluvio/elv-client-js 3.1.72 → 3.1.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/dist/ElvClient-min.js +3 -3
- package/dist/ElvClient-node-min.js +6 -6
- package/dist/ElvFrameClient-min.js +4 -4
- package/dist/src/AuthorizationClient.js +24 -14
- package/dist/src/FrameClient.js +1 -1
- package/dist/src/client/ContentAccess.js +36 -27
- package/dist/src/client/ContentManagement.js +770 -537
- package/dist/src/client/Files.js +76 -54
- package/package-lock.json +50 -47
- package/package.json +2 -1
- package/src/AuthorizationClient.js +4 -1
- package/src/FrameClient.js +3 -0
- package/src/client/ContentAccess.js +5 -3
- package/src/client/ContentManagement.js +108 -11
- package/src/client/Files.js +4 -1
- package/testScripts/logo2.png +0 -0
- package/typeSpecs/DropEventSite.js +802 -148
- package/typeSpecs/Marketplace.js +39 -0
package/typeSpecs/Marketplace.js
CHANGED
|
@@ -208,6 +208,10 @@ const MarketplaceSpec = {
|
|
|
208
208
|
"name": "collections",
|
|
209
209
|
"type": "list",
|
|
210
210
|
"fields": [
|
|
211
|
+
{
|
|
212
|
+
"name": "name",
|
|
213
|
+
"type": "text"
|
|
214
|
+
},
|
|
211
215
|
{
|
|
212
216
|
"name": "collection_header",
|
|
213
217
|
"type": "text"
|
|
@@ -241,6 +245,36 @@ const MarketplaceSpec = {
|
|
|
241
245
|
}
|
|
242
246
|
]
|
|
243
247
|
},
|
|
248
|
+
{
|
|
249
|
+
"name": "collection_info_modal",
|
|
250
|
+
"type": "subsection",
|
|
251
|
+
"fields": [
|
|
252
|
+
{
|
|
253
|
+
"name": "show",
|
|
254
|
+
"type": "checkbox",
|
|
255
|
+
"hint": "The modal will only be displayed if this is checked"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"name": "message",
|
|
259
|
+
"type": "rich_text"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"name": "image",
|
|
263
|
+
"type": "file",
|
|
264
|
+
"extensions": imageTypes
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"name": "background_image",
|
|
268
|
+
"type": "file",
|
|
269
|
+
"extensions": imageTypes
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"name": "button_text",
|
|
273
|
+
"type": "text",
|
|
274
|
+
"hint": "Text for the button at the bottom of the modal. By default, it will be 'Create Wallet' if login is required for the next drop, otherwise it will be 'Join the Drop'"
|
|
275
|
+
}
|
|
276
|
+
]
|
|
277
|
+
},
|
|
244
278
|
{
|
|
245
279
|
"name": "items",
|
|
246
280
|
"type": "reference_multiselect",
|
|
@@ -256,6 +290,11 @@ const MarketplaceSpec = {
|
|
|
256
290
|
"label": "Custom Branding",
|
|
257
291
|
"type": "subsection",
|
|
258
292
|
"fields": [
|
|
293
|
+
{
|
|
294
|
+
"name": "require_email_verification",
|
|
295
|
+
"type": "checkbox",
|
|
296
|
+
"default_value": true
|
|
297
|
+
},
|
|
259
298
|
{
|
|
260
299
|
"name": "font",
|
|
261
300
|
"type": "select",
|