fable 3.0.97 → 3.0.98

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 (44) hide show
  1. package/dist/fable.compatible.js +12 -12
  2. package/dist/fable.compatible.min.js +2 -2
  3. package/dist/fable.compatible.min.js.map +1 -1
  4. package/dist/fable.js +11 -11
  5. package/dist/fable.min.js +2 -2
  6. package/dist/fable.min.js.map +1 -1
  7. package/package.json +3 -3
  8. package/source/services/Fable-Service-Anticipate.js +2 -0
  9. package/source/services/Fable-Service-MetaTemplate/MetaTemplate-StringParser.js +19 -12
  10. package/source/services/Fable-Service-MetaTemplate.js +1 -1
  11. package/retold-harness/bookstore-serve-api.js +0 -41
  12. package/retold-harness/configuration-bookstore-serve-api.js +0 -30
  13. package/retold-harness/docker_scripts/MySQL-Laden-Entry.sh +0 -17
  14. package/retold-harness/model/Model-Extended.json +0 -915
  15. package/retold-harness/model/Model-PICT.json +0 -1
  16. package/retold-harness/model/Model.json +0 -280
  17. package/retold-harness/model/bookstore-api-endpoint-exercises.paw +0 -0
  18. package/retold-harness/model/ddl/BookStore.ddl +0 -66
  19. package/retold-harness/model/generated_diagram/README.md +0 -1
  20. package/retold-harness/model/generated_diagram/Stricture_Output.dot +0 -13
  21. package/retold-harness/model/generated_diagram/Stricture_Output.png +0 -0
  22. package/retold-harness/model/generated_documentation/Dictionary.md +0 -18
  23. package/retold-harness/model/generated_documentation/Model-Author.md +0 -20
  24. package/retold-harness/model/generated_documentation/Model-Book.md +0 -26
  25. package/retold-harness/model/generated_documentation/Model-BookAuthorJoin.md +0 -14
  26. package/retold-harness/model/generated_documentation/Model-BookPrice.md +0 -25
  27. package/retold-harness/model/generated_documentation/Model-Review.md +0 -22
  28. package/retold-harness/model/generated_documentation/ModelChangeTracking.md +0 -17
  29. package/retold-harness/model/generated_documentation/README.md +0 -1
  30. package/retold-harness/model/manual_scripts/DropTables.sql +0 -5
  31. package/retold-harness/model/manual_scripts/MySQL-Laden-Entry.sh +0 -17
  32. package/retold-harness/model/manual_scripts/MySQL-Security.sql +0 -5
  33. package/retold-harness/model/manual_scripts/README.md +0 -2
  34. package/retold-harness/model/manual_scripts/my.cnf +0 -4
  35. package/retold-harness/model/meadow/Model-MeadowSchema-Author.json +0 -220
  36. package/retold-harness/model/meadow/Model-MeadowSchema-Book.json +0 -268
  37. package/retold-harness/model/meadow/Model-MeadowSchema-BookAuthorJoin.json +0 -172
  38. package/retold-harness/model/meadow/Model-MeadowSchema-BookPrice.json +0 -260
  39. package/retold-harness/model/meadow/Model-MeadowSchema-Review.json +0 -236
  40. package/retold-harness/model/meadow/README.md +0 -1
  41. package/retold-harness/model/sql_create/BookStore-CreateDatabase.mysql.sql +0 -116
  42. package/retold-harness/model/sql_create/BookStore-DeleteAndRepopulateTables.sql +0 -194
  43. package/retold-harness/model/sql_create/MySQL-Security.sql +0 -5
  44. package/retold-harness/model/sql_create/README.md +0 -1
