@progress/kendo-angular-schematics 13.5.0-develop.2 → 13.5.0-develop.4

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 (134) hide show
  1. package/collection.json +9 -27
  2. package/e2e/utils.d.ts +17 -0
  3. package/e2e/utils.js +71 -0
  4. package/e2e/utils.js.map +1 -0
  5. package/package.json +5 -2
  6. package/src/chart/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.__style__.template +6 -0
  7. package/src/chart/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.html.template +1 -0
  8. package/src/chart/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.spec.ts.template +21 -0
  9. package/src/chart/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.ts.template +34 -0
  10. package/src/chart/files/chart.html.include +103 -0
  11. package/src/{charts/circular → chart}/index.d.ts +2 -2
  12. package/src/chart/index.js +238 -0
  13. package/src/chart/index.js.map +1 -0
  14. package/src/chart/schema.d.ts +230 -0
  15. package/src/chart/schema.js +72 -0
  16. package/src/chart/schema.js.map +1 -0
  17. package/src/chart/schema.json +235 -0
  18. package/src/grid/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.__style__.template +6 -0
  19. package/src/grid/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.html.template +1 -0
  20. package/src/grid/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.spec.ts.template +21 -0
  21. package/src/grid/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.ts.template +37 -0
  22. package/src/grid/files/__name@dasherize@if-flat__/__name@dasherize__.sample-data.ts.template +1233 -0
  23. package/src/grid/files/{html/__name@dasherize__/__name@dasherize__.component.html → grid.html.include} +4 -9
  24. package/src/grid/index.d.ts +2 -2
  25. package/src/grid/index.js +77 -61
  26. package/src/grid/index.js.map +1 -1
  27. package/src/grid/schema.d.ts +12 -11
  28. package/src/grid/schema.js +16 -5
  29. package/src/grid/schema.js.map +1 -1
  30. package/src/grid/schema.json +82 -37
  31. package/src/ngAdd/index.js +2 -1
  32. package/src/ngAdd/index.js.map +1 -1
  33. package/src/rules/index.js +2 -1
  34. package/src/rules/index.js.map +1 -1
  35. package/src/scheduler/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.__style__.template +6 -0
  36. package/src/scheduler/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.html.template +1 -0
  37. package/src/scheduler/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.spec.ts.template +21 -0
  38. package/src/scheduler/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.ts.template +26 -0
  39. package/src/scheduler/files/{events-utc.ts → __name@dasherize@if-flat__/__name@dasherize__.sample-data.ts.template} +0 -6
  40. package/src/scheduler/files/scheduler.html.include +7 -0
  41. package/src/scheduler/index.d.ts +2 -2
  42. package/src/scheduler/index.js +54 -32
  43. package/src/scheduler/index.js.map +1 -1
  44. package/src/scheduler/schema.d.ts +10 -2
  45. package/src/scheduler/schema.json +78 -2
  46. package/src/third_party/d3fc/d3fc-rebind/rebindAll.js +32 -0
  47. package/src/third_party/d3fc/day.js +61 -0
  48. package/src/third_party/d3fc/duration.js +34 -0
  49. package/src/third_party/d3fc/filter/skipWeekends.js +32 -0
  50. package/src/third_party/d3fc/financial.js +184 -0
  51. package/src/third_party/d3fc/fn.js +31 -0
  52. package/src/third_party/d3fc/geometricBrownianMotion.js +94 -0
  53. package/src/third_party/d3fc/interval.js +89 -0
  54. package/src/third_party/d3fc/randomNormal.js +49 -0
  55. package/src/third_party/d3fc/year.js +71 -0
  56. package/src/third_party/index.d.ts +28 -0
  57. package/src/third_party/index.js +40 -0
  58. package/src/third_party/index.js.map +1 -0
  59. package/src/third_party/index.v13.d.ts +13 -0
  60. package/src/third_party/index.v13.js +67 -0
  61. package/src/third_party/index.v13.js.map +1 -0
  62. package/src/utils/ast-utils.js +2 -1
  63. package/src/utils/ast-utils.js.map +1 -1
  64. package/src/utils/bootstrap-module.js +2 -1
  65. package/src/utils/bootstrap-module.js.map +1 -1
  66. package/src/{charts/scatter/schema.js → utils/parse-complex-options.d.ts} +1 -3
  67. package/src/utils/parse-complex-options.js +32 -0
  68. package/src/utils/parse-complex-options.js.map +1 -0
  69. package/src/charts/categorical/files/data.d.ts +0 -5
  70. package/src/charts/categorical/files/data.js +0 -29
  71. package/src/charts/categorical/files/data.js.map +0 -1
  72. package/src/charts/categorical/files/data.ts +0 -25
  73. package/src/charts/categorical/files/html/__name@dasherize__/__name@dasherize__.component.html +0 -46
  74. package/src/charts/categorical/files/html/__name@dasherize__/__name@dasherize__.component.ts +0 -25
  75. package/src/charts/categorical/files/inline/__name@dasherize__/__name@dasherize__.component.ts +0 -69
  76. package/src/charts/categorical/index.d.ts +0 -7
  77. package/src/charts/categorical/index.js +0 -124
  78. package/src/charts/categorical/index.js.map +0 -1
  79. package/src/charts/categorical/schema.d.ts +0 -92
  80. package/src/charts/categorical/schema.js +0 -54
  81. package/src/charts/categorical/schema.js.map +0 -1
  82. package/src/charts/categorical/schema.json +0 -253
  83. package/src/charts/circular/files/data.d.ts +0 -5
  84. package/src/charts/circular/files/data.js +0 -15
  85. package/src/charts/circular/files/data.js.map +0 -1
  86. package/src/charts/circular/files/data.ts +0 -11
  87. package/src/charts/circular/files/html/__name@dasherize__/__name@dasherize__.component.html +0 -27
  88. package/src/charts/circular/files/html/__name@dasherize__/__name@dasherize__.component.ts +0 -23
  89. package/src/charts/circular/files/inline/__name@dasherize__/__name@dasherize__.component.ts +0 -52
  90. package/src/charts/circular/index.js +0 -50
  91. package/src/charts/circular/index.js.map +0 -1
  92. package/src/charts/circular/schema.d.ts +0 -31
  93. package/src/charts/circular/schema.js +0 -7
  94. package/src/charts/circular/schema.js.map +0 -1
  95. package/src/charts/circular/schema.json +0 -175
  96. package/src/charts/scatter/files/data.d.ts +0 -5
  97. package/src/charts/scatter/files/data.js +0 -25
  98. package/src/charts/scatter/files/data.js.map +0 -1
  99. package/src/charts/scatter/files/data.ts +0 -21
  100. package/src/charts/scatter/files/html/__name@dasherize__/__name@dasherize__.component.html +0 -35
  101. package/src/charts/scatter/files/html/__name@dasherize__/__name@dasherize__.component.ts +0 -21
  102. package/src/charts/scatter/files/inline/__name@dasherize__/__name@dasherize__.component.ts +0 -58
  103. package/src/charts/scatter/index.d.ts +0 -7
  104. package/src/charts/scatter/index.js +0 -50
  105. package/src/charts/scatter/index.js.map +0 -1
  106. package/src/charts/scatter/schema.d.ts +0 -32
  107. package/src/charts/scatter/schema.js.map +0 -1
  108. package/src/charts/scatter/schema.json +0 -209
  109. package/src/charts/stock/files/data.d.ts +0 -5
  110. package/src/charts/stock/files/data.js +0 -418
  111. package/src/charts/stock/files/data.js.map +0 -1
  112. package/src/charts/stock/files/data.ts +0 -414
  113. package/src/charts/stock/files/html/__name@dasherize__/__name@dasherize__.component.html +0 -57
  114. package/src/charts/stock/files/html/__name@dasherize__/__name@dasherize__.component.ts +0 -23
  115. package/src/charts/stock/files/inline/__name@dasherize__/__name@dasherize__.component.ts +0 -83
  116. package/src/charts/stock/index.d.ts +0 -7
  117. package/src/charts/stock/index.js +0 -50
  118. package/src/charts/stock/index.js.map +0 -1
  119. package/src/charts/stock/schema.d.ts +0 -36
  120. package/src/charts/stock/schema.js +0 -7
  121. package/src/charts/stock/schema.js.map +0 -1
  122. package/src/charts/stock/schema.json +0 -285
  123. package/src/grid/files/data.d.ts +0 -5
  124. package/src/grid/files/data.js +0 -1241
  125. package/src/grid/files/data.js.map +0 -1
  126. package/src/grid/files/data.ts +0 -1237
  127. package/src/grid/files/html/__name@dasherize__/__name@dasherize__.component.ts +0 -29
  128. package/src/grid/files/inline/__name@dasherize__/__name@dasherize__.component.ts +0 -79
  129. package/src/scheduler/files/events-utc.d.ts +0 -5
  130. package/src/scheduler/files/events-utc.js +0 -846
  131. package/src/scheduler/files/events-utc.js.map +0 -1
  132. package/src/scheduler/files/html/__name@dasherize__/__name@dasherize__.component.html +0 -29
  133. package/src/scheduler/files/html/__name@dasherize__/__name@dasherize__.component.ts +0 -17
  134. package/src/scheduler/files/inline/__name@dasherize__/__name@dasherize__.component.ts +0 -48
