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 +0,0 @@
1
- {}
@@ -1,280 +0,0 @@
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
- }
@@ -1,66 +0,0 @@
1
- !Book
2
- @IDBook
3
- %GUIDBook
4
- &CreateDate
5
- #CreatingIDUser
6
- &UpdateDate
7
- #UpdatingIDUser
8
- ^Deleted
9
- &DeleteDate
10
- #DeletingIDUser
11
- $Title 200
12
- $Type 32
13
- $Genre 128
14
- $ISBN 64
15
- $Language 12
16
- $ImageURL 254
17
- #PublicationYear
18
-
19
- !BookAuthorJoin
20
- @IDBookAuthorJoin
21
- %GUIDBookAuthorJoin
22
- #IDBook -> IDBook
23
- #IDAuthor -> IDAuthor
24
-
25
- !Author
26
- @IDAuthor
27
- %GUIDAuthor
28
- &CreateDate
29
- #CreatingIDUser
30
- &UpdateDate
31
- #UpdatingIDUser
32
- ^Deleted
33
- &DeleteDate
34
- #DeletingIDUser
35
- $Name 200
36
-
37
- !BookPrice
38
- @IDBookPrice
39
- %GUIDBookPrice
40
- &CreateDate
41
- #CreatingIDUser
42
- &UpdateDate
43
- #UpdatingIDUser
44
- ^Deleted
45
- &DeleteDate
46
- #DeletingIDUser
47
- .Price 8,2
48
- &StartDate
49
- &EndDate
50
- ^Discountable
51
- $CouponCode 16
52
- #IDBook -> IDBook
53
-
54
- !Review
55
- @IDReviews
56
- %GUIDReviews
57
- &CreateDate
58
- #CreatingIDUser
59
- &UpdateDate
60
- #UpdatingIDUser
61
- ^Deleted
62
- &DeleteDate
63
- #DeletingIDUser
64
- *Text
65
- #Rating
66
- #IDBook -> IDBook
@@ -1 +0,0 @@
1
- This is where the auto compiled diagram of the data model will generate.
@@ -1,13 +0,0 @@
1
- ## Table Connection Graph -- Generated 2022-03-29T11:36:37.788Z
2
- digraph DataModel {
3
- rankdir=LR
4
- Book;
5
- BookAuthorJoin;
6
- Author;
7
- BookPrice;
8
- Review;
9
- BookAuthorJoin -> Book
10
- BookAuthorJoin -> Author
11
- BookPrice -> Book
12
- Review -> Book
13
- }
@@ -1,18 +0,0 @@
1
- ##### {DocumentationIndex|Home} > {Model/DataModel|Data Model} > {Model/Dictionary/Dictionary|Data Dictionary}
2
-
3
- Data Dictionary
4
- =========================
5
-
6
- Each entry below describes a single table in the database.
7
-
8
- Table | Column Count
9
- ----- | -----------:
10
- {Model/Dictionary/Model-Book|Book} | 16
11
- {Model/Dictionary/Model-BookAuthorJoin|BookAuthorJoin} | 4
12
- {Model/Dictionary/Model-Author|Author} | 10
13
- {Model/Dictionary/Model-BookPrice|BookPrice} | 15
14
- {Model/Dictionary/Model-Review|Review} | 12
15
-
16
- - - -
17
-
18
- Generated on 2022-03-29 at 11:36
@@ -1,20 +0,0 @@
1
- ##### {DocumentationIndex|Home} > {Model/DataModel|Data Model} > {Model/Dictionary/Dictionary|Data Dictionary} > {Model/Dictionary/Model-Author|Author Table}
2
-
3
- Author
4
- ===
5
-
6
- Column Name | Size | Data Type | Join
7
- ----------- | ---: | --------- | ----
8
- IDAuthor | | ID |
9
- GUIDAuthor | | GUID |
10
- CreateDate | | DateTime |
11
- CreatingIDUser | | Numeric |
12
- UpdateDate | | DateTime |
13
- UpdatingIDUser | | Numeric |
14
- Deleted | | Boolean |
15
- DeleteDate | | DateTime |
16
- DeletingIDUser | | Numeric |
17
- Name | 200 | String |
18
- - - -
19
-
20
- Generated on 2022-03-29 at 11:36
@@ -1,26 +0,0 @@
1
- ##### {DocumentationIndex|Home} > {Model/DataModel|Data Model} > {Model/Dictionary/Dictionary|Data Dictionary} > {Model/Dictionary/Model-Book|Book Table}
2
-
3
- Book
4
- ===
5
-
6
- Column Name | Size | Data Type | Join
7
- ----------- | ---: | --------- | ----
8
- IDBook | | ID |
9
- GUIDBook | | GUID |
10
- CreateDate | | DateTime |
11
- CreatingIDUser | | Numeric |
12
- UpdateDate | | DateTime |
13
- UpdatingIDUser | | Numeric |
14
- Deleted | | Boolean |
15
- DeleteDate | | DateTime |
16
- DeletingIDUser | | Numeric |
17
- Title | 200 | String |
18
- Type | 32 | String |
19
- Genre | 128 | String |
20
- ISBN | 64 | String |
21
- Language | 12 | String |
22
- ImageURL | 254 | String |
23
- PublicationYear | | Numeric |
24
- - - -
25
-
26
- Generated on 2022-03-29 at 11:36
@@ -1,14 +0,0 @@
1
- ##### {DocumentationIndex|Home} > {Model/DataModel|Data Model} > {Model/Dictionary/Dictionary|Data Dictionary} > {Model/Dictionary/Model-BookAuthorJoin|BookAuthorJoin Table}
2
-
3
- BookAuthorJoin
4
- ===
5
-
6
- Column Name | Size | Data Type | Join
7
- ----------- | ---: | --------- | ----
8
- IDBookAuthorJoin | | ID |
9
- GUIDBookAuthorJoin | | GUID |
10
- IDBook | | Numeric | Book.IDBook
11
- IDAuthor | | Numeric | Author.IDAuthor
12
- - - -
13
-
14
- Generated on 2022-03-29 at 11:36
@@ -1,25 +0,0 @@
1
- ##### {DocumentationIndex|Home} > {Model/DataModel|Data Model} > {Model/Dictionary/Dictionary|Data Dictionary} > {Model/Dictionary/Model-BookPrice|BookPrice Table}
2
-
3
- BookPrice
4
- ===
5
-
6
- Column Name | Size | Data Type | Join
7
- ----------- | ---: | --------- | ----
8
- IDBookPrice | | ID |
9
- GUIDBookPrice | | GUID |
10
- CreateDate | | DateTime |
11
- CreatingIDUser | | Numeric |
12
- UpdateDate | | DateTime |
13
- UpdatingIDUser | | Numeric |
14
- Deleted | | Boolean |
15
- DeleteDate | | DateTime |
16
- DeletingIDUser | | Numeric |
17
- Price | 8,2 | Decimal |
18
- StartDate | | DateTime |
19
- EndDate | | DateTime |
20
- Discountable | | Boolean |
21
- CouponCode | 16 | String |
22
- IDBook | | Numeric | Book.IDBook
23
- - - -
24
-
25
- Generated on 2022-03-29 at 11:36
@@ -1,22 +0,0 @@
1
- ##### {DocumentationIndex|Home} > {Model/DataModel|Data Model} > {Model/Dictionary/Dictionary|Data Dictionary} > {Model/Dictionary/Model-Review|Review Table}
2
-
3
- Review
4
- ===
5
-
6
- Column Name | Size | Data Type | Join
7
- ----------- | ---: | --------- | ----
8
- IDReviews | | ID |
9
- GUIDReviews | | GUID |
10
- CreateDate | | DateTime |
11
- CreatingIDUser | | Numeric |
12
- UpdateDate | | DateTime |
13
- UpdatingIDUser | | Numeric |
14
- Deleted | | Boolean |
15
- DeleteDate | | DateTime |
16
- DeletingIDUser | | Numeric |
17
- Text | | Text |
18
- Rating | | Numeric |
19
- IDBook | | Numeric | Book.IDBook
20
- - - -
21
-
22
- Generated on 2022-03-29 at 11:36
@@ -1,17 +0,0 @@
1
- ##### {DocumentationIndex|Home} > {Model/DataModel|Data Model} > {Model/Dictionary/ModelChangeTracking|Table Change Tracking}
2
-
3
- Table Change Tracking
4
- =====================
5
-
6
- The following table describes which tables have implicit create, update and delete change tracking (provided by the meadow endpoints API architecture). This does not include any kind of media archival or record longitudinal backups; just timestamps and user stamps for the last action of each type.
7
-
8
- Table | Create | Update | Delete
9
- ----- | :----: | :----: | :----:
10
- Book | X | X | X
11
- BookAuthorJoin | | |
12
- Author | X | X | X
13
- BookPrice | X | X | X
14
- Review | X | X | X
15
- - - -
16
-
17
- Generated on 2022-03-29 at 11:36
@@ -1 +0,0 @@
1
- This is where the auto compiled markdown documentation of the data model will generate.
@@ -1,5 +0,0 @@
1
- DROP TABLE Author;
2
- DROP TABLE Book;
3
- DROP TABLE BookAuthorJoin;
4
- DROP TABLE BookPrice;
5
- DROP TABLE Review;
@@ -1,17 +0,0 @@
1
- #!/bin/bash
2
-
3
- trap 'kill -TERM $PID' TERM INT
4
-
5
- /usr/bin/entrypoint.sh --bind-addr "0.0.0.0:8080" . &
6
-
7
- PID=$!
8
-
9
- sleep 2
10
-
11
- sudo service mariadb restart
12
-
13
- wait $PID
14
- trap - TERM INT
15
- wait $PID
16
- EXIT_STATUS=$?
17
- echo "Service exited with status ${EXIT_STATUS}"
@@ -1,5 +0,0 @@
1
- FLUSH PRIVILEGES;
2
-
3
- ALTER USER 'root'@'localhost' IDENTIFIED BY '123456789';
4
-
5
- GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456789' WITH GRANT OPTION;
@@ -1,2 +0,0 @@
1
- This folder contains any hand-written scripts... currently just the script
2
- to drop tables for rapid DB changes and sketches.
@@ -1,4 +0,0 @@
1
- [mysqldump]
2
- databases=bookstore
3
- user=root
4
- password=123456789