retold-data-service 1.0.0
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/code-server/config.yaml +4 -0
- package/.config/configstore/update-notifier-npm-check-updates.json +4 -0
- package/.config/configstore/update-notifier-npm.json +4 -0
- package/.config/luxury-extras/.vscode/launch.json +46 -0
- package/.config/luxury-extras/Dockerfile +32 -0
- package/.config/luxury-extras/MySQL/Dockerfile +50 -0
- package/.config/luxury-extras/MySQL/MySQL-Laden-Entry.sh +17 -0
- package/.config/luxury-extras/MySQL/MySQL-Security.sql +5 -0
- package/.config/luxury-extras/model/ddl/BookStore.ddl +66 -0
- package/.config/luxury-extras/model/documentation/Dictionary.md +18 -0
- package/.config/luxury-extras/model/documentation/Model-Author.md +20 -0
- package/.config/luxury-extras/model/documentation/Model-Book.md +26 -0
- package/.config/luxury-extras/model/documentation/Model-BookAuthorJoin.md +14 -0
- package/.config/luxury-extras/model/documentation/Model-BookPrice.md +25 -0
- package/.config/luxury-extras/model/documentation/Model-Review.md +22 -0
- package/.config/luxury-extras/model/documentation/ModelChangeTracking.md +17 -0
- package/.config/luxury-extras/model/documentation/README.md +1 -0
- package/.config/luxury-extras/model/documentation/diagram/README.md +1 -0
- package/.config/luxury-extras/model/documentation/diagram/Stricture_Output.dot +13 -0
- package/.config/luxury-extras/model/documentation/diagram/Stricture_Output.png +0 -0
- package/.config/luxury-extras/model/json_schema_entities/BookStore-MeadowSchema-Author.json +220 -0
- package/.config/luxury-extras/model/json_schema_entities/BookStore-MeadowSchema-Book.json +268 -0
- package/.config/luxury-extras/model/json_schema_entities/BookStore-MeadowSchema-BookAuthorJoin.json +172 -0
- package/.config/luxury-extras/model/json_schema_entities/BookStore-MeadowSchema-BookPrice.json +260 -0
- package/.config/luxury-extras/model/json_schema_entities/BookStore-MeadowSchema-Review.json +236 -0
- package/.config/luxury-extras/model/json_schema_entities/README.md +1 -0
- package/.config/luxury-extras/model/json_schema_model/BookStore-Extended.json +915 -0
- package/.config/luxury-extras/model/json_schema_model/BookStore-PICT.json +1 -0
- package/.config/luxury-extras/model/json_schema_model/BookStore.json +280 -0
- package/.config/luxury-extras/model/json_schema_model/README.md +1 -0
- package/.config/luxury-extras/model/mysql_create/BookStore-CreateDatabase.mysql.sql +116 -0
- package/.config/luxury-extras/model/mysql_create/README.md +1 -0
- package/LICENSE +21 -0
- package/README.md +86 -0
- package/debug/Harness-Configuration.json +51 -0
- package/debug/Harness.js +3 -0
- package/debug/model/Build-Database.sh +22 -0
- package/debug/model/Model-Extended.json +915 -0
- package/debug/model/Model-PICT.json +1 -0
- package/debug/model/Model.json +280 -0
- package/debug/model/ddl/Model.ddl +66 -0
- package/debug/model/generated_documentation/Dictionary.md +18 -0
- package/debug/model/generated_documentation/Model-Author.md +20 -0
- package/debug/model/generated_documentation/Model-Book.md +26 -0
- package/debug/model/generated_documentation/Model-BookAuthorJoin.md +14 -0
- package/debug/model/generated_documentation/Model-BookPrice.md +25 -0
- package/debug/model/generated_documentation/Model-Review.md +22 -0
- package/debug/model/generated_documentation/ModelChangeTracking.md +17 -0
- package/debug/model/generated_documentation/diagrams/Stricture_Output.dot +13 -0
- package/debug/model/generated_documentation/diagrams/Stricture_Output.png +0 -0
- package/debug/model/generated_documentation/diagrams/full/Stricture_Output.dot +13 -0
- package/debug/model/generated_documentation/diagrams/full/Stricture_Output.png +0 -0
- package/debug/model/meadow/Model-MeadowSchema-Author.json +220 -0
- package/debug/model/meadow/Model-MeadowSchema-Book.json +268 -0
- package/debug/model/meadow/Model-MeadowSchema-BookAuthorJoin.json +172 -0
- package/debug/model/meadow/Model-MeadowSchema-BookPrice.json +260 -0
- package/debug/model/meadow/Model-MeadowSchema-Review.json +236 -0
- package/debug/model/mysql/Model-CreateDatabase.mysql.sql +116 -0
- package/package.json +43 -0
- package/source/Cumulation-Settings-Default.js +19 -0
- package/source/Cumulation.js +90 -0
- package/source/GraphGet.js +608 -0
- package/source/ProviderHelpers/Meadow-Provider-Helper-ALASQL.js +48 -0
- package/source/ProviderHelpers/Meadow-Provider-Helper-Base.js +46 -0
- package/source/ProviderHelpers/Meadow-Provider-Helper-MySQL.js +62 -0
- package/source/Retold-Data-Service.js +285 -0
- package/test/RetoldDataService_tests.js +73 -0
- package/test/basic_test_configurations/fable-config-load_model.json +45 -0
- package/test/model/ddl/BookStore.ddl +66 -0
- package/test/model/generated_diagram/README.md +1 -0
- package/test/model/generated_diagram/Stricture_Output.dot +13 -0
- package/test/model/generated_diagram/Stricture_Output.png +0 -0
- package/test/model/generated_documentation/Dictionary.md +18 -0
- package/test/model/generated_documentation/Model-Author.md +20 -0
- package/test/model/generated_documentation/Model-Book.md +26 -0
- package/test/model/generated_documentation/Model-BookAuthorJoin.md +14 -0
- package/test/model/generated_documentation/Model-BookPrice.md +25 -0
- package/test/model/generated_documentation/Model-Review.md +22 -0
- package/test/model/generated_documentation/ModelChangeTracking.md +17 -0
- package/test/model/generated_documentation/README.md +1 -0
- package/test/model/manual_scripts/DropTables.sql +5 -0
- package/test/model/manual_scripts/README.md +2 -0
- package/test/model/meadow_model/BookStore-Extended.json +915 -0
- package/test/model/meadow_model/BookStore-PICT.json +1 -0
- package/test/model/meadow_model/BookStore.json +280 -0
- package/test/model/meadow_model/README.md +1 -0
- package/test/model/meadow_schema/BookStore-MeadowSchema-Author.json +220 -0
- package/test/model/meadow_schema/BookStore-MeadowSchema-Book.json +268 -0
- package/test/model/meadow_schema/BookStore-MeadowSchema-BookAuthorJoin.json +172 -0
- package/test/model/meadow_schema/BookStore-MeadowSchema-BookPrice.json +260 -0
- package/test/model/meadow_schema/BookStore-MeadowSchema-Review.json +236 -0
- package/test/model/meadow_schema/README.md +1 -0
- package/test/model/sql_create/BookStore-CreateDatabase.mysql.sql +116 -0
- package/test/model/sql_create/README.md +1 -0
|
@@ -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.
|