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.
- package/.config/configstore/update-notifier-npm.json +1 -1
- package/.config/retold-harness/MySQL-Laden-Entry.sh +17 -0
- package/.config/retold-harness/MySQL-Security.sql +5 -0
- package/.config/retold-harness/bookstore-api-endpoint-exercises.paw +0 -0
- package/.config/retold-harness/bookstore-configuration.json +28 -0
- package/.config/retold-harness/bookstore-import-books-run.js +1 -0
- package/.config/retold-harness/bookstore-import-books.js +214 -0
- package/.config/retold-harness/bookstore-serve-meadow-endpoint-apis-IPC.js +137 -0
- package/.config/retold-harness/bookstore-serve-meadow-endpoint-apis.js +128 -0
- package/.config/retold-harness/data/books.csv +10001 -0
- package/.config/retold-harness/model/ddl/BookStore.ddl +66 -0
- package/.config/retold-harness/model/generated_diagram/README.md +1 -0
- package/.config/retold-harness/model/generated_diagram/Stricture_Output.dot +13 -0
- package/.config/retold-harness/model/generated_diagram/Stricture_Output.png +0 -0
- package/.config/retold-harness/model/generated_documentation/Dictionary.md +18 -0
- package/.config/retold-harness/model/generated_documentation/Model-Author.md +20 -0
- package/.config/retold-harness/model/generated_documentation/Model-Book.md +26 -0
- package/.config/retold-harness/model/generated_documentation/Model-BookAuthorJoin.md +14 -0
- package/.config/retold-harness/model/generated_documentation/Model-BookPrice.md +25 -0
- package/.config/retold-harness/model/generated_documentation/Model-Review.md +22 -0
- package/.config/retold-harness/model/generated_documentation/ModelChangeTracking.md +17 -0
- package/.config/retold-harness/model/generated_documentation/README.md +1 -0
- package/.config/retold-harness/model/json_schema/BookStore-Extended.json +915 -0
- package/.config/retold-harness/model/json_schema/BookStore-PICT.json +1 -0
- package/.config/retold-harness/model/json_schema/BookStore.json +280 -0
- package/.config/retold-harness/model/json_schema/README.md +1 -0
- package/.config/retold-harness/model/manual_scripts/DropTables.sql +5 -0
- package/.config/retold-harness/model/manual_scripts/README.md +2 -0
- package/.config/retold-harness/model/meadow_schema/BookStore-MeadowSchema-Author.json +220 -0
- package/.config/retold-harness/model/meadow_schema/BookStore-MeadowSchema-Book.json +268 -0
- package/.config/retold-harness/model/meadow_schema/BookStore-MeadowSchema-BookAuthorJoin.json +172 -0
- package/.config/retold-harness/model/meadow_schema/BookStore-MeadowSchema-BookPrice.json +260 -0
- package/.config/retold-harness/model/meadow_schema/BookStore-MeadowSchema-Review.json +236 -0
- package/.config/retold-harness/model/meadow_schema/README.md +1 -0
- package/.config/retold-harness/model/sql_create/BookStore-CreateDatabase.mysql.sql +116 -0
- package/.config/retold-harness/model/sql_create/README.md +1 -0
- package/.config/retold-harness/package.json +19 -0
- package/.config/retold-harness/test_old/Tests.js +3243 -0
- package/.config/retold-harness/test_old/untitled.js +88 -0
- package/.config/vscode-sqltools/runningInfo.json +13 -0
- package/.vscode/settings.json +17 -0
- package/Dockerfile_LUXURYCode +18 -0
- package/README.md +1 -1
- package/dist/fable.compatible.js +1 -11
- package/dist/fable.compatible.min.js +2 -78
- package/dist/fable.compatible.min.js.map +1 -1
- package/dist/fable.js +1 -11
- package/dist/fable.min.js +2 -70
- package/dist/fable.min.js.map +1 -1
- package/package.json +5 -5
- package/source/Fable-ServiceManager.js +0 -1
- package/source/Fable.js +5 -1
- package/source/services/Fable-Service-DataFormat.js +0 -1
|
@@ -0,0 +1,66 @@
|
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
This is where the auto compiled diagram of the data model will generate.
|
|
@@ -0,0 +1,18 @@
|
|
|
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
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
|
@@ -0,0 +1,26 @@
|
|
|
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
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
|
@@ -0,0 +1,22 @@
|
|
|
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
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
This is where the auto compiled markdown documentation of the data model will generate.
|