Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | 24x | export const mockListingData = {
banner_urls: ["https://example.com/screenshot"],
categories: [
{ name: "Test category 1", slug: "test-category-1" },
{ name: "Test category 2", slug: "test-category-2" },
{ name: "Test select", slug: "test-select" },
{ name: "Test select secondary", slug: "test-select-secondary" },
],
contacts: [{ url: "https://example.com/contact" }],
description: "lorem ipsum dolor sit amet",
donations: [{ url: "https://example.com/donate" }],
icon_url: "https://example.com/icon",
issues: [{ url: "https://example.com/issues" }],
license: "testing-license",
license_type: "simple",
licenses: [
{ key: "testing-license", name: "testing-license" },
{ key: "random-license", name: "random-license" },
],
primary_category: "test-category-1",
primary_website: "https://example.com",
public_metrics_blacklist: [
"weekly_installed_base_by_operating_system_normalized",
],
public_metrics_distros: false,
public_metrics_enabled: false,
public_metrics_territories: false,
screenshot_urls: ["https://example.com/screenshot"],
secondary_category: "test-category-2",
snap_id: "test_id",
source_code: [{ url: "https://example.com/code" }],
summary: "lorem ispum",
title: "test-snap",
tour_steps: [
{
content:
"<p>Here you can manage the display of your snap listing within the store.</p><p>We’ll give you a quick tour to get you up to speed!</p>",
id: "listing-intro",
title: "Welcome to your snap listing page!",
},
],
update_metadata_on_release: false,
video_urls: "https://example.com/video",
websites: [{ url: "https://example.com" }],
};
|