-
Notifications
You must be signed in to change notification settings - Fork 3
368 upgrade to jitar v09 #369
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 13 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
e2c860c
#357: defined resources
basmasking 05a1302
#357: file not found :)
basmasking 73553fe
Merge branch 'main' into 357-feat-resource-definition
basmasking 19b5bcb
#361: first index resolution for resource and segment
basmasking e75bc8b
#361: second item, without the re-export for now
basmasking fec5ecb
#361: updated segments with latest changes
basmasking 7578073
#361: added index files to domain
petermasking 2534dfe
Merge branch 'main' into 361-rewrite-application-for-index-resolution
petermasking d0a5654
#361: renamed module files to index for integrations
petermasking 8f73238
#361: updated resource list to use the index files
petermasking c488cc7
#361: logger is also a resource
basmasking e17e591
#361: .resources.json not required as extension
basmasking 957d6db
#368: upgraded Jitar to v0.9
petermasking 80c62db
#368: removed .js extentions
petermasking ef6a231
#368: cleaned up imports
petermasking 3682ffe
#368: last import clean up
petermasking File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
{ | ||
"source": "./dist", | ||
"target": "./dist" | ||
"target": "./dist", | ||
"segments": "./segments", | ||
"resources": "./resources" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[ | ||
"./integrations/authentication", | ||
"./integrations/database", | ||
"./integrations/filestore", | ||
"./integrations/logging", | ||
"./integrations/notification" | ||
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"./domain/authentication/getLoginUrl": { "default": { "access": "public" } }, | ||
"./domain/authentication/login": { "default": { "access": "public" } }, | ||
"./domain/authentication/logout": { "default": { "access": "public" } }, | ||
|
||
"./domain/creator/getByNicknameAggregated": { "default": { "access": "public" } }, | ||
"./domain/creator/getMeAggregated": { "default": { "access": "public" } }, | ||
"./domain/creator/updateFullName": { "default": { "access": "public" }}, | ||
"./domain/creator/updateNickname": { "default": { "access": "public" }}, | ||
|
||
"./domain/notification/getRecentAggregated": { "default": { "access": "public" } }, | ||
"./domain/notification/getByIdAggregated": { "default": { "access": "public" } }, | ||
|
||
"./domain/post/add": { "default": { "access": "public" } }, | ||
"./domain/post/exploreAggregated": { "default": { "access": "public" } }, | ||
"./domain/post/getByIdAggregated": { "default": { "access": "public" } }, | ||
"./domain/post/getByCreatorAggregated": { "default": { "access": "public" } }, | ||
"./domain/post/getAllAggregated": { "default": { "access": "public"}}, | ||
"./domain/post/getByFollowingAggregated": { "default": { "access": "public" } }, | ||
"./domain/post/remove": { "default": { "access": "public" } }, | ||
"./domain/post/toggleRating": { "default": { "access": "public" } }, | ||
|
||
"./domain/reaction/createWithComic": { "default": { "access": "public" } }, | ||
"./domain/reaction/createWithComment": { "default": { "access": "public" } }, | ||
"./domain/reaction/getByIdAggregated": { "default": { "access": "public" } }, | ||
"./domain/reaction/getByPostAggregated": { "default": { "access": "public" } }, | ||
"./domain/reaction/remove": { "default": { "access": "public" } }, | ||
"./domain/reaction/toggleRating": { "default": { "access": "public" } }, | ||
|
||
"./domain/relation/exploreAggregated": { "default": { "access": "public" } }, | ||
"./domain/relation/establish": { "default": { "access": "public" }}, | ||
"./domain/relation/getAggregated": { "default": { "access": "public" } }, | ||
"./domain/relation/getFollowersAggregated": { "default": { "access": "public" } }, | ||
"./domain/relation/getFollowingAggregated": { "default": { "access": "public" } } | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"./domain/notification/create": { "default": { "access": "protected" } }, | ||
"./domain/notification/getById": { "default": { "access": "protected" } }, | ||
"./domain/notification/getRecent": { "default": { "access": "protected" } } | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"./domain/comic/getById": { "default": { "access": "protected" } }, | ||
|
||
"./domain/comment/getById": { "default": { "access": "protected" } }, | ||
|
||
"./domain/creator/getById": { "default": { "access": "protected" } }, | ||
"./domain/creator/getByEmail": { "default": { "access": "protected" } }, | ||
"./domain/creator/getByNickname": { "default": { "access": "protected" } }, | ||
"./domain/creator/getMe": { "default": { "access": "protected" } }, | ||
|
||
"./domain/image/getById": { "default": { "access": "protected" } }, | ||
|
||
"./domain/post/explore": { "default": { "access": "protected" } }, | ||
"./domain/post/getAll": { "default": { "access": "protected" } }, | ||
"./domain/post/getByCreator": { "default": { "access": "protected" } }, | ||
"./domain/post/getByFollowing": { "default": { "access": "protected" } }, | ||
"./domain/post/getById": { "default": { "access": "protected" } }, | ||
|
||
"./domain/rating/exists": { "default": { "access": "protected" } }, | ||
|
||
"./domain/reaction/getById": { "default": { "access": "protected" } }, | ||
"./domain/reaction/getByPost": { "default": { "access": "protected" } }, | ||
|
||
"./domain/relation/establish": { "default": { "access": "protected" } }, | ||
"./domain/relation/explore": { "default": { "access": "protected" } }, | ||
"./domain/relation/get": { "default": { "access": "protected" } }, | ||
"./domain/relation/getFollowers": { "default": { "access": "protected" } }, | ||
"./domain/relation/getFollowing": { "default": { "access": "protected" } } | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"./domain/comic/create/insertData": { "default": { "access": "protected" } }, | ||
"./domain/comic/erase": { "default": { "access": "protected" } }, | ||
|
||
"./domain/comment/create": { "default": { "access": "protected" } }, | ||
"./domain/comment/erase": { "default": { "access": "protected" } }, | ||
|
||
"./domain/creator/create": { "default": { "access": "protected" } }, | ||
"./domain/creator/update": { "default": { "access": "protected" } }, | ||
|
||
"./domain/image/save": { "default": { "access": "protected" } }, | ||
"./domain/image/erase": { "default": { "access": "protected" } }, | ||
|
||
"./domain/post/create": { "default": { "access": "protected" } }, | ||
"./domain/post/erase": { "default": { "access": "protected" } }, | ||
"./domain/post/remove/deleteData": { "default": { "access": "protected" }}, | ||
"./domain/post/update": { "default": { "access": "protected" } }, | ||
|
||
"./domain/rating/update": { "default": { "access": "protected" } }, | ||
|
||
"./domain/reaction/create": { "default": { "access": "protected" } }, | ||
"./domain/reaction/remove/deleteData": { "default": { "access": "protected" } }, | ||
"./domain/reaction/update": { "default": { "access": "protected" } }, | ||
|
||
"./domain/relation/establish/insertData": { "default": { "access": "protected" } }, | ||
"./domain/relation/establish/eraseData": { "default": { "access": "protected" } } | ||
} |
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...ain/authentication/getLoginUrl/feature.ts → ...authentication/getLoginUrl/getLoginUrl.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
export { default } from './getLoginUrl'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
|
||
export { default as requester } from './requester'; | ||
export type { Requester } from './types'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
export { default } from './login'; |
8 changes: 4 additions & 4 deletions
8
src/domain/authentication/login/feature.ts → src/domain/authentication/login/login.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
export { default } from './logout'; |
2 changes: 1 addition & 1 deletion
2
src/domain/authentication/logout/feature.ts → src/domain/authentication/logout/logout.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/domain/comic/aggregate/feature.ts → src/domain/comic/aggregate/aggregate.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
export { default } from './aggregate'; | ||
|
||
export type { AggregatedData } from './types'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Imports directly, instead of using index file