fable 3.0.32 → 3.0.34

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 (53) hide show
  1. package/.config/configstore/update-notifier-npm.json +1 -1
  2. package/.config/retold-harness/MySQL-Laden-Entry.sh +17 -0
  3. package/.config/retold-harness/MySQL-Security.sql +5 -0
  4. package/.config/retold-harness/bookstore-api-endpoint-exercises.paw +0 -0
  5. package/.config/retold-harness/bookstore-configuration.json +28 -0
  6. package/.config/retold-harness/bookstore-import-books-run.js +1 -0
  7. package/.config/retold-harness/bookstore-import-books.js +214 -0
  8. package/.config/retold-harness/bookstore-serve-meadow-endpoint-apis-IPC.js +137 -0
  9. package/.config/retold-harness/bookstore-serve-meadow-endpoint-apis.js +128 -0
  10. package/.config/retold-harness/data/books.csv +10001 -0
  11. package/.config/retold-harness/model/ddl/BookStore.ddl +66 -0
  12. package/.config/retold-harness/model/generated_diagram/README.md +1 -0
  13. package/.config/retold-harness/model/generated_diagram/Stricture_Output.dot +13 -0
  14. package/.config/retold-harness/model/generated_diagram/Stricture_Output.png +0 -0
  15. package/.config/retold-harness/model/generated_documentation/Dictionary.md +18 -0
  16. package/.config/retold-harness/model/generated_documentation/Model-Author.md +20 -0
  17. package/.config/retold-harness/model/generated_documentation/Model-Book.md +26 -0
  18. package/.config/retold-harness/model/generated_documentation/Model-BookAuthorJoin.md +14 -0
  19. package/.config/retold-harness/model/generated_documentation/Model-BookPrice.md +25 -0
  20. package/.config/retold-harness/model/generated_documentation/Model-Review.md +22 -0
  21. package/.config/retold-harness/model/generated_documentation/ModelChangeTracking.md +17 -0
  22. package/.config/retold-harness/model/generated_documentation/README.md +1 -0
  23. package/.config/retold-harness/model/json_schema/BookStore-Extended.json +915 -0
  24. package/.config/retold-harness/model/json_schema/BookStore-PICT.json +1 -0
  25. package/.config/retold-harness/model/json_schema/BookStore.json +280 -0
  26. package/.config/retold-harness/model/json_schema/README.md +1 -0
  27. package/.config/retold-harness/model/manual_scripts/DropTables.sql +5 -0
  28. package/.config/retold-harness/model/manual_scripts/README.md +2 -0
  29. package/.config/retold-harness/model/meadow_schema/BookStore-MeadowSchema-Author.json +220 -0
  30. package/.config/retold-harness/model/meadow_schema/BookStore-MeadowSchema-Book.json +268 -0
  31. package/.config/retold-harness/model/meadow_schema/BookStore-MeadowSchema-BookAuthorJoin.json +172 -0
  32. package/.config/retold-harness/model/meadow_schema/BookStore-MeadowSchema-BookPrice.json +260 -0
  33. package/.config/retold-harness/model/meadow_schema/BookStore-MeadowSchema-Review.json +236 -0
  34. package/.config/retold-harness/model/meadow_schema/README.md +1 -0
  35. package/.config/retold-harness/model/sql_create/BookStore-CreateDatabase.mysql.sql +116 -0
  36. package/.config/retold-harness/model/sql_create/README.md +1 -0
  37. package/.config/retold-harness/package.json +19 -0
  38. package/.config/retold-harness/test_old/Tests.js +3243 -0
  39. package/.config/retold-harness/test_old/untitled.js +88 -0
  40. package/.config/vscode-sqltools/runningInfo.json +13 -0
  41. package/.vscode/settings.json +17 -0
  42. package/Dockerfile_LUXURYCode +18 -0
  43. package/README.md +1 -1
  44. package/dist/fable.compatible.js +1 -11
  45. package/dist/fable.compatible.min.js +2 -78
  46. package/dist/fable.compatible.min.js.map +1 -1
  47. package/dist/fable.js +1 -11
  48. package/dist/fable.min.js +2 -70
  49. package/dist/fable.min.js.map +1 -1
  50. package/package.json +5 -5
  51. package/source/Fable-ServiceManager.js +0 -1
  52. package/source/Fable.js +5 -1
  53. package/source/services/Fable-Service-DataFormat.js +0 -1