@@ -1,260 +0,0 @@
1
- {
2
- "Scope": "BookPrice",
3
- "DefaultIdentifier": "IDBookPrice",
4
- "Domain": "Default",
5
- "Schema": [
6
- {
7
- "Column": "IDBookPrice",
8
- "Type": "AutoIdentity"
9
- },
10
- {
11
- "Column": "GUIDBookPrice",
12
- "Type": "AutoGUID"
13
- },
14
- {
15
- "Column": "CreateDate",
16
- "Type": "CreateDate"
17
- },
18
- {
19
- "Column": "CreatingIDUser",
20
- "Type": "CreateIDUser"
21
- },
22
- {
23
- "Column": "UpdateDate",
24
- "Type": "UpdateDate"
25
- },
26
- {
27
- "Column": "UpdatingIDUser",
28
- "Type": "UpdateIDUser"
29
- },
30
- {
31
- "Column": "Deleted",
32
- "Type": "Deleted"
33
- },
34
- {
35
- "Column": "DeleteDate",
36
- "Type": "DeleteDate"
37
- },
38
- {
39
- "Column": "DeletingIDUser",
40
- "Type": "DeleteIDUser"
41
- },
42
- {
43
- "Column": "Price",
44
- "Type": "Decimal"
45
- },
46
- {
47
- "Column": "StartDate",
48
- "Type": "DateTime"
49
- },
50
- {
51
- "Column": "EndDate",
52
- "Type": "DateTime"
53
- },
54
- {
55
- "Column": "Discountable",
56
- "Type": "Boolean"
57
- },
58
- {
59
- "Column": "CouponCode",
60
- "Type": "String"
61
- },
62
- {
63
- "Column": "IDBook",
64
- "Type": "Integer"
65
- }
66
- ],
67
- "DefaultObject": {
68
- "IDBookPrice": 0,
69
- "GUIDBookPrice": "0x0000000000000000",
70
- "CreateDate": null,
71
- "CreatingIDUser": 0,
72
- "UpdateDate": null,
73
- "UpdatingIDUser": 0,
74
- "Deleted": false,
75
- "DeleteDate": null,
76
- "DeletingIDUser": 0,
77
- "Price": 0,
78
- "StartDate": null,
79
- "EndDate": null,
80
- "Discountable": false,
81
- "CouponCode": "",
82
- "IDBook": 0
83
- },
84
- "JsonSchema": {
85
- "title": "BookPrice",
86
- "type": "object",
87
- "properties": {
88
- "IDBookPrice": {
89
- "type": "integer"
90
- },
91
- "GUIDBookPrice": {
92
- "type": "string"
93
- },
94
- "CreateDate": {
95
- "type": "string"
96
- },
97
- "CreatingIDUser": {
98
- "type": "integer"
99
- },
100
- "UpdateDate": {
101
- "type": "string"
102
- },
103
- "UpdatingIDUser": {
104
- "type": "integer"
105
- },
106
- "Deleted": {
107
- "type": "boolean"
108
- },
109
- "DeleteDate": {
110
- "type": "string"
111
- },
112
- "DeletingIDUser": {
113
- "type": "integer"
114
- },
115
- "Price": {
116
- "type": "number"
117
- },
118
- "StartDate": {
119
- "type": "string"
120
- },
121
- "EndDate": {
122
- "type": "string"
123
- },
124
- "Discountable": {
125
- "type": "boolean"
126
- },
127
- "CouponCode": {
128
- "type": "string"
129
- },
130
- "IDBook": {
131
- "type": "integer"
132
- }
133
- },
134
- "required": [
135
- "IDBookPrice"
136
- ]
137
- },
138
- "Authorization": {
139
- "__DefaultAPISecurity": {
140
- "Create": "Deny",
141
- "Read": "Deny",
142
- "Reads": "Deny",
143
- "ReadsBy": "Deny",
144
- "ReadMax": "Deny",
145
- "ReadSelectList": "Deny",
146
- "Update": "Deny",
147
- "Delete": "Deny",
148
- "Count": "Deny",
149
- "CountBy": "Deny",
150
- "Schema": "Deny",
151
- "Validate": "Deny",
152
- "New": "Deny"
153
- },
154
- "Unauthenticated": {
155
- "Create": "Deny",
156
- "Read": "Deny",
157
- "Reads": "Deny",
158
- "ReadsBy": "Deny",
159
- "ReadMax": "Deny",
160
- "ReadSelectList": "Deny",
161
- "Update": "Deny",
162
- "Delete": "Deny",
163
- "Count": "Deny",
164
- "CountBy": "Deny",
165
- "Schema": "Deny",
166
- "Validate": "Deny",
167
- "New": "Deny"
168
- },
169
- "Readonly": {
170
- "Create": "Deny",
171
- "Read": "Allow",
172
- "Reads": "Allow",
173
- "ReadsBy": "Allow",
174
- "ReadMax": "Allow",
175
- "ReadSelectList": "Allow",
176
- "Update": "Deny",
177
- "Delete": "Deny",
178
- "Count": "Allow",
179
- "CountBy": "Allow",
180
- "Schema": "Allow",
181
- "Validate": "Allow",
182
- "New": "Deny"
183
- },
184
- "User": {
185
- "Create": "Allow",
186
- "Read": "MyCustomer",
187
- "Reads": "MyCustomer",
188
- "ReadsBy": "MyCustomer",
189
- "ReadMax": "MyCustomer",
190
- "ReadSelectList": "MyCustomer",
191
- "Update": "Mine",
192
- "Delete": "Mine",
193
- "Count": "MyCustomer",
194
- "CountBy": "MyCustomer",
195
- "Schema": "MyCustomer",
196
- "Validate": "MyCustomer",
197
- "New": "MyCustomer"
198
- },
199
- "Manager": {
200
- "Create": "Allow",
201
- "Read": "MyCustomer",
202
- "Reads": "MyCustomer",
203
- "ReadsBy": "MyCustomer",
204
- "ReadMax": "MyCustomer",
205
- "ReadSelectList": "MyCustomer",
206
- "Update": "Mine",
207
- "Delete": "Mine",
208
- "Count": "MyCustomer",
209
- "CountBy": "MyCustomer",
210
- "Schema": "MyCustomer",
211
- "Validate": "MyCustomer",
212
- "New": "MyCustomer"
213
- },
214
- "Director": {
215
- "Create": "Allow",
216
- "Read": "MyCustomer",
217
- "Reads": "MyCustomer",
218
- "ReadsBy": "MyCustomer",
219
- "ReadMax": "MyCustomer",
220
- "ReadSelectList": "MyCustomer",
221
- "Update": "MyCustomer",
222
- "Delete": "MyCustomer",
223
- "Count": "MyCustomer",
224
- "CountBy": "MyCustomer",
225
- "Schema": "MyCustomer",
226
- "Validate": "MyCustomer",
227
- "New": "MyCustomer"
228
- },
229
- "Executive": {
230
- "Create": "Allow",
231
- "Read": "MyCustomer",
232
- "Reads": "MyCustomer",
233
- "ReadsBy": "MyCustomer",
234
- "ReadMax": "MyCustomer",
235
- "ReadSelectList": "MyCustomer",
236
- "Update": "MyCustomer",
237
- "Delete": "MyCustomer",
238
- "Count": "MyCustomer",
239
- "CountBy": "MyCustomer",
240
- "Schema": "MyCustomer",
241
- "Validate": "MyCustomer",
242
- "New": "MyCustomer"
243
- },
244
- "Administrator": {
245
- "Create": "Allow",
246
- "Read": "Allow",
247
- "Reads": "Allow",
248
- "ReadsBy": "Allow",
249
- "ReadMax": "Allow",
250
- "ReadSelectList": "Allow",
251
- "Update": "Allow",
252
- "Delete": "Allow",
253
- "Count": "Allow",
254
- "CountBy": "Allow",
255
- "Schema": "Allow",
256
- "Validate": "Allow",
257
- "New": "Allow"
258
- }
259
- }
260
- }
@@ -1,236 +0,0 @@
1
- {
2
- "Scope": "Review",
3
- "DefaultIdentifier": "IDReviews",
4
- "Domain": "Default",
5
- "Schema": [
6
- {
7
- "Column": "IDReviews",
8
- "Type": "AutoIdentity"
9
- },
10
- {
11
- "Column": "GUIDReviews",
12
- "Type": "AutoGUID"
13
- },
14
- {
15
- "Column": "CreateDate",
16
- "Type": "CreateDate"
17
- },
18
- {
19
- "Column": "CreatingIDUser",
20
- "Type": "CreateIDUser"
21
- },
22
- {
23
- "Column": "UpdateDate",
24
- "Type": "UpdateDate"
25
- },
26
- {
27
- "Column": "UpdatingIDUser",
28
- "Type": "UpdateIDUser"
29
- },
30
- {
31
- "Column": "Deleted",
32
- "Type": "Deleted"
33
- },
34
- {
35
- "Column": "DeleteDate",
36
- "Type": "DeleteDate"
37
- },
38
- {
39
- "Column": "DeletingIDUser",
40
- "Type": "DeleteIDUser"
41
- },
42
- {
43
- "Column": "Text",
44
- "Type": "String"
45
- },
46
- {
47
- "Column": "Rating",
48
- "Type": "Integer"
49
- },
50
- {
51
- "Column": "IDBook",
52
- "Type": "Integer"
53
- }
54
- ],
55
- "DefaultObject": {
56
- "IDReviews": 0,
57
- "GUIDReviews": "0x0000000000000000",
58
- "CreateDate": null,
59
- "CreatingIDUser": 0,
60
- "UpdateDate": null,
61
- "UpdatingIDUser": 0,
62
- "Deleted": false,
63
- "DeleteDate": null,
64
- "DeletingIDUser": 0,
65
- "Text": "",
66
- "Rating": 0,
67
- "IDBook": 0
68
- },
69
- "JsonSchema": {
70
- "title": "Review",
71
- "type": "object",
72
- "properties": {
73
- "IDReviews": {
74
- "type": "integer"
75
- },
76
- "GUIDReviews": {
77
- "type": "string"
78
- },
79
- "CreateDate": {
80
- "type": "string"
81
- },
82
- "CreatingIDUser": {
83
- "type": "integer"
84
- },
85
- "UpdateDate": {
86
- "type": "string"
87
- },
88
- "UpdatingIDUser": {
89
- "type": "integer"
90
- },
91
- "Deleted": {
92
- "type": "boolean"
93
- },
94
- "DeleteDate": {
95
- "type": "string"
96
- },
97
- "DeletingIDUser": {
98
- "type": "integer"
99
- },
100
- "Text": {
101
- "type": "string"
102
- },
103
- "Rating": {
104
- "type": "integer"
105
- },
106
- "IDBook": {
107
- "type": "integer"
108
- }
109
- },
110
- "required": [
111
- "IDReviews"
112
- ]
113
- },
114
- "Authorization": {
115
- "__DefaultAPISecurity": {
116
- "Create": "Deny",
117
- "Read": "Deny",
118
- "Reads": "Deny",
119
- "ReadsBy": "Deny",
120
- "ReadMax": "Deny",
121
- "ReadSelectList": "Deny",
122
- "Update": "Deny",
123
- "Delete": "Deny",
124
- "Count": "Deny",
125
- "CountBy": "Deny",
126
- "Schema": "Deny",
127
- "Validate": "Deny",
128
- "New": "Deny"
129
- },
130
- "Unauthenticated": {
131
- "Create": "Deny",
132
- "Read": "Deny",
133
- "Reads": "Deny",
134
- "ReadsBy": "Deny",
135
- "ReadMax": "Deny",
136
- "ReadSelectList": "Deny",
137
- "Update": "Deny",
138
- "Delete": "Deny",
139
- "Count": "Deny",
140
- "CountBy": "Deny",
141
- "Schema": "Deny",
142
- "Validate": "Deny",
143
- "New": "Deny"
144
- },
145
- "Readonly": {
146
- "Create": "Deny",
147
- "Read": "Allow",
148
- "Reads": "Allow",
149
- "ReadsBy": "Allow",
150
- "ReadMax": "Allow",
151
- "ReadSelectList": "Allow",
152
- "Update": "Deny",
153
- "Delete": "Deny",
154
- "Count": "Allow",
155
- "CountBy": "Allow",
156
- "Schema": "Allow",
157
- "Validate": "Allow",
158
- "New": "Deny"
159
- },
160
- "User": {
161
- "Create": "Allow",
162
- "Read": "MyCustomer",
163
- "Reads": "MyCustomer",
164
- "ReadsBy": "MyCustomer",
165
- "ReadMax": "MyCustomer",
166
- "ReadSelectList": "MyCustomer",
167
- "Update": "Mine",
168
- "Delete": "Mine",
169
- "Count": "MyCustomer",
170
- "CountBy": "MyCustomer",
171
- "Schema": "MyCustomer",
172
- "Validate": "MyCustomer",
173
- "New": "MyCustomer"
174
- },
175
- "Manager": {
176
- "Create": "Allow",
177
- "Read": "MyCustomer",
178
- "Reads": "MyCustomer",
179
- "ReadsBy": "MyCustomer",
180
- "ReadMax": "MyCustomer",
181
- "ReadSelectList": "MyCustomer",
182
- "Update": "Mine",
183
- "Delete": "Mine",
184
- "Count": "MyCustomer",
185
- "CountBy": "MyCustomer",
186
- "Schema": "MyCustomer",
187
- "Validate": "MyCustomer",
188
- "New": "MyCustomer"
189
- },
190
- "Director": {
191
- "Create": "Allow",
192
- "Read": "MyCustomer",
193
- "Reads": "MyCustomer",
194
- "ReadsBy": "MyCustomer",
195
- "ReadMax": "MyCustomer",
196
- "ReadSelectList": "MyCustomer",
197
- "Update": "MyCustomer",
198
- "Delete": "MyCustomer",
199
- "Count": "MyCustomer",
200
- "CountBy": "MyCustomer",
201
- "Schema": "MyCustomer",
202
- "Validate": "MyCustomer",
203
- "New": "MyCustomer"
204
- },
205
- "Executive": {
206
- "Create": "Allow",
207
- "Read": "MyCustomer",
208
- "Reads": "MyCustomer",
209
- "ReadsBy": "MyCustomer",
210
- "ReadMax": "MyCustomer",
211
- "ReadSelectList": "MyCustomer",
212
- "Update": "MyCustomer",
213
- "Delete": "MyCustomer",
214
- "Count": "MyCustomer",
215
- "CountBy": "MyCustomer",
216
- "Schema": "MyCustomer",
217
- "Validate": "MyCustomer",
218
- "New": "MyCustomer"
219
- },
220
- "Administrator": {
221
- "Create": "Allow",
222
- "Read": "Allow",
223
- "Reads": "Allow",
224
- "ReadsBy": "Allow",
225
- "ReadMax": "Allow",
226
- "ReadSelectList": "Allow",
227
- "Update": "Allow",
228
- "Delete": "Allow",
229
- "Count": "Allow",
230
- "CountBy": "Allow",
231
- "Schema": "Allow",
232
- "Validate": "Allow",
233
- "New": "Allow"
234
- }
235
- }
236
- }
@@ -1 +0,0 @@
1
- This is where the meadow schema for each table of the data model will generate.
@@ -1,116 +0,0 @@
1
- -- Data Model -- Generated 2022-03-29T11:36:36.684Z
2
-
3
- -- This script creates the following tables:
4
- -- Table ----------------------------------------- Column Count ----------------
5
- -- Book 16
6
- -- BookAuthorJoin 4
7
- -- Author 10
8
- -- BookPrice 15
9
- -- Review 12
10
-
11
-
12
-
13
- -- [ Book ]
14
- CREATE TABLE IF NOT EXISTS
15
- Book
16
- (
17
- IDBook INT UNSIGNED NOT NULL AUTO_INCREMENT,
18
- GUIDBook CHAR(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
19
- CreateDate DATETIME,
20
- CreatingIDUser INT NOT NULL DEFAULT '0',
21
- UpdateDate DATETIME,
22
- UpdatingIDUser INT NOT NULL DEFAULT '0',
23
- Deleted TINYINT NOT NULL DEFAULT '0',
24
- DeleteDate DATETIME,
25
- DeletingIDUser INT NOT NULL DEFAULT '0',
26
- Title CHAR(200) NOT NULL DEFAULT '',
27
- Type CHAR(32) NOT NULL DEFAULT '',
28
- Genre CHAR(128) NOT NULL DEFAULT '',
29
- ISBN CHAR(64) NOT NULL DEFAULT '',
30
- Language CHAR(12) NOT NULL DEFAULT '',
31
- ImageURL CHAR(254) NOT NULL DEFAULT '',
32
- PublicationYear INT NOT NULL DEFAULT '0',
33
-
34
- PRIMARY KEY (IDBook)
35
- ) DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
36
-
37
-
38
-
39
- -- [ BookAuthorJoin ]
40
- CREATE TABLE IF NOT EXISTS
41
- BookAuthorJoin
42
- (
43
- IDBookAuthorJoin INT UNSIGNED NOT NULL AUTO_INCREMENT,
44
- GUIDBookAuthorJoin CHAR(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
45
- IDBook INT NOT NULL DEFAULT '0',
46
- IDAuthor INT NOT NULL DEFAULT '0',
47
-
48
- PRIMARY KEY (IDBookAuthorJoin)
49
- ) DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
50
-
51
-
52
-
53
- -- [ Author ]
54
- CREATE TABLE IF NOT EXISTS
55
- Author
56
- (
57
- IDAuthor INT UNSIGNED NOT NULL AUTO_INCREMENT,
58
- GUIDAuthor CHAR(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
59
- CreateDate DATETIME,
60
- CreatingIDUser INT NOT NULL DEFAULT '0',
61
- UpdateDate DATETIME,
62
- UpdatingIDUser INT NOT NULL DEFAULT '0',
63
- Deleted TINYINT NOT NULL DEFAULT '0',
64
- DeleteDate DATETIME,
65
- DeletingIDUser INT NOT NULL DEFAULT '0',
66
- Name CHAR(200) NOT NULL DEFAULT '',
67
-
68
- PRIMARY KEY (IDAuthor)
69
- ) DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
70
-
71
-
72
-
73
- -- [ BookPrice ]
74
- CREATE TABLE IF NOT EXISTS
75
- BookPrice
76
- (
77
- IDBookPrice INT UNSIGNED NOT NULL AUTO_INCREMENT,
78
- GUIDBookPrice CHAR(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
79
- CreateDate DATETIME,
80
- CreatingIDUser INT NOT NULL DEFAULT '0',
81
- UpdateDate DATETIME,
82
- UpdatingIDUser INT NOT NULL DEFAULT '0',
83
- Deleted TINYINT NOT NULL DEFAULT '0',
84
- DeleteDate DATETIME,
85
- DeletingIDUser INT NOT NULL DEFAULT '0',
86
- Price DECIMAL(8,2),
87
- StartDate DATETIME,
88
- EndDate DATETIME,
89
- Discountable TINYINT NOT NULL DEFAULT '0',
90
- CouponCode CHAR(16) NOT NULL DEFAULT '',
91
- IDBook INT NOT NULL DEFAULT '0',
92
-
93
- PRIMARY KEY (IDBookPrice)
94
- ) DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
95
-
96
-
97
-
98
- -- [ Review ]
99
- CREATE TABLE IF NOT EXISTS
100
- Review
101
- (
102
- IDReviews INT UNSIGNED NOT NULL AUTO_INCREMENT,
103
- GUIDReviews CHAR(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
104
- CreateDate DATETIME,
105
- CreatingIDUser INT NOT NULL DEFAULT '0',
106
- UpdateDate DATETIME,
107
- UpdatingIDUser INT NOT NULL DEFAULT '0',
108
- Deleted TINYINT NOT NULL DEFAULT '0',
109
- DeleteDate DATETIME,
110
- DeletingIDUser INT NOT NULL DEFAULT '0',
111
- Text TEXT,
112
- Rating INT NOT NULL DEFAULT '0',
113
- IDBook INT NOT NULL DEFAULT '0',
114
-
115
- PRIMARY KEY (IDReviews)
116
- ) DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;