brickset_api 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (116) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.ruby-gemset +1 -0
  4. data/.ruby-version +1 -0
  5. data/.travis.yml +4 -0
  6. data/Gemfile +6 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +145 -0
  9. data/Rakefile +6 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +8 -0
  12. data/brickset.gemspec +30 -0
  13. data/lib/brickset.rb +55 -0
  14. data/lib/brickset/api/auth.rb +22 -0
  15. data/lib/brickset/api/collection/advanced.rb +34 -0
  16. data/lib/brickset/api/collection/minifig.rb +35 -0
  17. data/lib/brickset/api/collection/set.rb +117 -0
  18. data/lib/brickset/api/set.rb +157 -0
  19. data/lib/brickset/client.rb +56 -0
  20. data/lib/brickset/configuration.rb +9 -0
  21. data/lib/brickset/elements/additional_image.rb +13 -0
  22. data/lib/brickset/elements/collection_detail.rb +28 -0
  23. data/lib/brickset/elements/collection_total.rb +15 -0
  24. data/lib/brickset/elements/condition.rb +11 -0
  25. data/lib/brickset/elements/instruction.rb +12 -0
  26. data/lib/brickset/elements/minifig_collection.rb +15 -0
  27. data/lib/brickset/elements/review.rb +20 -0
  28. data/lib/brickset/elements/set.rb +67 -0
  29. data/lib/brickset/elements/subtheme.rb +15 -0
  30. data/lib/brickset/elements/theme.rb +15 -0
  31. data/lib/brickset/elements/user_note.rb +12 -0
  32. data/lib/brickset/elements/year.rb +13 -0
  33. data/lib/brickset/version.rb +3 -0
  34. data/spec/brickset/api/auth_spec.rb +84 -0
  35. data/spec/brickset/api/collection/advanced_spec.rb +59 -0
  36. data/spec/brickset/api/collection/minifig_spec.rb +95 -0
  37. data/spec/brickset/api/collection/set_spec.rb +350 -0
  38. data/spec/brickset/api/set_spec.rb +658 -0
  39. data/spec/brickset/client_spec.rb +155 -0
  40. data/spec/brickset/configuration_spec.rb +9 -0
  41. data/spec/brickset/elements/additional_image_spec.rb +26 -0
  42. data/spec/brickset/elements/collection_detail_spec.rb +40 -0
  43. data/spec/brickset/elements/collection_total_spec.rb +27 -0
  44. data/spec/brickset/elements/condition_spec.rb +23 -0
  45. data/spec/brickset/elements/instruction_spec.rb +24 -0
  46. data/spec/brickset/elements/minifig_collection_spec.rb +27 -0
  47. data/spec/brickset/elements/review_spec.rb +32 -0
  48. data/spec/brickset/elements/set_spec.rb +72 -0
  49. data/spec/brickset/elements/subtheme_spec.rb +27 -0
  50. data/spec/brickset/elements/theme_spec.rb +27 -0
  51. data/spec/brickset/elements/user_note_spec.rb +24 -0
  52. data/spec/brickset/elements/year_spec.rb +25 -0
  53. data/spec/brickset_spec.rb +59 -0
  54. data/spec/fixtures/api_key_invalid.xml +2 -0
  55. data/spec/fixtures/api_key_valid.xml +2 -0
  56. data/spec/fixtures/get_additional_images.xml +24 -0
  57. data/spec/fixtures/get_additional_images_no_result.xml +2 -0
  58. data/spec/fixtures/get_collection_detail.xml +23 -0
  59. data/spec/fixtures/get_collection_detail_conditions.xml +24 -0
  60. data/spec/fixtures/get_collection_detail_no_result.xml +2 -0
  61. data/spec/fixtures/get_collection_totals.xml +8 -0
  62. data/spec/fixtures/get_collection_totals_no_result.xml +8 -0
  63. data/spec/fixtures/get_instructions.xml +7 -0
  64. data/spec/fixtures/get_instructions_no_result.xml +2 -0
  65. data/spec/fixtures/get_minifig_collection.xml +31 -0
  66. data/spec/fixtures/get_minifig_collection_owned.xml +17 -0
  67. data/spec/fixtures/get_minifig_collection_wanted.xml +10 -0
  68. data/spec/fixtures/get_recently_updated_sets.xml +52 -0
  69. data/spec/fixtures/get_recently_updated_sets_invalid_key.xml +1 -0
  70. data/spec/fixtures/get_reviews.xml +28 -0
  71. data/spec/fixtures/get_reviews_no_result.xml +2 -0
  72. data/spec/fixtures/get_set.xml +52 -0
  73. data/spec/fixtures/get_set_no_result.xml +2 -0
  74. data/spec/fixtures/get_sets.xml +101 -0
  75. data/spec/fixtures/get_sets_no_result.xml +2 -0
  76. data/spec/fixtures/get_subthemes.xml +24 -0
  77. data/spec/fixtures/get_subthemes_for_user.xml +24 -0
  78. data/spec/fixtures/get_subthemes_for_user_no_result.xml +2 -0
  79. data/spec/fixtures/get_subthemes_for_user_owned.xml +24 -0
  80. data/spec/fixtures/get_subthemes_for_user_wanted.xml +31 -0
  81. data/spec/fixtures/get_subthemes_no_result.xml +2 -0
  82. data/spec/fixtures/get_themes.xml +17 -0
  83. data/spec/fixtures/get_themes_for_user.xml +17 -0
  84. data/spec/fixtures/get_themes_for_user_no_result.xml +2 -0
  85. data/spec/fixtures/get_themes_for_user_owned.xml +17 -0
  86. data/spec/fixtures/get_themes_for_user_wanted.xml +25 -0
  87. data/spec/fixtures/get_themes_no_result.xml +2 -0
  88. data/spec/fixtures/get_user_notes.xml +11 -0
  89. data/spec/fixtures/get_user_notes_no_result.xml +2 -0
  90. data/spec/fixtures/get_years.xml +18 -0
  91. data/spec/fixtures/get_years_for_user.xml +18 -0
  92. data/spec/fixtures/get_years_for_user_no_result.xml +2 -0
  93. data/spec/fixtures/get_years_for_user_owned.xml +13 -0
  94. data/spec/fixtures/get_years_for_user_wanted.xml +13 -0
  95. data/spec/fixtures/get_years_no_result.xml +2 -0
  96. data/spec/fixtures/login.xml +2 -0
  97. data/spec/fixtures/login_invalid_credentials.xml +2 -0
  98. data/spec/fixtures/login_invalid_key.xml +2 -0
  99. data/spec/fixtures/set_collection.xml +2 -0
  100. data/spec/fixtures/set_collection_invalid.xml +2 -0
  101. data/spec/fixtures/set_collection_owns.xml +2 -0
  102. data/spec/fixtures/set_collection_owns_invalid.xml +2 -0
  103. data/spec/fixtures/set_collection_qty_owned.xml +2 -0
  104. data/spec/fixtures/set_collection_qty_owned_invalid.xml +2 -0
  105. data/spec/fixtures/set_collection_user_notes.xml +2 -0
  106. data/spec/fixtures/set_collection_user_notes_invalid.xml +2 -0
  107. data/spec/fixtures/set_collection_wants.xml +2 -0
  108. data/spec/fixtures/set_collection_wants_invalid.xml +2 -0
  109. data/spec/fixtures/set_minifig_collection.xml +2 -0
  110. data/spec/fixtures/set_minifig_collection_invalid.xml +2 -0
  111. data/spec/fixtures/set_user_rating.xml +2 -0
  112. data/spec/fixtures/set_user_rating_invalid.xml +2 -0
  113. data/spec/fixtures/token_invalid.xml +2 -0
  114. data/spec/fixtures/token_valid.xml +2 -0
  115. data/spec/spec_helper.rb +43 -0
  116. metadata +355 -0