@@ -1,1237 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- export const productsSourceCode = `export const products = [{
6
- ProductID: 1,
7
- ProductName: 'Chai',
8
- SupplierID: 1,
9
- CategoryID: 1,
10
- QuantityPerUnit: '10 boxes x 20 bags',
11
- UnitPrice: 18.0000,
12
- UnitsInStock: 39,
13
- UnitsOnOrder: 0,
14
- ReorderLevel: 10,
15
- Discontinued: false,
16
- Category: {
17
- CategoryID: 1,
18
- CategoryName: 'Beverages',
19
- Description: 'Soft drinks, coffees, teas, beers, and ales'
20
- }
21
- }, {
22
- ProductID: 2,
23
- ProductName: 'Chang',
24
- SupplierID: 1,
25
- CategoryID: 1,
26
- QuantityPerUnit: '24 - 12 oz bottles',
27
- UnitPrice: 19.0000,
28
- UnitsInStock: 17,
29
- UnitsOnOrder: 40,
30
- ReorderLevel: 25,
31
- Discontinued: false,
32
- Category: {
33
- CategoryID: 1,
34
- CategoryName: 'Beverages',
35
- Description: 'Soft drinks, coffees, teas, beers, and ales'
36
- }
37
- }, {
38
- ProductID: 3,
39
- ProductName: 'Aniseed Syrup',
40
- SupplierID: 1,
41
- CategoryID: 2,
42
- QuantityPerUnit: '12 - 550 ml bottles',
43
- UnitPrice: 10.0000,
44
- UnitsInStock: 13,
45
- UnitsOnOrder: 70,
46
- ReorderLevel: 25,
47
- Discontinued: false,
48
- Category: {
49
- CategoryID: 2,
50
- CategoryName: 'Condiments',
51
- Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
52
- }
53
- }, {
54
- ProductID: 4,
55
- ProductName: 'Chef Antons Cajun Seasoning',
56
- SupplierID: 2,
57
- CategoryID: 2,
58
- QuantityPerUnit: '48 - 6 oz jars',
59
- UnitPrice: 22.0000,
60
- UnitsInStock: 53,
61
- UnitsOnOrder: 0,
62
- ReorderLevel: 0,
63
- Discontinued: false,
64
- Category: {
65
- CategoryID: 2,
66
- CategoryName: 'Condiments',
67
- Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
68
- }
69
- }, {
70
- ProductID: 5,
71
- ProductName: 'Chef Antons Gumbo Mix',
72
- SupplierID: 2,
73
- CategoryID: 2,
74
- QuantityPerUnit: '36 boxes',
75
- UnitPrice: 21.3500,
76
- UnitsInStock: 0,
77
- UnitsOnOrder: 0,
78
- ReorderLevel: 0,
79
- Discontinued: true,
80
- Category: {
81
- CategoryID: 2,
82
- CategoryName: 'Condiments',
83
- Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
84
- }
85
- }, {
86
- ProductID: 6,
87
- ProductName: 'Grandmas Boysenberry Spread',
88
- SupplierID: 3,
89
- CategoryID: 2,
90
- QuantityPerUnit: '12 - 8 oz jars',
91
- UnitPrice: 25.0000,
92
- UnitsInStock: 120,
93
- UnitsOnOrder: 0,
94
- ReorderLevel: 25,
95
- Discontinued: false,
96
- Category: {
97
- CategoryID: 2,
98
- CategoryName: 'Condiments',
99
- Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
100
- }
101
- }, {
102
- ProductID: 7,
103
- ProductName: 'Uncle Bobs Organic Dried Pears',
104
- SupplierID: 3,
105
- CategoryID: 7,
106
- QuantityPerUnit: '12 - 1 lb pkgs.',
107
- UnitPrice: 30.0000,
108
- UnitsInStock: 15,
109
- UnitsOnOrder: 0,
110
- ReorderLevel: 10,
111
- Discontinued: false,
112
- Category: {
113
- CategoryID: 7,
114
- CategoryName: 'Produce',
115
- Description: 'Dried fruit and bean curd'
116
- }
117
- }, {
118
- ProductID: 8,
119
- ProductName: 'Northwoods Cranberry Sauce',
120
- SupplierID: 3,
121
- CategoryID: 2,
122
- QuantityPerUnit: '12 - 12 oz jars',
123
- UnitPrice: 40.0000,
124
- UnitsInStock: 6,
125
- UnitsOnOrder: 0,
126
- ReorderLevel: 0,
127
- Discontinued: false,
128
- Category: {
129
- CategoryID: 2,
130
- CategoryName: 'Condiments',
131
- Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
132
- }
133
- }, {
134
- ProductID: 9,
135
- ProductName: 'Mishi Kobe Niku',
136
- SupplierID: 4,
137
- CategoryID: 6,
138
- QuantityPerUnit: '18 - 500 g pkgs.',
139
- UnitPrice: 97.0000,
140
- UnitsInStock: 29,
141
- UnitsOnOrder: 0,
142
- ReorderLevel: 0,
143
- Discontinued: true,
144
- Category: {
145
- CategoryID: 6,
146
- CategoryName: 'Meat/Poultry',
147
- Description: 'Prepared meats'
148
- }
149
- }, {
150
- ProductID: 10,
151
- ProductName: 'Ikura',
152
- SupplierID: 4,
153
- CategoryID: 8,
154
- QuantityPerUnit: '12 - 200 ml jars',
155
- UnitPrice: 31.0000,
156
- UnitsInStock: 31,
157
- UnitsOnOrder: 0,
158
- ReorderLevel: 0,
159
- Discontinued: false,
160
- Category: {
161
- CategoryID: 8,
162
- CategoryName: 'Seafood',
163
- Description: 'Seaweed and fish'
164
- }
165
- }, {
166
- ProductID: 11,
167
- ProductName: 'Queso Cabrales',
168
- SupplierID: 5,
169
- CategoryID: 4,
170
- QuantityPerUnit: '1 kg pkg.',
171
- UnitPrice: 21.0000,
172
- UnitsInStock: 22,
173
- UnitsOnOrder: 30,
174
- ReorderLevel: 30,
175
- Discontinued: false,
176
- Category: {
177
- CategoryID: 4,
178
- CategoryName: 'Dairy Products',
179
- Description: 'Cheeses'
180
- }
181
- }, {
182
- ProductID: 12,
183
- ProductName: 'Queso Manchego La Pastora',
184
- SupplierID: 5,
185
- CategoryID: 4,
186
- QuantityPerUnit: '10 - 500 g pkgs.',
187
- UnitPrice: 38.0000,
188
- UnitsInStock: 86,
189
- UnitsOnOrder: 0,
190
- ReorderLevel: 0,
191
- Discontinued: false,
192
- Category: {
193
- CategoryID: 4,
194
- CategoryName: 'Dairy Products',
195
- Description: 'Cheeses'
196
- }
197
- }, {
198
- ProductID: 13,
199
- ProductName: 'Konbu',
200
- SupplierID: 6,
201
- CategoryID: 8,
202
- QuantityPerUnit: '2 kg box',
203
- UnitPrice: 6.0000,
204
- UnitsInStock: 24,
205
- UnitsOnOrder: 0,
206
- ReorderLevel: 5,
207
- Discontinued: false,
208
- Category: {
209
- CategoryID: 8,
210
- CategoryName: 'Seafood',
211
- Description: 'Seaweed and fish'
212
- }
213
- }, {
214
- ProductID: 14,
215
- ProductName: 'Tofu',
216
- SupplierID: 6,
217
- CategoryID: 7,
218
- QuantityPerUnit: '40 - 100 g pkgs.',
219
- UnitPrice: 23.2500,
220
- UnitsInStock: 35,
221
- UnitsOnOrder: 0,
222
- ReorderLevel: 0,
223
- Discontinued: false,
224
- Category: {
225
- CategoryID: 7,
226
- CategoryName: 'Produce',
227
- Description: 'Dried fruit and bean curd'
228
- }
229
- }, {
230
- ProductID: 15,
231
- ProductName: 'Genen Shouyu',
232
- SupplierID: 6,
233
- CategoryID: 2,
234
- QuantityPerUnit: '24 - 250 ml bottles',
235
- UnitPrice: 15.5000,
236
- UnitsInStock: 39,
237
- UnitsOnOrder: 0,
238
- ReorderLevel: 5,
239
- Discontinued: false,
240
- Category: {
241
- CategoryID: 2,
242
- CategoryName: 'Condiments',
243
- Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
244
- }
245
- }, {
246
- ProductID: 16,
247
- ProductName: 'Pavlova',
248
- SupplierID: 7,
249
- CategoryID: 3,
250
- QuantityPerUnit: '32 - 500 g boxes',
251
- UnitPrice: 17.4500,
252
- UnitsInStock: 29,
253
- UnitsOnOrder: 0,
254
- ReorderLevel: 10,
255
- Discontinued: false,
256
- Category: {
257
- CategoryID: 3,
258
- CategoryName: 'Confections',
259
- Description: 'Desserts, candies, and sweet breads'
260
- }
261
- }, {
262
- ProductID: 17,
263
- ProductName: 'Alice Mutton',
264
- SupplierID: 7,
265
- CategoryID: 6,
266
- QuantityPerUnit: '20 - 1 kg tins',
267
- UnitPrice: 39.0000,
268
- UnitsInStock: 0,
269
- UnitsOnOrder: 0,
270
- ReorderLevel: 0,
271
- Discontinued: true,
272
- Category: {
273
- CategoryID: 6,
274
- CategoryName: 'Meat/Poultry',
275
- Description: 'Prepared meats'
276
- }
277
- }, {
278
- ProductID: 18,
279
- ProductName: 'Carnarvon Tigers',
280
- SupplierID: 7,
281
- CategoryID: 8,
282
- QuantityPerUnit: '16 kg pkg.',
283
- UnitPrice: 62.5000,
284
- UnitsInStock: 42,
285
- UnitsOnOrder: 0,
286
- ReorderLevel: 0,
287
- Discontinued: false,
288
- Category: {
289
- CategoryID: 8,
290
- CategoryName: 'Seafood',
291
- Description: 'Seaweed and fish'
292
- }
293
- }, {
294
- ProductID: 19,
295
- ProductName: 'Teatime Chocolate Biscuits',
296
- SupplierID: 8,
297
- CategoryID: 3,
298
- QuantityPerUnit: '10 boxes x 12 pieces',
299
- UnitPrice: 9.2000,
300
- UnitsInStock: 25,
301
- UnitsOnOrder: 0,
302
- ReorderLevel: 5,
303
- Discontinued: false,
304
- Category: {
305
- CategoryID: 3,
306
- CategoryName: 'Confections',
307
- Description: 'Desserts, candies, and sweet breads'
308
- }
309
- }, {
310
- ProductID: 20,
311
- ProductName: 'Sir Rodneys Marmalade',
312
- SupplierID: 8,
313
- CategoryID: 3,
314
- QuantityPerUnit: '30 gift boxes',
315
- UnitPrice: 81.0000,
316
- UnitsInStock: 40,
317
- UnitsOnOrder: 0,
318
- ReorderLevel: 0,
319
- Discontinued: false,
320
- Category: {
321
- CategoryID: 3,
322
- CategoryName: 'Confections',
323
- Description: 'Desserts, candies, and sweet breads'
324
- }
325
- }, {
326
- ProductID: 21,
327
- ProductName: 'Sir Rodneys Scones',
328
- SupplierID: 8,
329
- CategoryID: 3,
330
- QuantityPerUnit: '24 pkgs. x 4 pieces',
331
- UnitPrice: 10.0000,
332
- UnitsInStock: 3,
333
- UnitsOnOrder: 40,
334
- ReorderLevel: 5,
335
- Discontinued: false,
336
- Category: {
337
- CategoryID: 3,
338
- CategoryName: 'Confections',
339
- Description: 'Desserts, candies, and sweet breads'
340
- }
341
- }, {
342
- ProductID: 22,
343
- ProductName: 'Gustafs Knäckebröd',
344
- SupplierID: 9,
345
- CategoryID: 5,
346
- QuantityPerUnit: '24 - 500 g pkgs.',
347
- UnitPrice: 21.0000,
348
- UnitsInStock: 104,
349
- UnitsOnOrder: 0,
350
- ReorderLevel: 25,
351
- Discontinued: false,
352
- Category: {
353
- CategoryID: 5,
354
- CategoryName: 'Grains/Cereals',
355
- Description: 'Breads, crackers, pasta, and cereal'
356
- }
357
- }, {
358
- ProductID: 23,
359
- ProductName: 'Tunnbröd',
360
- SupplierID: 9,
361
- CategoryID: 5,
362
- QuantityPerUnit: '12 - 250 g pkgs.',
363
- UnitPrice: 9.0000,
364
- UnitsInStock: 61,
365
- UnitsOnOrder: 0,
366
- ReorderLevel: 25,
367
- Discontinued: false,
368
- Category: {
369
- CategoryID: 5,
370
- CategoryName: 'Grains/Cereals',
371
- Description: 'Breads, crackers, pasta, and cereal'
372
- }
373
- }, {
374
- ProductID: 24,
375
- ProductName: 'Guaraná Fantástica',
376
- SupplierID: 10,
377
- CategoryID: 1,
378
- QuantityPerUnit: '12 - 355 ml cans',
379
- UnitPrice: 4.5000,
380
- UnitsInStock: 20,
381
- UnitsOnOrder: 0,
382
- ReorderLevel: 0,
383
- Discontinued: true,
384
- Category: {
385
- CategoryID: 1,
386
- CategoryName: 'Beverages',
387
- Description: 'Soft drinks, coffees, teas, beers, and ales'
388
- }
389
- }, {
390
- ProductID: 25,
391
- ProductName: 'NuNuCa Nuß-Nougat-Creme',
392
- SupplierID: 11,
393
- CategoryID: 3,
394
- QuantityPerUnit: '20 - 450 g glasses',
395
- UnitPrice: 14.0000,
396
- UnitsInStock: 76,
397
- UnitsOnOrder: 0,
398
- ReorderLevel: 30,
399
- Discontinued: false,
400
- Category: {
401
- CategoryID: 3,
402
- CategoryName: 'Confections',
403
- Description: 'Desserts, candies, and sweet breads'
404
- }
405
- }, {
406
- ProductID: 26,
407
- ProductName: 'Gumbär Gummibärchen',
408
- SupplierID: 11,
409
- CategoryID: 3,
410
- QuantityPerUnit: '100 - 250 g bags',
411
- UnitPrice: 31.2300,
412
- UnitsInStock: 15,
413
- UnitsOnOrder: 0,
414
- ReorderLevel: 0,
415
- Discontinued: false,
416
- Category: {
417
- CategoryID: 3,
418
- CategoryName: 'Confections',
419
- Description: 'Desserts, candies, and sweet breads'
420
- }
421
- }, {
422
- ProductID: 27,
423
- ProductName: 'Schoggi Schokolade',
424
- SupplierID: 11,
425
- CategoryID: 3,
426
- QuantityPerUnit: '100 - 100 g pieces',
427
- UnitPrice: 43.9000,
428
- UnitsInStock: 49,
429
- UnitsOnOrder: 0,
430
- ReorderLevel: 30,
431
- Discontinued: false,
432
- Category: {
433
- CategoryID: 3,
434
- CategoryName: 'Confections',
435
- Description: 'Desserts, candies, and sweet breads'
436
- }
437
- }, {
438
- ProductID: 28,
439
- ProductName: 'Rössle Sauerkraut',
440
- SupplierID: 12,
441
- CategoryID: 7,
442
- QuantityPerUnit: '25 - 825 g cans',
443
- UnitPrice: 45.6000,
444
- UnitsInStock: 26,
445
- UnitsOnOrder: 0,
446
- ReorderLevel: 0,
447
- Discontinued: true,
448
- Category: {
449
- CategoryID: 7,
450
- CategoryName: 'Produce',
451
- Description: 'Dried fruit and bean curd'
452
- }
453
- }, {
454
- ProductID: 29,
455
- ProductName: 'Thüringer Rostbratwurst',
456
- SupplierID: 12,
457
- CategoryID: 6,
458
- QuantityPerUnit: '50 bags x 30 sausgs.',
459
- UnitPrice: 123.7900,
460
- UnitsInStock: 0,
461
- UnitsOnOrder: 0,
462
- ReorderLevel: 0,
463
- Discontinued: true,
464
- Category: {
465
- CategoryID: 6,
466
- CategoryName: 'Meat/Poultry',
467
- Description: 'Prepared meats'
468
- }
469
- }, {
470
- ProductID: 30,
471
- ProductName: 'Nord-Ost Matjeshering',
472
- SupplierID: 13,
473
- CategoryID: 8,
474
- QuantityPerUnit: '10 - 200 g glasses',
475
- UnitPrice: 25.8900,
476
- UnitsInStock: 10,
477
- UnitsOnOrder: 0,
478
- ReorderLevel: 15,
479
- Discontinued: false,
480
- Category: {
481
- CategoryID: 8,
482
- CategoryName: 'Seafood',
483
- Description: 'Seaweed and fish'
484
- }
485
- }, {
486
- ProductID: 31,
487
- ProductName: 'Gorgonzola Telino',
488
- SupplierID: 14,
489
- CategoryID: 4,
490
- QuantityPerUnit: '12 - 100 g pkgs',
491
- UnitPrice: 12.5000,
492
- UnitsInStock: 0,
493
- UnitsOnOrder: 70,
494
- ReorderLevel: 20,
495
- Discontinued: false,
496
- Category: {
497
- CategoryID: 4,
498
- CategoryName: 'Dairy Products',
499
- Description: 'Cheeses'
500
- }
501
- }, {
502
- ProductID: 32,
503
- ProductName: 'Mascarpone Fabioli',
504
- SupplierID: 14,
505
- CategoryID: 4,
506
- QuantityPerUnit: '24 - 200 g pkgs.',
507
- UnitPrice: 32.0000,
508
- UnitsInStock: 9,
509
- UnitsOnOrder: 40,
510
- ReorderLevel: 25,
511
- Discontinued: false,
512
- Category: {
513
- CategoryID: 4,
514
- CategoryName: 'Dairy Products',
515
- Description: 'Cheeses'
516
- }
517
- }, {
518
- ProductID: 33,
519
- ProductName: 'Geitost',
520
- SupplierID: 15,
521
- CategoryID: 4,
522
- QuantityPerUnit: '500 g',
523
- UnitPrice: 2.5000,
524
- UnitsInStock: 112,
525
- UnitsOnOrder: 0,
526
- ReorderLevel: 20,
527
- Discontinued: false,
528
- Category: {
529
- CategoryID: 4,
530
- CategoryName: 'Dairy Products',
531
- Description: 'Cheeses'
532
- }
533
- }, {
534
- ProductID: 34,
535
- ProductName: 'Sasquatch Ale',
536
- SupplierID: 16,
537
- CategoryID: 1,
538
- QuantityPerUnit: '24 - 12 oz bottles',
539
- UnitPrice: 14.0000,
540
- UnitsInStock: 111,
541
- UnitsOnOrder: 0,
542
- ReorderLevel: 15,
543
- Discontinued: false,
544
- Category: {
545
- CategoryID: 1,
546
- CategoryName: 'Beverages',
547
- Description: 'Soft drinks, coffees, teas, beers, and ales'
548
- }
549
- }, {
550
- ProductID: 35,
551
- ProductName: 'Steeleye Stout',
552
- SupplierID: 16,
553
- CategoryID: 1,
554
- QuantityPerUnit: '24 - 12 oz bottles',
555
- UnitPrice: 18.0000,
556
- UnitsInStock: 20,
557
- UnitsOnOrder: 0,
558
- ReorderLevel: 15,
559
- Discontinued: false,
560
- Category: {
561
- CategoryID: 1,
562
- CategoryName: 'Beverages',
563
- Description: 'Soft drinks, coffees, teas, beers, and ales'
564
- }
565
- }, {
566
- ProductID: 36,
567
- ProductName: 'Inlagd Sill',
568
- SupplierID: 17,
569
- CategoryID: 8,
570
- QuantityPerUnit: '24 - 250 g jars',
571
- UnitPrice: 19.0000,
572
- UnitsInStock: 112,
573
- UnitsOnOrder: 0,
574
- ReorderLevel: 20,
575
- Discontinued: false,
576
- Category: {
577
- CategoryID: 8,
578
- CategoryName: 'Seafood',
579
- Description: 'Seaweed and fish'
580
- }
581
- }, {
582
- ProductID: 37,
583
- ProductName: 'Gravad lax',
584
- SupplierID: 17,
585
- CategoryID: 8,
586
- QuantityPerUnit: '12 - 500 g pkgs.',
587
- UnitPrice: 26.0000,
588
- UnitsInStock: 11,
589
- UnitsOnOrder: 50,
590
- ReorderLevel: 25,
591
- Discontinued: false,
592
- Category: {
593
- CategoryID: 8,
594
- CategoryName: 'Seafood',
595
- Description: 'Seaweed and fish'
596
- }
597
- }, {
598
- ProductID: 38,
599
- ProductName: 'Côte de Blaye',
600
- SupplierID: 18,
601
- CategoryID: 1,
602
- QuantityPerUnit: '12 - 75 cl bottles',
603
- UnitPrice: 263.5000,
604
- UnitsInStock: 17,
605
- UnitsOnOrder: 0,
606
- ReorderLevel: 15,
607
- Discontinued: false,
608
- Category: {
609
- CategoryID: 1,
610
- CategoryName: 'Beverages',
611
- Description: 'Soft drinks, coffees, teas, beers, and ales'
612
- }
613
- }, {
614
- ProductID: 39,
615
- ProductName: 'Chartreuse verte',
616
- SupplierID: 18,
617
- CategoryID: 1,
618
- QuantityPerUnit: '750 cc per bottle',
619
- UnitPrice: 18.0000,
620
- UnitsInStock: 69,
621
- UnitsOnOrder: 0,
622
- ReorderLevel: 5,
623
- Discontinued: false,
624
- Category: {
625
- CategoryID: 1,
626
- CategoryName: 'Beverages',
627
- Description: 'Soft drinks, coffees, teas, beers, and ales'
628
- }
629
- }, {
630
- ProductID: 40,
631
- ProductName: 'Boston Crab Meat',
632
- SupplierID: 19,
633
- CategoryID: 8,
634
- QuantityPerUnit: '24 - 4 oz tins',
635
- UnitPrice: 18.4000,
636
- UnitsInStock: 123,
637
- UnitsOnOrder: 0,
638
- ReorderLevel: 30,
639
- Discontinued: false,
640
- Category: {
641
- CategoryID: 8,
642
- CategoryName: 'Seafood',
643
- Description: 'Seaweed and fish'
644
- }
645
- }, {
646
- ProductID: 41,
647
- ProductName: 'Jacks New England Clam Chowder',
648
- SupplierID: 19,
649
- CategoryID: 8,
650
- QuantityPerUnit: '12 - 12 oz cans',
651
- UnitPrice: 9.6500,
652
- UnitsInStock: 85,
653
- UnitsOnOrder: 0,
654
- ReorderLevel: 10,
655
- Discontinued: false,
656
- Category: {
657
- CategoryID: 8,
658
- CategoryName: 'Seafood',
659
- Description: 'Seaweed and fish'
660
- }
661
- }, {
662
- ProductID: 42,
663
- ProductName: 'Singaporean Hokkien Fried Mee',
664
- SupplierID: 20,
665
- CategoryID: 5,
666
- QuantityPerUnit: '32 - 1 kg pkgs.',
667
- UnitPrice: 14.0000,
668
- UnitsInStock: 26,
669
- UnitsOnOrder: 0,
670
- ReorderLevel: 0,
671
- Discontinued: true,
672
- Category: {
673
- CategoryID: 5,
674
- CategoryName: 'Grains/Cereals',
675
- Description: 'Breads, crackers, pasta, and cereal'
676
- }
677
- }, {
678
- ProductID: 43,
679
- ProductName: 'Ipoh Coffee',
680
- SupplierID: 20,
681
- CategoryID: 1,
682
- QuantityPerUnit: '16 - 500 g tins',
683
- UnitPrice: 46.0000,
684
- UnitsInStock: 17,
685
- UnitsOnOrder: 10,
686
- ReorderLevel: 25,
687
- Discontinued: false,
688
- Category: {
689
- CategoryID: 1,
690
- CategoryName: 'Beverages',
691
- Description: 'Soft drinks, coffees, teas, beers, and ales'
692
- }
693
- }, {
694
- ProductID: 44,
695
- ProductName: 'Gula Malacca',
696
- SupplierID: 20,
697
- CategoryID: 2,
698
- QuantityPerUnit: '20 - 2 kg bags',
699
- UnitPrice: 19.4500,
700
- UnitsInStock: 27,
701
- UnitsOnOrder: 0,
702
- ReorderLevel: 15,
703
- Discontinued: false,
704
- Category: {
705
- CategoryID: 2,
706
- CategoryName: 'Condiments',
707
- Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
708
- }
709
- }, {
710
- ProductID: 45,
711
- ProductName: 'Rogede sild',
712
- SupplierID: 21,
713
- CategoryID: 8,
714
- QuantityPerUnit: '1k pkg.',
715
- UnitPrice: 9.5000,
716
- UnitsInStock: 5,
717
- UnitsOnOrder: 70,
718
- ReorderLevel: 15,
719
- Discontinued: false,
720
- Category: {
721
- CategoryID: 8,
722
- CategoryName: 'Seafood',
723
- Description: 'Seaweed and fish'
724
- }
725
- }, {
726
- ProductID: 46,
727
- ProductName: 'Spegesild',
728
- SupplierID: 21,
729
- CategoryID: 8,
730
- QuantityPerUnit: '4 - 450 g glasses',
731
- UnitPrice: 12.0000,
732
- UnitsInStock: 95,
733
- UnitsOnOrder: 0,
734
- ReorderLevel: 0,
735
- Discontinued: false,
736
- Category: {
737
- CategoryID: 8,
738
- CategoryName: 'Seafood',
739
- Description: 'Seaweed and fish'
740
- }
741
- }, {
742
- ProductID: 47,
743
- ProductName: 'Zaanse koeken',
744
- SupplierID: 22,
745
- CategoryID: 3,
746
- QuantityPerUnit: '10 - 4 oz boxes',
747
- UnitPrice: 9.5000,
748
- UnitsInStock: 36,
749
- UnitsOnOrder: 0,
750
- ReorderLevel: 0,
751
- Discontinued: false,
752
- Category: {
753
- CategoryID: 3,
754
- CategoryName: 'Confections',
755
- Description: 'Desserts, candies, and sweet breads'
756
- }
757
- }, {
758
- ProductID: 48,
759
- ProductName: 'Chocolade',
760
- SupplierID: 22,
761
- CategoryID: 3,
762
- QuantityPerUnit: '10 pkgs.',
763
- UnitPrice: 12.7500,
764
- UnitsInStock: 15,
765
- UnitsOnOrder: 70,
766
- ReorderLevel: 25,
767
- Discontinued: false,
768
- Category: {
769
- CategoryID: 3,
770
- CategoryName: 'Confections',
771
- Description: 'Desserts, candies, and sweet breads'
772
- }
773
- }, {
774
- ProductID: 49,
775
- ProductName: 'Maxilaku',
776
- SupplierID: 23,
777
- CategoryID: 3,
778
- QuantityPerUnit: '24 - 50 g pkgs.',
779
- UnitPrice: 20.0000,
780
- UnitsInStock: 10,
781
- UnitsOnOrder: 60,
782
- ReorderLevel: 15,
783
- Discontinued: false,
784
- Category: {
785
- CategoryID: 3,
786
- CategoryName: 'Confections',
787
- Description: 'Desserts, candies, and sweet breads'
788
- }
789
- }, {
790
- ProductID: 50,
791
- ProductName: 'Valkoinen suklaa',
792
- SupplierID: 23,
793
- CategoryID: 3,
794
- QuantityPerUnit: '12 - 100 g bars',
795
- UnitPrice: 16.2500,
796
- UnitsInStock: 65,
797
- UnitsOnOrder: 0,
798
- ReorderLevel: 30,
799
- Discontinued: false,
800
- Category: {
801
- CategoryID: 3,
802
- CategoryName: 'Confections',
803
- Description: 'Desserts, candies, and sweet breads'
804
- }
805
- }, {
806
- ProductID: 51,
807
- ProductName: 'Manjimup Dried Apples',
808
- SupplierID: 24,
809
- CategoryID: 7,
810
- QuantityPerUnit: '50 - 300 g pkgs.',
811
- UnitPrice: 53.0000,
812
- UnitsInStock: 20,
813
- UnitsOnOrder: 0,
814
- ReorderLevel: 10,
815
- Discontinued: false,
816
- Category: {
817
- CategoryID: 7,
818
- CategoryName: 'Produce',
819
- Description: 'Dried fruit and bean curd'
820
- }
821
- }, {
822
- ProductID: 52,
823
- ProductName: 'Filo Mix',
824
- SupplierID: 24,
825
- CategoryID: 5,
826
- QuantityPerUnit: '16 - 2 kg boxes',
827
- UnitPrice: 7.0000,
828
- UnitsInStock: 38,
829
- UnitsOnOrder: 0,
830
- ReorderLevel: 25,
831
- Discontinued: false,
832
- Category: {
833
- CategoryID: 5,
834
- CategoryName: 'Grains/Cereals',
835
- Description: 'Breads, crackers, pasta, and cereal'
836
- }
837
- }, {
838
- ProductID: 53,
839
- ProductName: 'Perth Pasties',
840
- SupplierID: 24,
841
- CategoryID: 6,
842
- QuantityPerUnit: '48 pieces',
843
- UnitPrice: 32.8000,
844
- UnitsInStock: 0,
845
- UnitsOnOrder: 0,
846
- ReorderLevel: 0,
847
- Discontinued: true,
848
- Category: {
849
- CategoryID: 6,
850
- CategoryName: 'Meat/Poultry',
851
- Description: 'Prepared meats'
852
- }
853
- }, {
854
- ProductID: 54,
855
- ProductName: 'Tourtière',
856
- SupplierID: 25,
857
- CategoryID: 6,
858
- QuantityPerUnit: '16 pies',
859
- UnitPrice: 7.4500,
860
- UnitsInStock: 21,
861
- UnitsOnOrder: 0,
862
- ReorderLevel: 10,
863
- Discontinued: false,
864
- Category: {
865
- CategoryID: 6,
866
- CategoryName: 'Meat/Poultry',
867
- Description: 'Prepared meats'
868
- }
869
- }, {
870
- ProductID: 55,
871
- ProductName: 'Pâté chinois',
872
- SupplierID: 25,
873
- CategoryID: 6,
874
- QuantityPerUnit: '24 boxes x 2 pies',
875
- UnitPrice: 24.0000,
876
- UnitsInStock: 115,
877
- UnitsOnOrder: 0,
878
- ReorderLevel: 20,
879
- Discontinued: false,
880
- Category: {
881
- CategoryID: 6,
882
- CategoryName: 'Meat/Poultry',
883
- Description: 'Prepared meats'
884
- }
885
- }, {
886
- ProductID: 56,
887
- ProductName: 'Gnocchi di nonna Alice',
888
- SupplierID: 26,
889
- CategoryID: 5,
890
- QuantityPerUnit: '24 - 250 g pkgs.',
891
- UnitPrice: 38.0000,
892
- UnitsInStock: 21,
893
- UnitsOnOrder: 10,
894
- ReorderLevel: 30,
895
- Discontinued: false,
896
- Category: {
897
- CategoryID: 5,
898
- CategoryName: 'Grains/Cereals',
899
- Description: 'Breads, crackers, pasta, and cereal'
900
- }
901
- }, {
902
- ProductID: 57,
903
- ProductName: 'Ravioli Angelo',
904
- SupplierID: 26,
905
- CategoryID: 5,
906
- QuantityPerUnit: '24 - 250 g pkgs.',
907
- UnitPrice: 19.5000,
908
- UnitsInStock: 36,
909
- UnitsOnOrder: 0,
910
- ReorderLevel: 20,
911
- Discontinued: false,
912
- Category: {
913
- CategoryID: 5,
914
- CategoryName: 'Grains/Cereals',
915
- Description: 'Breads, crackers, pasta, and cereal'
916
- }
917
- }, {
918
- ProductID: 58,
919
- ProductName: 'Escargots de Bourgogne',
920
- SupplierID: 27,
921
- CategoryID: 8,
922
- QuantityPerUnit: '24 pieces',
923
- UnitPrice: 13.2500,
924
- UnitsInStock: 62,
925
- UnitsOnOrder: 0,
926
- ReorderLevel: 20,
927
- Discontinued: false,
928
- Category: {
929
- CategoryID: 8,
930
- CategoryName: 'Seafood',
931
- Description: 'Seaweed and fish'
932
- }
933
- }, {
934
- ProductID: 59,
935
- ProductName: 'Raclette Courdavault',
936
- SupplierID: 28,
937
- CategoryID: 4,
938
- QuantityPerUnit: '5 kg pkg.',
939
- UnitPrice: 55.0000,
940
- UnitsInStock: 79,
941
- UnitsOnOrder: 0,
942
- ReorderLevel: 0,
943
- Discontinued: false,
944
- Category: {
945
- CategoryID: 4,
946
- CategoryName: 'Dairy Products',
947
- Description: 'Cheeses'
948
- }
949
- }, {
950
- ProductID: 60,
951
- ProductName: 'Camembert Pierrot',
952
- SupplierID: 28,
953
- CategoryID: 4,
954
- QuantityPerUnit: '15 - 300 g rounds',
955
- UnitPrice: 34.0000,
956
- UnitsInStock: 19,
957
- UnitsOnOrder: 0,
958
- ReorderLevel: 0,
959
- Discontinued: false,
960
- Category: {
961
- CategoryID: 4,
962
- CategoryName: 'Dairy Products',
963
- Description: 'Cheeses'
964
- }
965
- }, {
966
- ProductID: 61,
967
- ProductName: 'Sirop dérable',
968
- SupplierID: 29,
969
- CategoryID: 2,
970
- QuantityPerUnit: '24 - 500 ml bottles',
971
- UnitPrice: 28.5000,
972
- UnitsInStock: 113,
973
- UnitsOnOrder: 0,
974
- ReorderLevel: 25,
975
- Discontinued: false,
976
- Category: {
977
- CategoryID: 2,
978
- CategoryName: 'Condiments',
979
- Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
980
- }
981
- }, {
982
- ProductID: 62,
983
- ProductName: 'Tarte au sucre',
984
- SupplierID: 29,
985
- CategoryID: 3,
986
- QuantityPerUnit: '48 pies',
987
- UnitPrice: 49.3000,
988
- UnitsInStock: 17,
989
- UnitsOnOrder: 0,
990
- ReorderLevel: 0,
991
- Discontinued: false,
992
- Category: {
993
- CategoryID: 3,
994
- CategoryName: 'Confections',
995
- Description: 'Desserts, candies, and sweet breads'
996
- }
997
- }, {
998
- ProductID: 63,
999
- ProductName: 'Vegie-spread',
1000
- SupplierID: 7,
1001
- CategoryID: 2,
1002
- QuantityPerUnit: '15 - 625 g jars',
1003
- UnitPrice: 43.9000,
1004
- UnitsInStock: 24,
1005
- UnitsOnOrder: 0,
1006
- ReorderLevel: 5,
1007
- Discontinued: false,
1008
- Category: {
1009
- CategoryID: 2,
1010
- CategoryName: 'Condiments',
1011
- Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
1012
- }
1013
- }, {
1014
- ProductID: 64,
1015
- ProductName: 'Wimmers gute Semmelknödel',
1016
- SupplierID: 12,
1017
- CategoryID: 5,
1018
- QuantityPerUnit: '20 bags x 4 pieces',
1019
- UnitPrice: 33.2500,
1020
- UnitsInStock: 22,
1021
- UnitsOnOrder: 80,
1022
- ReorderLevel: 30,
1023
- Discontinued: false,
1024
- Category: {
1025
- CategoryID: 5,
1026
- CategoryName: 'Grains/Cereals',
1027
- Description: 'Breads, crackers, pasta, and cereal'
1028
- }
1029
- }, {
1030
- ProductID: 65,
1031
- ProductName: 'Louisiana Fiery Hot Pepper Sauce',
1032
- SupplierID: 2,
1033
- CategoryID: 2,
1034
- QuantityPerUnit: '32 - 8 oz bottles',
1035
- UnitPrice: 21.0500,
1036
- UnitsInStock: 76,
1037
- UnitsOnOrder: 0,
1038
- ReorderLevel: 0,
1039
- Discontinued: false,
1040
- Category: {
1041
- CategoryID: 2,
1042
- CategoryName: 'Condiments',
1043
- Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
1044
- }
1045
- }, {
1046
- ProductID: 66,
1047
- ProductName: 'Louisiana Hot Spiced Okra',
1048
- SupplierID: 2,
1049
- CategoryID: 2,
1050
- QuantityPerUnit: '24 - 8 oz jars',
1051
- UnitPrice: 17.0000,
1052
- UnitsInStock: 4,
1053
- UnitsOnOrder: 100,
1054
- ReorderLevel: 20,
1055
- Discontinued: false,
1056
- Category: {
1057
- CategoryID: 2,
1058
- CategoryName: 'Condiments',
1059
- Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
1060
- }
1061
- }, {
1062
- ProductID: 67,
1063
- ProductName: 'Laughing Lumberjack Lager',
1064
- SupplierID: 16,
1065
- CategoryID: 1,
1066
- QuantityPerUnit: '24 - 12 oz bottles',
1067
- UnitPrice: 14.0000,
1068
- UnitsInStock: 52,
1069
- UnitsOnOrder: 0,
1070
- ReorderLevel: 10,
1071
- Discontinued: false,
1072
- Category: {
1073
- CategoryID: 1,
1074
- CategoryName: 'Beverages',
1075
- Description: 'Soft drinks, coffees, teas, beers, and ales'
1076
- }
1077
- }, {
1078
- ProductID: 68,
1079
- ProductName: 'Scottish Longbreads',
1080
- SupplierID: 8,
1081
- CategoryID: 3,
1082
- QuantityPerUnit: '10 boxes x 8 pieces',
1083
- UnitPrice: 12.5000,
1084
- UnitsInStock: 6,
1085
- UnitsOnOrder: 10,
1086
- ReorderLevel: 15,
1087
- Discontinued: false,
1088
- Category: {
1089
- CategoryID: 3,
1090
- CategoryName: 'Confections',
1091
- Description: 'Desserts, candies, and sweet breads'
1092
- }
1093
- }, {
1094
- ProductID: 69,
1095
- ProductName: 'Gudbrandsdalsost',
1096
- SupplierID: 15,
1097
- CategoryID: 4,
1098
- QuantityPerUnit: '10 kg pkg.',
1099
- UnitPrice: 36.0000,
1100
- UnitsInStock: 26,
1101
- UnitsOnOrder: 0,
1102
- ReorderLevel: 15,
1103
- Discontinued: false,
1104
- Category: {
1105
- CategoryID: 4,
1106
- CategoryName: 'Dairy Products',
1107
- Description: 'Cheeses'
1108
- }
1109
- }, {
1110
- ProductID: 70,
1111
- ProductName: 'Outback Lager',
1112
- SupplierID: 7,
1113
- CategoryID: 1,
1114
- QuantityPerUnit: '24 - 355 ml bottles',
1115
- UnitPrice: 15.0000,
1116
- UnitsInStock: 15,
1117
- UnitsOnOrder: 10,
1118
- ReorderLevel: 30,
1119
- Discontinued: false,
1120
- Category: {
1121
- CategoryID: 1,
1122
- CategoryName: 'Beverages',
1123
- Description: 'Soft drinks, coffees, teas, beers, and ales'
1124
- }
1125
- }, {
1126
- ProductID: 71,
1127
- ProductName: 'Flotemysost',
1128
- SupplierID: 15,
1129
- CategoryID: 4,
1130
- QuantityPerUnit: '10 - 500 g pkgs.',
1131
- UnitPrice: 21.5000,
1132
- UnitsInStock: 26,
1133
- UnitsOnOrder: 0,
1134
- ReorderLevel: 0,
1135
- Discontinued: false,
1136
- Category: {
1137
- CategoryID: 4,
1138
- CategoryName: 'Dairy Products',
1139
- Description: 'Cheeses'
1140
- }
1141
- }, {
1142
- ProductID: 72,
1143
- ProductName: 'Mozzarella di Giovanni',
1144
- SupplierID: 14,
1145
- CategoryID: 4,
1146
- QuantityPerUnit: '24 - 200 g pkgs.',
1147
- UnitPrice: 34.8000,
1148
- UnitsInStock: 14,
1149
- UnitsOnOrder: 0,
1150
- ReorderLevel: 0,
1151
- Discontinued: false,
1152
- Category: {
1153
- CategoryID: 4,
1154
- CategoryName: 'Dairy Products',
1155
- Description: 'Cheeses'
1156
- }
1157
- }, {
1158
- ProductID: 73,
1159
- ProductName: 'Röd Kaviar',
1160
- SupplierID: 17,
1161
- CategoryID: 8,
1162
- QuantityPerUnit: '24 - 150 g jars',
1163
- UnitPrice: 15.0000,
1164
- UnitsInStock: 101,
1165
- UnitsOnOrder: 0,
1166
- ReorderLevel: 5,
1167
- Discontinued: false,
1168
- Category: {
1169
- CategoryID: 8,
1170
- CategoryName: 'Seafood',
1171
- Description: 'Seaweed and fish'
1172
- }
1173
- }, {
1174
- ProductID: 74,
1175
- ProductName: 'Longlife Tofu',
1176
- SupplierID: 4,
1177
- CategoryID: 7,
1178
- QuantityPerUnit: '5 kg pkg.',
1179
- UnitPrice: 10.0000,
1180
- UnitsInStock: 4,
1181
- UnitsOnOrder: 20,
1182
- ReorderLevel: 5,
1183
- Discontinued: false,
1184
- Category: {
1185
- CategoryID: 7,
1186
- CategoryName: 'Produce',
1187
- Description: 'Dried fruit and bean curd'
1188
- }
1189
- }, {
1190
- ProductID: 75,
1191
- ProductName: 'Rhönbräu Klosterbier',
1192
- SupplierID: 12,
1193
- CategoryID: 1,
1194
- QuantityPerUnit: '24 - 0.5 l bottles',
1195
- UnitPrice: 7.7500,
1196
- UnitsInStock: 125,
1197
- UnitsOnOrder: 0,
1198
- ReorderLevel: 25,
1199
- Discontinued: false,
1200
- Category: {
1201
- CategoryID: 1,
1202
- CategoryName: 'Beverages',
1203
- Description: 'Soft drinks, coffees, teas, beers, and ales'
1204
- }
1205
- }, {
1206
- ProductID: 76,
1207
- ProductName: 'Lakkalikööri',
1208
- SupplierID: 23,
1209
- CategoryID: 1,
1210
- QuantityPerUnit: '500 ml',
1211
- UnitPrice: 18.0000,
1212
- UnitsInStock: 57,
1213
- UnitsOnOrder: 0,
1214
- ReorderLevel: 20,
1215
- Discontinued: false,
1216
- Category: {
1217
- CategoryID: 1,
1218
- CategoryName: 'Beverages',
1219
- Description: 'Soft drinks, coffees, teas, beers, and ales'
1220
- }
1221
- }, {
1222
- ProductID: 77,
1223
- ProductName: 'Original Frankfurter grüne Soße',
1224
- SupplierID: 12,
1225
- CategoryID: 2,
1226
- QuantityPerUnit: '12 boxes',
1227
- UnitPrice: 13.0000,
1228
- UnitsInStock: 32,
1229
- UnitsOnOrder: 0,
1230
- ReorderLevel: 15,
1231
- Discontinued: false,
1232
- Category: {
1233
- CategoryID: 2,
1234
- CategoryName: 'Condiments',
1235
- Description: 'Sweet and savory sauces, relishes, spreads, and seasonings'
1236
- }
1237
- }];`