@@ -0,0 +1,915 @@
1
+ {
2
+ "Tables": {
3
+ "Book": {
4
+ "TableName": "Book",
5
+ "Domain": "Default",
6
+ "Columns": [
7
+ {
8
+ "Column": "IDBook",
9
+ "DataType": "ID"
10
+ },
11
+ {
12
+ "Column": "GUIDBook",
13
+ "DataType": "GUID"
14
+ },
15
+ {
16
+ "Column": "CreateDate",
17
+ "DataType": "DateTime"
18
+ },
19
+ {
20
+ "Column": "CreatingIDUser",
21
+ "DataType": "Numeric"
22
+ },
23
+ {
24
+ "Column": "UpdateDate",
25
+ "DataType": "DateTime"
26
+ },
27
+ {
28
+ "Column": "UpdatingIDUser",
29
+ "DataType": "Numeric"
30
+ },
31
+ {
32
+ "Column": "Deleted",
33
+ "DataType": "Boolean"
34
+ },
35
+ {
36
+ "Column": "DeleteDate",
37
+ "DataType": "DateTime"
38
+ },
39
+ {
40
+ "Column": "DeletingIDUser",
41
+ "DataType": "Numeric"
42
+ },
43
+ {
44
+ "Column": "Title",
45
+ "DataType": "String",
46
+ "Size": "200"
47
+ },
48
+ {
49
+ "Column": "Type",
50
+ "DataType": "String",
51
+ "Size": "32"
52
+ },
53
+ {
54
+ "Column": "Genre",
55
+ "DataType": "String",
56
+ "Size": "128"
57
+ },
58
+ {
59
+ "Column": "ISBN",
60
+ "DataType": "String",
61
+ "Size": "64"
62
+ },
63
+ {
64
+ "Column": "Language",
65
+ "DataType": "String",
66
+ "Size": "12"
67
+ },
68
+ {
69
+ "Column": "ImageURL",
70
+ "DataType": "String",
71
+ "Size": "254"
72
+ },
73
+ {
74
+ "Column": "PublicationYear",
75
+ "DataType": "Numeric"
76
+ }
77
+ ],
78
+ "Description": ""
79
+ },
80
+ "BookAuthorJoin": {
81
+ "TableName": "BookAuthorJoin",
82
+ "Domain": "Default",
83
+ "Columns": [
84
+ {
85
+ "Column": "IDBookAuthorJoin",
86
+ "DataType": "ID"
87
+ },
88
+ {
89
+ "Column": "GUIDBookAuthorJoin",
90
+ "DataType": "GUID"
91
+ },
92
+ {
93
+ "Column": "IDBook",
94
+ "DataType": "Numeric",
95
+ "Join": "IDBook"
96
+ },
97
+ {
98
+ "Column": "IDAuthor",
99
+ "DataType": "Numeric",
100
+ "Join": "IDAuthor"
101
+ }
102
+ ],
103
+ "Description": ""
104
+ },
105
+ "Author": {
106
+ "TableName": "Author",
107
+ "Domain": "Default",
108
+ "Columns": [
109
+ {
110
+ "Column": "IDAuthor",
111
+ "DataType": "ID"
112
+ },
113
+ {
114
+ "Column": "GUIDAuthor",
115
+ "DataType": "GUID"
116
+ },
117
+ {
118
+ "Column": "CreateDate",
119
+ "DataType": "DateTime"
120
+ },
121
+ {
122
+ "Column": "CreatingIDUser",
123
+ "DataType": "Numeric"
124
+ },
125
+ {
126
+ "Column": "UpdateDate",
127
+ "DataType": "DateTime"
128
+ },
129
+ {
130
+ "Column": "UpdatingIDUser",
131
+ "DataType": "Numeric"
132
+ },
133
+ {
134
+ "Column": "Deleted",
135
+ "DataType": "Boolean"
136
+ },
137
+ {
138
+ "Column": "DeleteDate",
139
+ "DataType": "DateTime"
140
+ },
141
+ {
142
+ "Column": "DeletingIDUser",
143
+ "DataType": "Numeric"
144
+ },
145
+ {
146
+ "Column": "Name",
147
+ "DataType": "String",
148
+ "Size": "200"
149
+ }
150
+ ],
151
+ "Description": ""
152
+ },
153
+ "BookPrice": {
154
+ "TableName": "BookPrice",
155
+ "Domain": "Default",
156
+ "Columns": [
157
+ {
158
+ "Column": "IDBookPrice",
159
+ "DataType": "ID"
160
+ },
161
+ {
162
+ "Column": "GUIDBookPrice",
163
+ "DataType": "GUID"
164
+ },
165
+ {
166
+ "Column": "CreateDate",
167
+ "DataType": "DateTime"
168
+ },
169
+ {
170
+ "Column": "CreatingIDUser",
171
+ "DataType": "Numeric"
172
+ },
173
+ {
174
+ "Column": "UpdateDate",
175
+ "DataType": "DateTime"
176
+ },
177
+ {
178
+ "Column": "UpdatingIDUser",
179
+ "DataType": "Numeric"
180
+ },
181
+ {
182
+ "Column": "Deleted",
183
+ "DataType": "Boolean"
184
+ },
185
+ {
186
+ "Column": "DeleteDate",
187
+ "DataType": "DateTime"
188
+ },
189
+ {
190
+ "Column": "DeletingIDUser",
191
+ "DataType": "Numeric"
192
+ },
193
+ {
194
+ "Column": "Price",
195
+ "DataType": "Decimal",
196
+ "Size": "8,2"
197
+ },
198
+ {
199
+ "Column": "StartDate",
200
+ "DataType": "DateTime"
201
+ },
202
+ {
203
+ "Column": "EndDate",
204
+ "DataType": "DateTime"
205
+ },
206
+ {
207
+ "Column": "Discountable",
208
+ "DataType": "Boolean"
209
+ },
210
+ {
211
+ "Column": "CouponCode",
212
+ "DataType": "String",
213
+ "Size": "16"
214
+ },
215
+ {
216
+ "Column": "IDBook",
217
+ "DataType": "Numeric",
218
+ "Join": "IDBook"
219
+ }
220
+ ],
221
+ "Description": ""
222
+ },
223
+ "Review": {
224
+ "TableName": "Review",
225
+ "Domain": "Default",
226
+ "Columns": [
227
+ {
228
+ "Column": "IDReviews",
229
+ "DataType": "ID"
230
+ },
231
+ {
232
+ "Column": "GUIDReviews",
233
+ "DataType": "GUID"
234
+ },
235
+ {
236
+ "Column": "CreateDate",
237
+ "DataType": "DateTime"
238
+ },
239
+ {
240
+ "Column": "CreatingIDUser",
241
+ "DataType": "Numeric"
242
+ },
243
+ {
244
+ "Column": "UpdateDate",
245
+ "DataType": "DateTime"
246
+ },
247
+ {
248
+ "Column": "UpdatingIDUser",
249
+ "DataType": "Numeric"
250
+ },
251
+ {
252
+ "Column": "Deleted",
253
+ "DataType": "Boolean"
254
+ },
255
+ {
256
+ "Column": "DeleteDate",
257
+ "DataType": "DateTime"
258
+ },
259
+ {
260
+ "Column": "DeletingIDUser",
261
+ "DataType": "Numeric"
262
+ },
263
+ {
264
+ "Column": "Text",
265
+ "DataType": "Text"
266
+ },
267
+ {
268
+ "Column": "Rating",
269
+ "DataType": "Numeric"
270
+ },
271
+ {
272
+ "Column": "IDBook",
273
+ "DataType": "Numeric",
274
+ "Join": "IDBook"
275
+ }
276
+ ],
277
+ "Description": ""
278
+ }
279
+ },
280
+ "TablesSequence": [
281
+ "Book",
282
+ "BookAuthorJoin",
283
+ "Author",
284
+ "BookPrice",
285
+ "Review"
286
+ ],
287
+ "Authorization": {
288
+ "Book": {
289
+ "__DefaultAPISecurity": {
290
+ "Create": "Deny",
291
+ "Read": "Deny",
292
+ "Reads": "Deny",
293
+ "ReadsBy": "Deny",
294
+ "ReadMax": "Deny",
295
+ "ReadSelectList": "Deny",
296
+ "Update": "Deny",
297
+ "Delete": "Deny",
298
+ "Count": "Deny",
299
+ "CountBy": "Deny",
300
+ "Schema": "Deny",
301
+ "Validate": "Deny",
302
+ "New": "Deny"
303
+ },
304
+ "Unauthenticated": {
305
+ "Create": "Deny",
306
+ "Read": "Deny",
307
+ "Reads": "Deny",
308
+ "ReadsBy": "Deny",
309
+ "ReadMax": "Deny",
310
+ "ReadSelectList": "Deny",
311
+ "Update": "Deny",
312
+ "Delete": "Deny",
313
+ "Count": "Deny",
314
+ "CountBy": "Deny",
315
+ "Schema": "Deny",
316
+ "Validate": "Deny",
317
+ "New": "Deny"
318
+ },
319
+ "Readonly": {
320
+ "Create": "Deny",
321
+ "Read": "Allow",
322
+ "Reads": "Allow",
323
+ "ReadsBy": "Allow",
324
+ "ReadMax": "Allow",
325
+ "ReadSelectList": "Allow",
326
+ "Update": "Deny",
327
+ "Delete": "Deny",
328
+ "Count": "Allow",
329
+ "CountBy": "Allow",
330
+ "Schema": "Allow",
331
+ "Validate": "Allow",
332
+ "New": "Deny"
333
+ },
334
+ "User": {
335
+ "Create": "Allow",
336
+ "Read": "MyCustomer",
337
+ "Reads": "MyCustomer",
338
+ "ReadsBy": "MyCustomer",
339
+ "ReadMax": "MyCustomer",
340
+ "ReadSelectList": "MyCustomer",
341
+ "Update": "Mine",
342
+ "Delete": "Mine",
343
+ "Count": "MyCustomer",
344
+ "CountBy": "MyCustomer",
345
+ "Schema": "MyCustomer",
346
+ "Validate": "MyCustomer",
347
+ "New": "MyCustomer"
348
+ },
349
+ "Manager": {
350
+ "Create": "Allow",
351
+ "Read": "MyCustomer",
352
+ "Reads": "MyCustomer",
353
+ "ReadsBy": "MyCustomer",
354
+ "ReadMax": "MyCustomer",
355
+ "ReadSelectList": "MyCustomer",
356
+ "Update": "Mine",
357
+ "Delete": "Mine",
358
+ "Count": "MyCustomer",
359
+ "CountBy": "MyCustomer",
360
+ "Schema": "MyCustomer",
361
+ "Validate": "MyCustomer",
362
+ "New": "MyCustomer"
363
+ },
364
+ "Director": {
365
+ "Create": "Allow",
366
+ "Read": "MyCustomer",
367
+ "Reads": "MyCustomer",
368
+ "ReadsBy": "MyCustomer",
369
+ "ReadMax": "MyCustomer",
370
+ "ReadSelectList": "MyCustomer",
371
+ "Update": "MyCustomer",
372
+ "Delete": "MyCustomer",
373
+ "Count": "MyCustomer",
374
+ "CountBy": "MyCustomer",
375
+ "Schema": "MyCustomer",
376
+ "Validate": "MyCustomer",
377
+ "New": "MyCustomer"
378
+ },
379
+ "Executive": {
380
+ "Create": "Allow",
381
+ "Read": "MyCustomer",
382
+ "Reads": "MyCustomer",
383
+ "ReadsBy": "MyCustomer",
384
+ "ReadMax": "MyCustomer",
385
+ "ReadSelectList": "MyCustomer",
386
+ "Update": "MyCustomer",
387
+ "Delete": "MyCustomer",
388
+ "Count": "MyCustomer",
389
+ "CountBy": "MyCustomer",
390
+ "Schema": "MyCustomer",
391
+ "Validate": "MyCustomer",
392
+ "New": "MyCustomer"
393
+ },
394
+ "Administrator": {
395
+ "Create": "Allow",
396
+ "Read": "Allow",
397
+ "Reads": "Allow",
398
+ "ReadsBy": "Allow",
399
+ "ReadMax": "Allow",
400
+ "ReadSelectList": "Allow",
401
+ "Update": "Allow",
402
+ "Delete": "Allow",
403
+ "Count": "Allow",
404
+ "CountBy": "Allow",
405
+ "Schema": "Allow",
406
+ "Validate": "Allow",
407
+ "New": "Allow"
408
+ }
409
+ },
410
+ "BookAuthorJoin": {
411
+ "__DefaultAPISecurity": {
412
+ "Create": "Deny",
413
+ "Read": "Deny",
414
+ "Reads": "Deny",
415
+ "ReadsBy": "Deny",
416
+ "ReadMax": "Deny",
417
+ "ReadSelectList": "Deny",
418
+ "Update": "Deny",
419
+ "Delete": "Deny",
420
+ "Count": "Deny",
421
+ "CountBy": "Deny",
422
+ "Schema": "Deny",
423
+ "Validate": "Deny",
424
+ "New": "Deny"
425
+ },
426
+ "Unauthenticated": {
427
+ "Create": "Deny",
428
+ "Read": "Deny",
429
+ "Reads": "Deny",
430
+ "ReadsBy": "Deny",
431
+ "ReadMax": "Deny",
432
+ "ReadSelectList": "Deny",
433
+ "Update": "Deny",
434
+ "Delete": "Deny",
435
+ "Count": "Deny",
436
+ "CountBy": "Deny",
437
+ "Schema": "Deny",
438
+ "Validate": "Deny",
439
+ "New": "Deny"
440
+ },
441
+ "Readonly": {
442
+ "Create": "Deny",
443
+ "Read": "Allow",
444
+ "Reads": "Allow",
445
+ "ReadsBy": "Allow",
446
+ "ReadMax": "Allow",
447
+ "ReadSelectList": "Allow",
448
+ "Update": "Deny",
449
+ "Delete": "Deny",
450
+ "Count": "Allow",
451
+ "CountBy": "Allow",
452
+ "Schema": "Allow",
453
+ "Validate": "Allow",
454
+ "New": "Deny"
455
+ },
456
+ "User": {
457
+ "Create": "Allow",
458
+ "Read": "MyCustomer",
459
+ "Reads": "MyCustomer",
460
+ "ReadsBy": "MyCustomer",
461
+ "ReadMax": "MyCustomer",
462
+ "ReadSelectList": "MyCustomer",
463
+ "Update": "Mine",
464
+ "Delete": "Mine",
465
+ "Count": "MyCustomer",
466
+ "CountBy": "MyCustomer",
467
+ "Schema": "MyCustomer",
468
+ "Validate": "MyCustomer",
469
+ "New": "MyCustomer"
470
+ },
471
+ "Manager": {
472
+ "Create": "Allow",
473
+ "Read": "MyCustomer",
474
+ "Reads": "MyCustomer",
475
+ "ReadsBy": "MyCustomer",
476
+ "ReadMax": "MyCustomer",
477
+ "ReadSelectList": "MyCustomer",
478
+ "Update": "Mine",
479
+ "Delete": "Mine",
480
+ "Count": "MyCustomer",
481
+ "CountBy": "MyCustomer",
482
+ "Schema": "MyCustomer",
483
+ "Validate": "MyCustomer",
484
+ "New": "MyCustomer"
485
+ },
486
+ "Director": {
487
+ "Create": "Allow",
488
+ "Read": "MyCustomer",
489
+ "Reads": "MyCustomer",
490
+ "ReadsBy": "MyCustomer",
491
+ "ReadMax": "MyCustomer",
492
+ "ReadSelectList": "MyCustomer",
493
+ "Update": "MyCustomer",
494
+ "Delete": "MyCustomer",
495
+ "Count": "MyCustomer",
496
+ "CountBy": "MyCustomer",
497
+ "Schema": "MyCustomer",
498
+ "Validate": "MyCustomer",
499
+ "New": "MyCustomer"
500
+ },
501
+ "Executive": {
502
+ "Create": "Allow",
503
+ "Read": "MyCustomer",
504
+ "Reads": "MyCustomer",
505
+ "ReadsBy": "MyCustomer",
506
+ "ReadMax": "MyCustomer",
507
+ "ReadSelectList": "MyCustomer",
508
+ "Update": "MyCustomer",
509
+ "Delete": "MyCustomer",
510
+ "Count": "MyCustomer",
511
+ "CountBy": "MyCustomer",
512
+ "Schema": "MyCustomer",
513
+ "Validate": "MyCustomer",
514
+ "New": "MyCustomer"
515
+ },
516
+ "Administrator": {
517
+ "Create": "Allow",
518
+ "Read": "Allow",
519
+ "Reads": "Allow",
520
+ "ReadsBy": "Allow",
521
+ "ReadMax": "Allow",
522
+ "ReadSelectList": "Allow",
523
+ "Update": "Allow",
524
+ "Delete": "Allow",
525
+ "Count": "Allow",
526
+ "CountBy": "Allow",
527
+ "Schema": "Allow",
528
+ "Validate": "Allow",
529
+ "New": "Allow"
530
+ }
531
+ },
532
+ "Author": {
533
+ "__DefaultAPISecurity": {
534
+ "Create": "Deny",
535
+ "Read": "Deny",
536
+ "Reads": "Deny",
537
+ "ReadsBy": "Deny",
538
+ "ReadMax": "Deny",
539
+ "ReadSelectList": "Deny",
540
+ "Update": "Deny",
541
+ "Delete": "Deny",
542
+ "Count": "Deny",
543
+ "CountBy": "Deny",
544
+ "Schema": "Deny",
545
+ "Validate": "Deny",
546
+ "New": "Deny"
547
+ },
548
+ "Unauthenticated": {
549
+ "Create": "Deny",
550
+ "Read": "Deny",
551
+ "Reads": "Deny",
552
+ "ReadsBy": "Deny",
553
+ "ReadMax": "Deny",
554
+ "ReadSelectList": "Deny",
555
+ "Update": "Deny",
556
+ "Delete": "Deny",
557
+ "Count": "Deny",
558
+ "CountBy": "Deny",
559
+ "Schema": "Deny",
560
+ "Validate": "Deny",
561
+ "New": "Deny"
562
+ },
563
+ "Readonly": {
564
+ "Create": "Deny",
565
+ "Read": "Allow",
566
+ "Reads": "Allow",
567
+ "ReadsBy": "Allow",
568
+ "ReadMax": "Allow",
569
+ "ReadSelectList": "Allow",
570
+ "Update": "Deny",
571
+ "Delete": "Deny",
572
+ "Count": "Allow",
573
+ "CountBy": "Allow",
574
+ "Schema": "Allow",
575
+ "Validate": "Allow",
576
+ "New": "Deny"
577
+ },
578
+ "User": {
579
+ "Create": "Allow",
580
+ "Read": "MyCustomer",
581
+ "Reads": "MyCustomer",
582
+ "ReadsBy": "MyCustomer",
583
+ "ReadMax": "MyCustomer",
584
+ "ReadSelectList": "MyCustomer",
585
+ "Update": "Mine",
586
+ "Delete": "Mine",
587
+ "Count": "MyCustomer",
588
+ "CountBy": "MyCustomer",
589
+ "Schema": "MyCustomer",
590
+ "Validate": "MyCustomer",
591
+ "New": "MyCustomer"
592
+ },
593
+ "Manager": {
594
+ "Create": "Allow",
595
+ "Read": "MyCustomer",
596
+ "Reads": "MyCustomer",
597
+ "ReadsBy": "MyCustomer",
598
+ "ReadMax": "MyCustomer",
599
+ "ReadSelectList": "MyCustomer",
600
+ "Update": "Mine",
601
+ "Delete": "Mine",
602
+ "Count": "MyCustomer",
603
+ "CountBy": "MyCustomer",
604
+ "Schema": "MyCustomer",
605
+ "Validate": "MyCustomer",
606
+ "New": "MyCustomer"
607
+ },
608
+ "Director": {
609
+ "Create": "Allow",
610
+ "Read": "MyCustomer",
611
+ "Reads": "MyCustomer",
612
+ "ReadsBy": "MyCustomer",
613
+ "ReadMax": "MyCustomer",
614
+ "ReadSelectList": "MyCustomer",
615
+ "Update": "MyCustomer",
616
+ "Delete": "MyCustomer",
617
+ "Count": "MyCustomer",
618
+ "CountBy": "MyCustomer",
619
+ "Schema": "MyCustomer",
620
+ "Validate": "MyCustomer",
621
+ "New": "MyCustomer"
622
+ },
623
+ "Executive": {
624
+ "Create": "Allow",
625
+ "Read": "MyCustomer",
626
+ "Reads": "MyCustomer",
627
+ "ReadsBy": "MyCustomer",
628
+ "ReadMax": "MyCustomer",
629
+ "ReadSelectList": "MyCustomer",
630
+ "Update": "MyCustomer",
631
+ "Delete": "MyCustomer",
632
+ "Count": "MyCustomer",
633
+ "CountBy": "MyCustomer",
634
+ "Schema": "MyCustomer",
635
+ "Validate": "MyCustomer",
636
+ "New": "MyCustomer"
637
+ },
638
+ "Administrator": {
639
+ "Create": "Allow",
640
+ "Read": "Allow",
641
+ "Reads": "Allow",
642
+ "ReadsBy": "Allow",
643
+ "ReadMax": "Allow",
644
+ "ReadSelectList": "Allow",
645
+ "Update": "Allow",
646
+ "Delete": "Allow",
647
+ "Count": "Allow",
648
+ "CountBy": "Allow",
649
+ "Schema": "Allow",
650
+ "Validate": "Allow",
651
+ "New": "Allow"
652
+ }
653
+ },
654
+ "BookPrice": {
655
+ "__DefaultAPISecurity": {
656
+ "Create": "Deny",
657
+ "Read": "Deny",
658
+ "Reads": "Deny",
659
+ "ReadsBy": "Deny",
660
+ "ReadMax": "Deny",
661
+ "ReadSelectList": "Deny",
662
+ "Update": "Deny",
663
+ "Delete": "Deny",
664
+ "Count": "Deny",
665
+ "CountBy": "Deny",
666
+ "Schema": "Deny",
667
+ "Validate": "Deny",
668
+ "New": "Deny"
669
+ },
670
+ "Unauthenticated": {
671
+ "Create": "Deny",
672
+ "Read": "Deny",
673
+ "Reads": "Deny",
674
+ "ReadsBy": "Deny",
675
+ "ReadMax": "Deny",
676
+ "ReadSelectList": "Deny",
677
+ "Update": "Deny",
678
+ "Delete": "Deny",
679
+ "Count": "Deny",
680
+ "CountBy": "Deny",
681
+ "Schema": "Deny",
682
+ "Validate": "Deny",
683
+ "New": "Deny"
684
+ },
685
+ "Readonly": {
686
+ "Create": "Deny",
687
+ "Read": "Allow",
688
+ "Reads": "Allow",
689
+ "ReadsBy": "Allow",
690
+ "ReadMax": "Allow",
691
+ "ReadSelectList": "Allow",
692
+ "Update": "Deny",
693
+ "Delete": "Deny",
694
+ "Count": "Allow",
695
+ "CountBy": "Allow",
696
+ "Schema": "Allow",
697
+ "Validate": "Allow",
698
+ "New": "Deny"
699
+ },
700
+ "User": {
701
+ "Create": "Allow",
702
+ "Read": "MyCustomer",
703
+ "Reads": "MyCustomer",
704
+ "ReadsBy": "MyCustomer",
705
+ "ReadMax": "MyCustomer",
706
+ "ReadSelectList": "MyCustomer",
707
+ "Update": "Mine",
708
+ "Delete": "Mine",
709
+ "Count": "MyCustomer",
710
+ "CountBy": "MyCustomer",
711
+ "Schema": "MyCustomer",
712
+ "Validate": "MyCustomer",
713
+ "New": "MyCustomer"
714
+ },
715
+ "Manager": {
716
+ "Create": "Allow",
717
+ "Read": "MyCustomer",
718
+ "Reads": "MyCustomer",
719
+ "ReadsBy": "MyCustomer",
720
+ "ReadMax": "MyCustomer",
721
+ "ReadSelectList": "MyCustomer",
722
+ "Update": "Mine",
723
+ "Delete": "Mine",
724
+ "Count": "MyCustomer",
725
+ "CountBy": "MyCustomer",
726
+ "Schema": "MyCustomer",
727
+ "Validate": "MyCustomer",
728
+ "New": "MyCustomer"
729
+ },
730
+ "Director": {
731
+ "Create": "Allow",
732
+ "Read": "MyCustomer",
733
+ "Reads": "MyCustomer",
734
+ "ReadsBy": "MyCustomer",
735
+ "ReadMax": "MyCustomer",
736
+ "ReadSelectList": "MyCustomer",
737
+ "Update": "MyCustomer",
738
+ "Delete": "MyCustomer",
739
+ "Count": "MyCustomer",
740
+ "CountBy": "MyCustomer",
741
+ "Schema": "MyCustomer",
742
+ "Validate": "MyCustomer",
743
+ "New": "MyCustomer"
744
+ },
745
+ "Executive": {
746
+ "Create": "Allow",
747
+ "Read": "MyCustomer",
748
+ "Reads": "MyCustomer",
749
+ "ReadsBy": "MyCustomer",
750
+ "ReadMax": "MyCustomer",
751
+ "ReadSelectList": "MyCustomer",
752
+ "Update": "MyCustomer",
753
+ "Delete": "MyCustomer",
754
+ "Count": "MyCustomer",
755
+ "CountBy": "MyCustomer",
756
+ "Schema": "MyCustomer",
757
+ "Validate": "MyCustomer",
758
+ "New": "MyCustomer"
759
+ },
760
+ "Administrator": {
761
+ "Create": "Allow",
762
+ "Read": "Allow",
763
+ "Reads": "Allow",
764
+ "ReadsBy": "Allow",
765
+ "ReadMax": "Allow",
766
+ "ReadSelectList": "Allow",
767
+ "Update": "Allow",
768
+ "Delete": "Allow",
769
+ "Count": "Allow",
770
+ "CountBy": "Allow",
771
+ "Schema": "Allow",
772
+ "Validate": "Allow",
773
+ "New": "Allow"
774
+ }
775
+ },
776
+ "Review": {
777
+ "__DefaultAPISecurity": {
778
+ "Create": "Deny",
779
+ "Read": "Deny",
780
+ "Reads": "Deny",
781
+ "ReadsBy": "Deny",
782
+ "ReadMax": "Deny",
783
+ "ReadSelectList": "Deny",
784
+ "Update": "Deny",
785
+ "Delete": "Deny",
786
+ "Count": "Deny",
787
+ "CountBy": "Deny",
788
+ "Schema": "Deny",
789
+ "Validate": "Deny",
790
+ "New": "Deny"
791
+ },
792
+ "Unauthenticated": {
793
+ "Create": "Deny",
794
+ "Read": "Deny",
795
+ "Reads": "Deny",
796
+ "ReadsBy": "Deny",
797
+ "ReadMax": "Deny",
798
+ "ReadSelectList": "Deny",
799
+ "Update": "Deny",
800
+ "Delete": "Deny",
801
+ "Count": "Deny",
802
+ "CountBy": "Deny",
803
+ "Schema": "Deny",
804
+ "Validate": "Deny",
805
+ "New": "Deny"
806
+ },
807
+ "Readonly": {
808
+ "Create": "Deny",
809
+ "Read": "Allow",
810
+ "Reads": "Allow",
811
+ "ReadsBy": "Allow",
812
+ "ReadMax": "Allow",
813
+ "ReadSelectList": "Allow",
814
+ "Update": "Deny",
815
+ "Delete": "Deny",
816
+ "Count": "Allow",
817
+ "CountBy": "Allow",
818
+ "Schema": "Allow",
819
+ "Validate": "Allow",
820
+ "New": "Deny"
821
+ },
822
+ "User": {
823
+ "Create": "Allow",
824
+ "Read": "MyCustomer",
825
+ "Reads": "MyCustomer",
826
+ "ReadsBy": "MyCustomer",
827
+ "ReadMax": "MyCustomer",
828
+ "ReadSelectList": "MyCustomer",
829
+ "Update": "Mine",
830
+ "Delete": "Mine",
831
+ "Count": "MyCustomer",
832
+ "CountBy": "MyCustomer",
833
+ "Schema": "MyCustomer",
834
+ "Validate": "MyCustomer",
835
+ "New": "MyCustomer"
836
+ },
837
+ "Manager": {
838
+ "Create": "Allow",
839
+ "Read": "MyCustomer",
840
+ "Reads": "MyCustomer",
841
+ "ReadsBy": "MyCustomer",
842
+ "ReadMax": "MyCustomer",
843
+ "ReadSelectList": "MyCustomer",
844
+ "Update": "Mine",
845
+ "Delete": "Mine",
846
+ "Count": "MyCustomer",
847
+ "CountBy": "MyCustomer",
848
+ "Schema": "MyCustomer",
849
+ "Validate": "MyCustomer",
850
+ "New": "MyCustomer"
851
+ },
852
+ "Director": {
853
+ "Create": "Allow",
854
+ "Read": "MyCustomer",
855
+ "Reads": "MyCustomer",
856
+ "ReadsBy": "MyCustomer",
857
+ "ReadMax": "MyCustomer",
858
+ "ReadSelectList": "MyCustomer",
859
+ "Update": "MyCustomer",
860
+ "Delete": "MyCustomer",
861
+ "Count": "MyCustomer",
862
+ "CountBy": "MyCustomer",
863
+ "Schema": "MyCustomer",
864
+ "Validate": "MyCustomer",
865
+ "New": "MyCustomer"
866
+ },
867
+ "Executive": {
868
+ "Create": "Allow",
869
+ "Read": "MyCustomer",
870
+ "Reads": "MyCustomer",
871
+ "ReadsBy": "MyCustomer",
872
+ "ReadMax": "MyCustomer",
873
+ "ReadSelectList": "MyCustomer",
874
+ "Update": "MyCustomer",
875
+ "Delete": "MyCustomer",
876
+ "Count": "MyCustomer",
877
+ "CountBy": "MyCustomer",
878
+ "Schema": "MyCustomer",
879
+ "Validate": "MyCustomer",
880
+ "New": "MyCustomer"
881
+ },
882
+ "Administrator": {
883
+ "Create": "Allow",
884
+ "Read": "Allow",
885
+ "Reads": "Allow",
886
+ "ReadsBy": "Allow",
887
+ "ReadMax": "Allow",
888
+ "ReadSelectList": "Allow",
889
+ "Update": "Allow",
890
+ "Delete": "Allow",
891
+ "Count": "Allow",
892
+ "CountBy": "Allow",
893
+ "Schema": "Allow",
894
+ "Validate": "Allow",
895
+ "New": "Allow"
896
+ }
897
+ }
898
+ },
899
+ "Endpoints": {
900
+ "Create": true,
901
+ "Read": true,
902
+ "Reads": true,
903
+ "ReadsBy": true,
904
+ "ReadMax": true,
905
+ "ReadSelectList": true,
906
+ "Update": true,
907
+ "Delete": true,
908
+ "Count": true,
909
+ "CountBy": true,
910
+ "Schema": true,
911
+ "Validate": true,
912
+ "New": true
913
+ },
914
+ "Pict": {}
915
+ }