@@ -0,0 +1,52 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfSets xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="https://brickset.com/api/">
3
+ <sets>
4
+ <setID>5860</setID>
5
+ <number>10179</number>
6
+ <numberVariant>1</numberVariant>
7
+ <name>Ultimate Collector's Millennium Falcon</name>
8
+ <year>2007</year>
9
+ <theme>Star Wars</theme>
10
+ <themeGroup>Licensed</themeGroup>
11
+ <subtheme>Ultimate Collector Series</subtheme>
12
+ <pieces>5197</pieces>
13
+ <minifigs>5</minifigs>
14
+ <image>true</image>
15
+ <imageFilename>10179-1</imageFilename>
16
+ <thumbnailURL>https://images.brickset.com/sets/thumbs/tn_10179-1_jpg.jpg</thumbnailURL>
17
+ <largeThumbnailURL>https://images.brickset.com/sets/small/10179-1.jpg</largeThumbnailURL>
18
+ <imageURL>https://images.brickset.com/sets/images/10179-1.jpg</imageURL>
19
+ <bricksetURL>https://brickset.com/sets/10179-1</bricksetURL>
20
+ <released>true</released>
21
+ <owned>false</owned>
22
+ <wanted>true</wanted>
23
+ <qtyOwned>0</qtyOwned>
24
+ <userNotes>A long time ago in a galaxy far, far away...</userNotes>
25
+ <ACMDataCount>0</ACMDataCount>
26
+ <ownedByTotal>3807</ownedByTotal>
27
+ <wantedByTotal>9349</wantedByTotal>
28
+ <UKRetailPrice>342.49</UKRetailPrice>
29
+ <USRetailPrice>499.99</USRetailPrice>
30
+ <CARetailPrice />
31
+ <EURetailPrice />
32
+ <USDateAddedToSAH>2007-10-24</USDateAddedToSAH>
33
+ <USDateRemovedFromSAH>2010-05-04</USDateRemovedFromSAH>
34
+ <rating>4.76190476190476</rating>
35
+ <reviewCount>21</reviewCount>
36
+ <packagingType>Box</packagingType>
37
+ <availability>LEGO exclusive</availability>
38
+ <instructionsCount>1</instructionsCount>
39
+ <additionalImageCount>5</additionalImageCount>
40
+ <ageMin>16</ageMin>
41
+ <ageMax />
42
+ <height />
43
+ <width />
44
+ <depth />
45
+ <weight />
46
+ <category>Normal</category>
47
+ <userRating>0</userRating>
48
+ <EAN />
49
+ <UPC />
50
+ <lastUpdated>2017-08-23T21:44:34.273</lastUpdated>
51
+ </sets>
52
+ </ArrayOfSets>
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfSets xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:nil="true" xmlns="https://brickset.com/api/" />
@@ -0,0 +1,101 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfSets xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="https://brickset.com/api/">
3
+ <sets>
4
+ <setID>5860</setID>
5
+ <number>10179</number>
6
+ <numberVariant>1</numberVariant>
7
+ <name>Ultimate Collector's Millennium Falcon</name>
8
+ <year>2007</year>
9
+ <theme>Star Wars</theme>
10
+ <themeGroup>Licensed</themeGroup>
11
+ <subtheme>Ultimate Collector Series</subtheme>
12
+ <pieces>5197</pieces>
13
+ <minifigs>5</minifigs>
14
+ <image>true</image>
15
+ <imageFilename>10179-1</imageFilename>
16
+ <thumbnailURL>https://images.brickset.com/sets/thumbs/tn_10179-1_jpg.jpg</thumbnailURL>
17
+ <largeThumbnailURL>https://images.brickset.com/sets/small/10179-1.jpg</largeThumbnailURL>
18
+ <imageURL>https://images.brickset.com/sets/images/10179-1.jpg</imageURL>
19
+ <bricksetURL>https://brickset.com/sets/10179-1</bricksetURL>
20
+ <released>true</released>
21
+ <owned>false</owned>
22
+ <wanted>true</wanted>
23
+ <qtyOwned>0</qtyOwned>
24
+ <userNotes>A long time ago in a galaxy far, far away...</userNotes>
25
+ <ACMDataCount>0</ACMDataCount>
26
+ <ownedByTotal>3807</ownedByTotal>
27
+ <wantedByTotal>9349</wantedByTotal>
28
+ <UKRetailPrice>342.49</UKRetailPrice>
29
+ <USRetailPrice>499.99</USRetailPrice>
30
+ <CARetailPrice />
31
+ <EURetailPrice />
32
+ <USDateAddedToSAH>2007-10-24</USDateAddedToSAH>
33
+ <USDateRemovedFromSAH>2010-05-04</USDateRemovedFromSAH>
34
+ <rating>4.76190476190476</rating>
35
+ <reviewCount>21</reviewCount>
36
+ <packagingType>Box</packagingType>
37
+ <availability>LEGO exclusive</availability>
38
+ <instructionsCount>1</instructionsCount>
39
+ <additionalImageCount>5</additionalImageCount>
40
+ <ageMin>16</ageMin>
41
+ <ageMax />
42
+ <height />
43
+ <width />
44
+ <depth />
45
+ <weight />
46
+ <category>Normal</category>
47
+ <userRating>0</userRating>
48
+ <EAN />
49
+ <UPC />
50
+ <lastUpdated>2017-08-23T21:44:34.273</lastUpdated>
51
+ </sets>
52
+ <sets>
53
+ <setID>26725</setID>
54
+ <number>75192</number>
55
+ <numberVariant>1</numberVariant>
56
+ <name>Millennium Falcon</name>
57
+ <year>2017</year>
58
+ <theme>Star Wars</theme>
59
+ <themeGroup>Licensed</themeGroup>
60
+ <subtheme>Ultimate Collector Series</subtheme>
61
+ <pieces>7541</pieces>
62
+ <minifigs>8</minifigs>
63
+ <image>true</image>
64
+ <imageFilename>75192-1</imageFilename>
65
+ <thumbnailURL>https://images.brickset.com/sets/thumbs/tn_75192-1_jpg.jpg</thumbnailURL>
66
+ <largeThumbnailURL>https://images.brickset.com/sets/small/75192-1.jpg</largeThumbnailURL>
67
+ <imageURL>https://images.brickset.com/sets/images/75192-1.jpg</imageURL>
68
+ <bricksetURL>https://brickset.com/sets/75192-1</bricksetURL>
69
+ <released>true</released>
70
+ <owned>true</owned>
71
+ <wanted>true</wanted>
72
+ <qtyOwned>1</qtyOwned>
73
+ <userNotes />
74
+ <ACMDataCount>0</ACMDataCount>
75
+ <ownedByTotal>5194</ownedByTotal>
76
+ <wantedByTotal>4551</wantedByTotal>
77
+ <UKRetailPrice>649.99</UKRetailPrice>
78
+ <USRetailPrice>799.99</USRetailPrice>
79
+ <CARetailPrice>899.99</CARetailPrice>
80
+ <EURetailPrice>799.99</EURetailPrice>
81
+ <USDateAddedToSAH>2018-01-10</USDateAddedToSAH>
82
+ <USDateRemovedFromSAH />
83
+ <rating>5</rating>
84
+ <reviewCount>3</reviewCount>
85
+ <packagingType>Box</packagingType>
86
+ <availability>LEGO exclusive</availability>
87
+ <instructionsCount>2</instructionsCount>
88
+ <additionalImageCount>61</additionalImageCount>
89
+ <ageMin>16</ageMin>
90
+ <ageMax />
91
+ <height />
92
+ <width />
93
+ <depth />
94
+ <weight />
95
+ <category>Normal</category>
96
+ <userRating>4</userRating>
97
+ <EAN />
98
+ <UPC />
99
+ <lastUpdated>2017-09-14T09:33:29.167</lastUpdated>
100
+ </sets>
101
+ </ArrayOfSets>
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfSets xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:nil="true" xmlns="https://brickset.com/api/" />
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfSubthemes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="https://brickset.com/api/">
3
+ <subthemes>
4
+ <theme>Star Wars</theme>
5
+ <subtheme>Ultimate Collector Series</subtheme>
6
+ <setCount>30</setCount>
7
+ <yearFrom>2000</yearFrom>
8
+ <yearTo>2018</yearTo>
9
+ </subthemes>
10
+ <subthemes>
11
+ <theme>Star Wars</theme>
12
+ <subtheme>Master Builder Series</subtheme>
13
+ <setCount>1</setCount>
14
+ <yearFrom>2018</yearFrom>
15
+ <yearTo>2018</yearTo>
16
+ </subthemes>
17
+ <subthemes>
18
+ <theme>Star Wars</theme>
19
+ <subtheme>MicroFighters</subtheme>
20
+ <setCount>26</setCount>
21
+ <yearFrom>2014</yearFrom>
22
+ <yearTo>2018</yearTo>
23
+ </subthemes>
24
+ </ArrayOfSubthemes>
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfSubthemes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="https://brickset.com/api/">
3
+ <subthemes>
4
+ <theme>Star Wars</theme>
5
+ <subtheme>Ultimate Collector Series</subtheme>
6
+ <setCount>30</setCount>
7
+ <yearFrom>2000</yearFrom>
8
+ <yearTo>2018</yearTo>
9
+ </subthemes>
10
+ <subthemes>
11
+ <theme>Star Wars</theme>
12
+ <subtheme>Master Builder Series</subtheme>
13
+ <setCount>1</setCount>
14
+ <yearFrom>2018</yearFrom>
15
+ <yearTo>2018</yearTo>
16
+ </subthemes>
17
+ <subthemes>
18
+ <theme>Star Wars</theme>
19
+ <subtheme>MicroFighters</subtheme>
20
+ <setCount>26</setCount>
21
+ <yearFrom>2014</yearFrom>
22
+ <yearTo>2018</yearTo>
23
+ </subthemes>
24
+ </ArrayOfSubthemes>
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfSubthemes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:nil="true" xmlns="https://brickset.com/api/" />
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfSubthemes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="https://brickset.com/api/">
3
+ <subthemes>
4
+ <theme>Star Wars</theme>
5
+ <subtheme>Ultimate Collector Series</subtheme>
6
+ <setCount>1</setCount>
7
+ <yearFrom>0</yearFrom>
8
+ <yearTo>0</yearTo>
9
+ </subthemes>
10
+ <subthemes>
11
+ <theme>Star Wars</theme>
12
+ <subtheme>Master Builder Series</subtheme>
13
+ <setCount>1</setCount>
14
+ <yearFrom>0</yearFrom>
15
+ <yearTo>0</yearTo>
16
+ </subthemes>
17
+ <subthemes>
18
+ <theme>Star Wars</theme>
19
+ <subtheme>MicroFighters</subtheme>
20
+ <setCount>2</setCount>
21
+ <yearFrom>0</yearFrom>
22
+ <yearTo>0</yearTo>
23
+ </subthemes>
24
+ </ArrayOfSubthemes>
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfSubthemes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="https://brickset.com/api/">
3
+ <subthemes>
4
+ <theme>Star Wars</theme>
5
+ <subtheme>Ultimate Collector Series</subtheme>
6
+ <setCount>5</setCount>
7
+ <yearFrom>0</yearFrom>
8
+ <yearTo>0</yearTo>
9
+ </subthemes>
10
+ <subthemes>
11
+ <theme>Star Wars</theme>
12
+ <subtheme>Master Builder Series</subtheme>
13
+ <setCount>2</setCount>
14
+ <yearFrom>0</yearFrom>
15
+ <yearTo>0</yearTo>
16
+ </subthemes>
17
+ <subthemes>
18
+ <theme>Star Wars</theme>
19
+ <subtheme>MicroFighters</subtheme>
20
+ <setCount>1</setCount>
21
+ <yearFrom>0</yearFrom>
22
+ <yearTo>0</yearTo>
23
+ </subthemes>
24
+ <subthemes>
25
+ <theme>Star Wars</theme>
26
+ <subtheme>Solo</subtheme>
27
+ <setCount>1</setCount>
28
+ <yearFrom>0</yearFrom>
29
+ <yearTo>0</yearTo>
30
+ </subthemes>
31
+ </ArrayOfSubthemes>
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfSubthemes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:nil="true" xmlns="https://brickset.com/api/" />
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfThemes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="https://brickset.com/api/">
3
+ <themes>
4
+ <theme>Advanced Models</theme>
5
+ <setCount>61</setCount>
6
+ <subthemeCount>10</subthemeCount>
7
+ <yearFrom>2000</yearFrom>
8
+ <yearTo>2018</yearTo>
9
+ </themes>
10
+ <themes>
11
+ <theme>Star Wars</theme>
12
+ <setCount>821</setCount>
13
+ <subthemeCount>29</subthemeCount>
14
+ <yearFrom>1999</yearFrom>
15
+ <yearTo>2018</yearTo>
16
+ </themes>
17
+ </ArrayOfThemes>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfThemes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="https://brickset.com/api/">
3
+ <themes>
4
+ <theme>Advanced Models</theme>
5
+ <setCount>61</setCount>
6
+ <subthemeCount>10</subthemeCount>
7
+ <yearFrom>2000</yearFrom>
8
+ <yearTo>2018</yearTo>
9
+ </themes>
10
+ <themes>
11
+ <theme>Star Wars</theme>
12
+ <setCount>821</setCount>
13
+ <subthemeCount>29</subthemeCount>
14
+ <yearFrom>1999</yearFrom>
15
+ <yearTo>2018</yearTo>
16
+ </themes>
17
+ </ArrayOfThemes>
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfThemes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:nil="true" xmlns="https://brickset.com/api/" />
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfThemes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="https://brickset.com/api/">
3
+ <themes>
4
+ <theme>Advanced Models</theme>
5
+ <setCount>1</setCount>
6
+ <subthemeCount>0</subthemeCount>
7
+ <yearFrom>0</yearFrom>
8
+ <yearTo>0</yearTo>
9
+ </themes>
10
+ <themes>
11
+ <theme>Star Wars</theme>
12
+ <setCount>26</setCount>
13
+ <subthemeCount>0</subthemeCount>
14
+ <yearFrom>0</yearFrom>
15
+ <yearTo>0</yearTo>
16
+ </themes>
17
+ </ArrayOfThemes>
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfThemes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="https://brickset.com/api/">
3
+ <themes>
4
+ <theme>Advanced Models</theme>
5
+ <setCount>1</setCount>
6
+ <subthemeCount>0</subthemeCount>
7
+ <yearFrom>0</yearFrom>
8
+ <yearTo>0</yearTo>
9
+ </themes>
10
+ <themes>
11
+ <theme>Star Wars</theme>
12
+ <setCount>26</setCount>
13
+ <subthemeCount>0</subthemeCount>
14
+ <yearFrom>0</yearFrom>
15
+ <yearTo>0</yearTo>
16
+ </themes>
17
+ <themes>
18
+ <theme>Dimensions</theme>
19
+ <setCount>3</setCount>
20
+ <subthemeCount>0</subthemeCount>
21
+ <yearFrom>0</yearFrom>
22
+ <yearTo>0</yearTo>
23
+ </themes>
24
+ </ArrayOfThemes>
25
+
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfThemes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:nil="true" xmlns="https://brickset.com/api/" />
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfUserNotes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="https://brickset.com/api/">
3
+ <userNotes>
4
+ <setID>5860</setID>
5
+ <userNotes>A long time ago in a galaxy far, far away...</userNotes>
6
+ </userNotes>
7
+ <userNotes>
8
+ <setID>26725</setID>
9
+ <userNotes>The ship that made the Kessel Run in less than 12 parsecs.</userNotes>
10
+ </userNotes>
11
+ </ArrayOfUserNotes>
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfUserNotes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:nil="true" xmlns="https://brickset.com/api/" />
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfYears xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="https://brickset.com/api/">
3
+ <years>
4
+ <theme>Star Wars</theme>
5
+ <year>2016</year>
6
+ <setCount>67</setCount>
7
+ </years>
8
+ <years>
9
+ <theme>Star Wars</theme>
10
+ <year>2017</year>
11
+ <setCount>66</setCount>
12
+ </years>
13
+ <years>
14
+ <theme>Star Wars</theme>
15
+ <year>2018</year>
16
+ <setCount>64</setCount>
17
+ </years>
18
+ </ArrayOfYears>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfYears xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="https://brickset.com/api/">
3
+ <years>
4
+ <theme>Star Wars</theme>
5
+ <year>2016</year>
6
+ <setCount>67</setCount>
7
+ </years>
8
+ <years>
9
+ <theme>Star Wars</theme>
10
+ <year>2017</year>
11
+ <setCount>66</setCount>
12
+ </years>
13
+ <years>
14
+ <theme>Star Wars</theme>
15
+ <year>2018</year>
16
+ <setCount>64</setCount>
17
+ </years>
18
+ </ArrayOfYears>
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfYears xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:nil="true" xmlns="https://brickset.com/api/" />
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfYears xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="https://brickset.com/api/">
3
+ <years>
4
+ <theme>Star Wars</theme>
5
+ <year>2017</year>
6
+ <setCount>2</setCount>
7
+ </years>
8
+ <years>
9
+ <theme>Star Wars</theme>
10
+ <year>2018</year>
11
+ <setCount>3</setCount>
12
+ </years>
13
+ </ArrayOfYears>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ArrayOfYears xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="https://brickset.com/api/">
3
+ <years>
4
+ <theme>Star Wars</theme>
5
+ <year>2017</year>
6
+ <setCount>21</setCount>
7
+ </years>
8
+ <years>
9
+ <theme>Star Wars</theme>
10
+ <year>2018</year>
11
+ <setCount>50</setCount>
12
+ </years>
13
+ </ArrayOfYears>