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