@eluvio/elv-client-js 3.1.78 → 3.1.79
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-lock.json +1 -1
- package/package.json +1 -1
- package/typeSpecs/DropEventSite.js +178 -38
- package/typeSpecs/NFTTemplate.js +11 -3
package/package-lock.json
CHANGED
package/package.json
CHANGED
|
@@ -199,22 +199,26 @@ const eventSiteSpec = {
|
|
|
199
199
|
{
|
|
200
200
|
"name": "image",
|
|
201
201
|
"type": "file",
|
|
202
|
-
"extensions": imageTypes
|
|
202
|
+
"extensions": imageTypes,
|
|
203
|
+
"depends_on": "./show"
|
|
203
204
|
},
|
|
204
205
|
{
|
|
205
206
|
"name": "message",
|
|
206
|
-
"type": "rich_text"
|
|
207
|
+
"type": "rich_text",
|
|
208
|
+
"depends_on": "./show"
|
|
207
209
|
},
|
|
208
210
|
{
|
|
209
211
|
"name": "button_text",
|
|
210
212
|
"type": "text",
|
|
211
|
-
"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'"
|
|
213
|
+
"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'",
|
|
214
|
+
"depends_on": "./show"
|
|
212
215
|
},
|
|
213
216
|
{
|
|
214
217
|
"name": "post_login",
|
|
215
218
|
"label": "Post Login Modal",
|
|
216
219
|
"type": "subsection",
|
|
217
220
|
"hint": "If specified, modal will be shown after a user goes through the login process from the 'Get Started' modal",
|
|
221
|
+
"depends_on": "./show",
|
|
218
222
|
"fields": [
|
|
219
223
|
{
|
|
220
224
|
"name": "show",
|
|
@@ -321,13 +325,15 @@ const eventSiteSpec = {
|
|
|
321
325
|
{
|
|
322
326
|
"extensions": imageTypes,
|
|
323
327
|
"name": "image",
|
|
324
|
-
"type": "file"
|
|
328
|
+
"type": "file",
|
|
329
|
+
"depends_on": "./show"
|
|
325
330
|
},
|
|
326
331
|
{
|
|
327
332
|
"extensions": imageTypes,
|
|
328
333
|
"name": "image_mobile",
|
|
329
334
|
"label": "Image (Mobile)",
|
|
330
|
-
"type": "file"
|
|
335
|
+
"type": "file",
|
|
336
|
+
"depends_on": "./show"
|
|
331
337
|
},
|
|
332
338
|
{
|
|
333
339
|
"name": "type",
|
|
@@ -338,23 +344,27 @@ const eventSiteSpec = {
|
|
|
338
344
|
"link"
|
|
339
345
|
],
|
|
340
346
|
"default_value": "marketplace",
|
|
341
|
-
"hint": "Specify what happens when clicking on the banner. The banner can link to a URL or a drop, or it can open the marketplace view."
|
|
347
|
+
"hint": "Specify what happens when clicking on the banner. The banner can link to a URL or a drop, or it can open the marketplace view.",
|
|
348
|
+
"depends_on": "./show"
|
|
342
349
|
},
|
|
343
350
|
{
|
|
344
351
|
"name": "marketplace_filters",
|
|
345
352
|
"type": "list",
|
|
346
|
-
"hint": "If the banner links to the marketplace, you can specify filters to apply when the marketplace is opened via the banner."
|
|
353
|
+
"hint": "If the banner links to the marketplace, you can specify filters to apply when the marketplace is opened via the banner.",
|
|
354
|
+
"depends_on": "./show"
|
|
347
355
|
},
|
|
348
356
|
{
|
|
349
357
|
"name": "link",
|
|
350
358
|
"type": "text",
|
|
351
|
-
"hint": "If the banner is a link, specify the URL to link to."
|
|
359
|
+
"hint": "If the banner is a link, specify the URL to link to.",
|
|
360
|
+
"depends_on": "./show"
|
|
352
361
|
},
|
|
353
362
|
{
|
|
354
363
|
"label": "Drop UUID",
|
|
355
364
|
"name": "drop_uuid",
|
|
356
365
|
"type": "text",
|
|
357
|
-
"hint": "If the banner links to a drop, you can specify a specific drop to link to. If not specified, the banner will link to the next upcoming drop."
|
|
366
|
+
"hint": "If the banner links to a drop, you can specify a specific drop to link to. If not specified, the banner will link to the next upcoming drop.",
|
|
367
|
+
"depends_on": "./show"
|
|
358
368
|
}
|
|
359
369
|
]
|
|
360
370
|
}
|
|
@@ -727,6 +737,7 @@ const eventSiteSpec = {
|
|
|
727
737
|
"label": "FAQ",
|
|
728
738
|
"hint": "Specify a custom FAQ. If blank, the default FAQ will be displayed",
|
|
729
739
|
"type": "list",
|
|
740
|
+
"depends_on": "./show_faq",
|
|
730
741
|
"fields": [
|
|
731
742
|
{
|
|
732
743
|
"name": "question",
|
|
@@ -780,17 +791,20 @@ const eventSiteSpec = {
|
|
|
780
791
|
{
|
|
781
792
|
"name": "redemption_message",
|
|
782
793
|
"type": "text",
|
|
783
|
-
"hint": "Text to be displayed on coupon redemption page"
|
|
794
|
+
"hint": "Text to be displayed on coupon redemption page",
|
|
795
|
+
"depends_on": "./coupon_mode"
|
|
784
796
|
},
|
|
785
797
|
{
|
|
786
798
|
"name": "event_page_message_1",
|
|
787
799
|
"type": "text",
|
|
788
|
-
"hint": "Text to be displayed on event page after redemption"
|
|
800
|
+
"hint": "Text to be displayed on event page after redemption",
|
|
801
|
+
"depends_on": "./coupon_mode"
|
|
789
802
|
},
|
|
790
803
|
{
|
|
791
804
|
"name": "event_page_message_2",
|
|
792
805
|
"type": "text",
|
|
793
|
-
"hint": "Text to be displayed on event page after redemption"
|
|
806
|
+
"hint": "Text to be displayed on event page after redemption",
|
|
807
|
+
"depends_on": "./coupon_mode"
|
|
794
808
|
}
|
|
795
809
|
],
|
|
796
810
|
"name": "coupon_redemption",
|
|
@@ -1054,6 +1068,7 @@ const eventSiteSpec = {
|
|
|
1054
1068
|
"no_localize": true
|
|
1055
1069
|
},
|
|
1056
1070
|
{
|
|
1071
|
+
"label": "marketplace_filters",
|
|
1057
1072
|
"name": "store_filters",
|
|
1058
1073
|
"type": "list",
|
|
1059
1074
|
"hint": "After the drop, the wallet panel will be redirected to the store. Use these fields to filter the items shown for users who voted"
|
|
@@ -1076,6 +1091,54 @@ const eventSiteSpec = {
|
|
|
1076
1091
|
"label": "Calendar Event Info",
|
|
1077
1092
|
"name": "calendar",
|
|
1078
1093
|
"type": "subsection"
|
|
1094
|
+
},
|
|
1095
|
+
{
|
|
1096
|
+
"label": "Use Custom Landing Page",
|
|
1097
|
+
"hint": "If checked, the landing page info below will be used for this drop event instead of the general landing page configuration.",
|
|
1098
|
+
"name": "custom_landing_page",
|
|
1099
|
+
"type": "checkbox"
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
"fields": [
|
|
1103
|
+
{
|
|
1104
|
+
"name": "header_image",
|
|
1105
|
+
"type": "file",
|
|
1106
|
+
"extensions": imageTypes
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
"name": "background_image",
|
|
1110
|
+
"type": "file",
|
|
1111
|
+
"extensions": imageTypes
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
"name": "background_image_mobile",
|
|
1115
|
+
"label": "Background Image (Mobile)",
|
|
1116
|
+
"type": "file",
|
|
1117
|
+
"extensions": imageTypes
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"name": "header_text",
|
|
1121
|
+
"type": "text"
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
"name": "show_countdown",
|
|
1125
|
+
"type": "checkbox",
|
|
1126
|
+
"default_value": true
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
"name": "message_1",
|
|
1130
|
+
"type": "textarea",
|
|
1131
|
+
"hint": "Message above the countdown. Default: 'Your Code is Redeemed. Drop Begins In'"
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
"name": "message_2",
|
|
1135
|
+
"type": "textarea",
|
|
1136
|
+
"hint": "Message below the countdown. Default: 'Use the link in your code email to return here at the time of the drop.'"
|
|
1137
|
+
}
|
|
1138
|
+
],
|
|
1139
|
+
"name": "event_landing_page",
|
|
1140
|
+
"type": "subsection",
|
|
1141
|
+
"depends_on": "./custom_landing_page"
|
|
1079
1142
|
}
|
|
1080
1143
|
]
|
|
1081
1144
|
},
|
|
@@ -1196,6 +1259,54 @@ const eventSiteSpec = {
|
|
|
1196
1259
|
"name": "calendar",
|
|
1197
1260
|
"type": "subsection"
|
|
1198
1261
|
},
|
|
1262
|
+
{
|
|
1263
|
+
"label": "Use Custom Landing Page",
|
|
1264
|
+
"hint": "If checked, the landing page info below will be used for this drop event instead of the general landing page configuration.",
|
|
1265
|
+
"name": "custom_landing_page",
|
|
1266
|
+
"type": "checkbox"
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
"fields": [
|
|
1270
|
+
{
|
|
1271
|
+
"name": "header_image",
|
|
1272
|
+
"type": "file",
|
|
1273
|
+
"extensions": imageTypes
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
"name": "background_image",
|
|
1277
|
+
"type": "file",
|
|
1278
|
+
"extensions": imageTypes
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"name": "background_image_mobile",
|
|
1282
|
+
"label": "Background Image (Mobile)",
|
|
1283
|
+
"type": "file",
|
|
1284
|
+
"extensions": imageTypes
|
|
1285
|
+
},
|
|
1286
|
+
{
|
|
1287
|
+
"name": "header_text",
|
|
1288
|
+
"type": "text"
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
"name": "show_countdown",
|
|
1292
|
+
"type": "checkbox",
|
|
1293
|
+
"default_value": true
|
|
1294
|
+
},
|
|
1295
|
+
{
|
|
1296
|
+
"name": "message_1",
|
|
1297
|
+
"type": "textarea",
|
|
1298
|
+
"hint": "Message above the countdown. Default: 'Your Code is Redeemed. Drop Begins In'"
|
|
1299
|
+
},
|
|
1300
|
+
{
|
|
1301
|
+
"name": "message_2",
|
|
1302
|
+
"type": "textarea",
|
|
1303
|
+
"hint": "Message below the countdown. Default: 'Use the link in your code email to return here at the time of the drop.'"
|
|
1304
|
+
}
|
|
1305
|
+
],
|
|
1306
|
+
"name": "event_landing_page",
|
|
1307
|
+
"type": "subsection",
|
|
1308
|
+
"depends_on": "./custom_landing_page"
|
|
1309
|
+
},
|
|
1199
1310
|
{
|
|
1200
1311
|
"name": "event_state_preroll",
|
|
1201
1312
|
"label": "Event State: Preroll",
|
|
@@ -1208,39 +1319,46 @@ const eventSiteSpec = {
|
|
|
1208
1319
|
},
|
|
1209
1320
|
{
|
|
1210
1321
|
"name": "header",
|
|
1211
|
-
"type": "text"
|
|
1322
|
+
"type": "text",
|
|
1323
|
+
"depends_on": "./use_state"
|
|
1212
1324
|
},
|
|
1213
1325
|
{
|
|
1214
1326
|
"name": "subheader",
|
|
1215
|
-
"type": "text"
|
|
1327
|
+
"type": "text",
|
|
1328
|
+
"depends_on": "./use_state"
|
|
1216
1329
|
},
|
|
1217
1330
|
{
|
|
1218
1331
|
"name": "show_countdown",
|
|
1219
1332
|
"label": "Show Countdown to Next State",
|
|
1220
1333
|
"type": "checkbox",
|
|
1221
|
-
"default_value": false
|
|
1334
|
+
"default_value": false,
|
|
1335
|
+
"depends_on": "./use_state"
|
|
1222
1336
|
},
|
|
1223
1337
|
{
|
|
1224
1338
|
"name": "use_main_stream",
|
|
1225
1339
|
"type": "checkbox",
|
|
1226
1340
|
"default_value": false,
|
|
1227
|
-
"hint": "If checked, the stream for the main event will be used instead of one specified in this section"
|
|
1341
|
+
"hint": "If checked, the stream for the main event will be used instead of one specified in this section",
|
|
1342
|
+
"depends_on": "./use_state"
|
|
1228
1343
|
},
|
|
1229
1344
|
{
|
|
1230
1345
|
"name": "stream",
|
|
1231
1346
|
"type": "fabric_link",
|
|
1232
|
-
"video_preview": true
|
|
1347
|
+
"video_preview": true,
|
|
1348
|
+
"depends_on": "./use_state"
|
|
1233
1349
|
},
|
|
1234
1350
|
{
|
|
1235
1351
|
"name": "loop_stream",
|
|
1236
1352
|
"type": "checkbox",
|
|
1237
|
-
"default_value": false
|
|
1353
|
+
"default_value": false,
|
|
1354
|
+
"depends_on": "./use_state"
|
|
1238
1355
|
},
|
|
1239
1356
|
{
|
|
1240
1357
|
"name": "modal_message",
|
|
1241
1358
|
"label": "Modal Message (Pre Event)",
|
|
1242
1359
|
"type": "subsection",
|
|
1243
1360
|
"hint": "If specified, this message will be displayed in a popup modal at the start of this part of the event. You can use this to communicate information to users.",
|
|
1361
|
+
"depends_on": "./use_state",
|
|
1244
1362
|
"fields": [
|
|
1245
1363
|
{
|
|
1246
1364
|
"name": "show",
|
|
@@ -1326,48 +1444,56 @@ const eventSiteSpec = {
|
|
|
1326
1444
|
{
|
|
1327
1445
|
"name": "use_state",
|
|
1328
1446
|
"type": "checkbox",
|
|
1329
|
-
"default_value":
|
|
1447
|
+
"default_value": false
|
|
1330
1448
|
},
|
|
1331
1449
|
{
|
|
1332
1450
|
"name": "header",
|
|
1333
|
-
"type": "text"
|
|
1451
|
+
"type": "text",
|
|
1452
|
+
"depends_on": "./use_state"
|
|
1334
1453
|
},
|
|
1335
1454
|
{
|
|
1336
1455
|
"name": "subheader",
|
|
1337
|
-
"type": "text"
|
|
1456
|
+
"type": "text",
|
|
1457
|
+
"depends_on": "./use_state"
|
|
1338
1458
|
},
|
|
1339
1459
|
{
|
|
1340
1460
|
"name": "start_date",
|
|
1341
1461
|
"type": "datetime",
|
|
1342
|
-
"no_localize": true
|
|
1462
|
+
"no_localize": true,
|
|
1463
|
+
"depends_on": "./use_state"
|
|
1343
1464
|
},
|
|
1344
1465
|
{
|
|
1345
1466
|
"name": "show_countdown",
|
|
1346
1467
|
"label": "Show Countdown to Next State",
|
|
1347
1468
|
"type": "checkbox",
|
|
1348
|
-
"default_value": false
|
|
1469
|
+
"default_value": false,
|
|
1470
|
+
"depends_on": "./use_state"
|
|
1349
1471
|
},
|
|
1350
1472
|
{
|
|
1351
1473
|
"name": "use_main_stream",
|
|
1352
1474
|
"type": "checkbox",
|
|
1353
1475
|
"default_value": false,
|
|
1476
|
+
"depends_on": "./use_state",
|
|
1354
1477
|
"hint": "If checked, the stream for the main event will be used instead of one specified in this section"
|
|
1355
1478
|
},
|
|
1356
1479
|
{
|
|
1357
1480
|
"name": "stream",
|
|
1358
1481
|
"type": "fabric_link",
|
|
1359
|
-
"video_preview": true
|
|
1482
|
+
"video_preview": true,
|
|
1483
|
+
"depends_on": "./use_state"
|
|
1360
1484
|
},
|
|
1361
1485
|
{
|
|
1362
1486
|
"name": "loop_stream",
|
|
1363
1487
|
"type": "checkbox",
|
|
1364
|
-
"default_value": false
|
|
1488
|
+
"default_value": false,
|
|
1489
|
+
"depends_on": "./use_state"
|
|
1365
1490
|
},
|
|
1366
1491
|
{
|
|
1367
1492
|
"name": "modal_message",
|
|
1368
1493
|
"label": "Modal Message (Voting Ended)",
|
|
1369
1494
|
"type": "subsection",
|
|
1370
1495
|
"hint": "If specified, this message will be displayed in a popup modal at the start of this part of the event. You can use this to communicate information to users.",
|
|
1496
|
+
"depends_on": "./use_state",
|
|
1371
1497
|
"fields": [
|
|
1372
1498
|
{
|
|
1373
1499
|
"name": "show",
|
|
@@ -1395,42 +1521,49 @@ const eventSiteSpec = {
|
|
|
1395
1521
|
{
|
|
1396
1522
|
"name": "use_state",
|
|
1397
1523
|
"type": "checkbox",
|
|
1398
|
-
"default_value":
|
|
1524
|
+
"default_value": false
|
|
1399
1525
|
},
|
|
1400
1526
|
{
|
|
1401
1527
|
"name": "header",
|
|
1402
|
-
"type": "text"
|
|
1528
|
+
"type": "text",
|
|
1529
|
+
"depends_on": "./use_state"
|
|
1403
1530
|
},
|
|
1404
1531
|
{
|
|
1405
1532
|
"name": "subheader",
|
|
1406
|
-
"type": "text"
|
|
1533
|
+
"type": "text",
|
|
1534
|
+
"depends_on": "./use_state"
|
|
1407
1535
|
},
|
|
1408
1536
|
{
|
|
1409
1537
|
"name": "start_date",
|
|
1410
1538
|
"type": "datetime",
|
|
1411
|
-
"no_localize": true
|
|
1539
|
+
"no_localize": true,
|
|
1540
|
+
"depends_on": "./use_state"
|
|
1412
1541
|
},
|
|
1413
1542
|
{
|
|
1414
1543
|
"name": "use_main_stream",
|
|
1415
1544
|
"type": "checkbox",
|
|
1416
1545
|
"default_value": false,
|
|
1417
|
-
"hint": "If checked, the stream for the main event will be used instead of one specified in this section"
|
|
1546
|
+
"hint": "If checked, the stream for the main event will be used instead of one specified in this section",
|
|
1547
|
+
"depends_on": "./use_state"
|
|
1418
1548
|
},
|
|
1419
1549
|
{
|
|
1420
1550
|
"name": "stream",
|
|
1421
1551
|
"type": "fabric_link",
|
|
1422
|
-
"video_preview": true
|
|
1552
|
+
"video_preview": true,
|
|
1553
|
+
"depends_on": "./use_state"
|
|
1423
1554
|
},
|
|
1424
1555
|
{
|
|
1425
1556
|
"name": "loop_stream",
|
|
1426
1557
|
"type": "checkbox",
|
|
1427
|
-
"default_value": false
|
|
1558
|
+
"default_value": false,
|
|
1559
|
+
"depends_on": "./use_state"
|
|
1428
1560
|
},
|
|
1429
1561
|
{
|
|
1430
1562
|
"name": "modal_message",
|
|
1431
1563
|
"label": "Modal Message (Minting Start)",
|
|
1432
1564
|
"type": "subsection",
|
|
1433
1565
|
"hint": "If specified, this message will be displayed in a popup modal at the start of this part of the event. You can use this to communicate information to users.",
|
|
1566
|
+
"depends_on": "./use_state",
|
|
1434
1567
|
"fields": [
|
|
1435
1568
|
{
|
|
1436
1569
|
"name": "show",
|
|
@@ -1462,38 +1595,45 @@ const eventSiteSpec = {
|
|
|
1462
1595
|
},
|
|
1463
1596
|
{
|
|
1464
1597
|
"name": "header",
|
|
1465
|
-
"type": "text"
|
|
1598
|
+
"type": "text",
|
|
1599
|
+
"depends_on": "./use_state"
|
|
1466
1600
|
},
|
|
1467
1601
|
{
|
|
1468
1602
|
"name": "subheader",
|
|
1469
|
-
"type": "text"
|
|
1603
|
+
"type": "text",
|
|
1604
|
+
"depends_on": "./use_state"
|
|
1470
1605
|
},
|
|
1471
1606
|
{
|
|
1472
1607
|
"name": "start_date",
|
|
1473
1608
|
"type": "datetime",
|
|
1474
|
-
"no_localize": true
|
|
1609
|
+
"no_localize": true,
|
|
1610
|
+
"depends_on": "./use_state"
|
|
1475
1611
|
},
|
|
1476
1612
|
{
|
|
1477
1613
|
"name": "use_main_stream",
|
|
1478
1614
|
"type": "checkbox",
|
|
1479
1615
|
"default_value": false,
|
|
1480
|
-
"hint": "If checked, the stream for the main event will be used instead of one specified in this section"
|
|
1616
|
+
"hint": "If checked, the stream for the main event will be used instead of one specified in this section",
|
|
1617
|
+
"depends_on": "./use_state"
|
|
1481
1618
|
},
|
|
1482
1619
|
{
|
|
1483
1620
|
"name": "stream",
|
|
1484
1621
|
"type": "fabric_link",
|
|
1485
|
-
"video_preview": true
|
|
1622
|
+
"video_preview": true,
|
|
1623
|
+
"depends_on": "./use_state"
|
|
1486
1624
|
},
|
|
1487
1625
|
{
|
|
1488
1626
|
"name": "loop_stream",
|
|
1489
1627
|
"type": "checkbox",
|
|
1490
|
-
"default_value": false
|
|
1628
|
+
"default_value": false,
|
|
1629
|
+
"depends_on": "./use_state"
|
|
1491
1630
|
},
|
|
1492
1631
|
{
|
|
1493
1632
|
"name": "modal_message",
|
|
1494
1633
|
"label": "Modal Message (Event Ended)",
|
|
1495
1634
|
"type": "subsection",
|
|
1496
1635
|
"hint": "If specified, this message will be displayed in a popup modal at the start of this part of the event. You can use this to communicate information to users.",
|
|
1636
|
+
"depends_on": "./use_state",
|
|
1497
1637
|
"fields": [
|
|
1498
1638
|
{
|
|
1499
1639
|
"name": "show",
|
package/typeSpecs/NFTTemplate.js
CHANGED
|
@@ -129,6 +129,11 @@ const NFTTemplateSpec = {
|
|
|
129
129
|
"type": "checkbox",
|
|
130
130
|
"default_value": true
|
|
131
131
|
},
|
|
132
|
+
{
|
|
133
|
+
"name": "has_audio",
|
|
134
|
+
"type": "checkbox",
|
|
135
|
+
"default_value": false
|
|
136
|
+
},
|
|
132
137
|
{
|
|
133
138
|
"name": "token_uri",
|
|
134
139
|
"label": "Token URI",
|
|
@@ -145,7 +150,8 @@ const NFTTemplateSpec = {
|
|
|
145
150
|
"loop": true,
|
|
146
151
|
"hide_controls": true,
|
|
147
152
|
"muted": true,
|
|
148
|
-
"autoplay": true
|
|
153
|
+
"autoplay": true,
|
|
154
|
+
"check_has_audio_flag": true
|
|
149
155
|
},
|
|
150
156
|
{
|
|
151
157
|
"name": "external_url",
|
|
@@ -157,7 +163,8 @@ const NFTTemplateSpec = {
|
|
|
157
163
|
"loop": true,
|
|
158
164
|
"hide_controls": true,
|
|
159
165
|
"muted": true,
|
|
160
|
-
"autoplay": true
|
|
166
|
+
"autoplay": true,
|
|
167
|
+
"check_has_audio_flag": true
|
|
161
168
|
},
|
|
162
169
|
{
|
|
163
170
|
"name": "background_color",
|
|
@@ -185,7 +192,8 @@ const NFTTemplateSpec = {
|
|
|
185
192
|
"loop": true,
|
|
186
193
|
"hide_controls": true,
|
|
187
194
|
"muted": true,
|
|
188
|
-
"autoplay": true
|
|
195
|
+
"autoplay": true,
|
|
196
|
+
"check_has_audio_flag": true
|
|
189
197
|
}
|
|
190
198
|
]
|
|
191
199
|
},
|