-
Notifications
You must be signed in to change notification settings - Fork 32
♻️ VIP models introduce licensed versioning (🗃️) #7215
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
matusdrobuliak66
merged 44 commits into
ITISFoundation:master
from
matusdrobuliak66:p-models-split-licensed-items-2-attempt-continuation
Feb 13, 2025
Merged
Changes from all commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
eada1fd
introduce licensed resources
matusdrobuliak66 8a1fcb8
Merge branch 'master' into vip-models-split-licensed-items-2-attempt
matusdrobuliak66 70d2ba5
Merge branch 'master' of github.com:ITISFoundation/osparc-simcore int…
matusdrobuliak66 6907294
fix revision id
matusdrobuliak66 34d6d64
remove redundant comment
matusdrobuliak66 bf795e5
Merge branch 'master' into vip-models-split-licensed-items-2-attempt
matusdrobuliak66 8230164
review @pcrespov
matusdrobuliak66 6e5d93b
fix revision id
matusdrobuliak66 fb5c095
merge master
matusdrobuliak66 778fc53
RUT refactoring (adding key & version)
matusdrobuliak66 81ec8eb
modification of itis vip service
matusdrobuliak66 85506e1
modification of rest part
matusdrobuliak66 6bb88c5
openapi specs
matusdrobuliak66 436ad91
openapi specs
matusdrobuliak66 01b08e6
Merge branch 'master' into p-models-split-licensed-items-2-attempt-co…
matusdrobuliak66 88cd8b4
fix RPC on webserver side
matusdrobuliak66 7b8ec5e
openapi specs
matusdrobuliak66 6487147
fix
matusdrobuliak66 1f8f22e
fix
matusdrobuliak66 c1cd346
Merge branch 'master' into p-models-split-licensed-items-2-attempt-co…
matusdrobuliak66 a4f45c6
Merge branch 'master' into p-models-split-licensed-items-2-attempt-co…
matusdrobuliak66 a9ac3a4
fix
matusdrobuliak66 3da7e4e
fix default sortering
matusdrobuliak66 4bace37
remove redundant comment
matusdrobuliak66 84fce1a
adding RUT tests for versionig
matusdrobuliak66 b881c85
add DB indexes
matusdrobuliak66 44d43b4
fix
matusdrobuliak66 9775aa8
review @pcrespov - adding back trashing
matusdrobuliak66 2e01957
fix openapi specs
matusdrobuliak66 24d8791
review @pcrespov @sanderegg
matusdrobuliak66 96362e2
review @pcrespov
matusdrobuliak66 0292917
fix trash after @pcrespov review
matusdrobuliak66 39da15d
fix & improvement
matusdrobuliak66 e79c716
fix & improvement
matusdrobuliak66 a9ce89b
fix & improvement
matusdrobuliak66 9de0dc8
Merge branch 'master' into p-models-split-licensed-items-2-attempt-co…
matusdrobuliak66 4c2aa6a
remove redundant comment
matusdrobuliak66 5be7db2
fix e2e tests - hack
matusdrobuliak66 156646e
openapi specs
matusdrobuliak66 85cdb00
Merge branch 'master' into p-models-split-licensed-items-2-attempt-co…
matusdrobuliak66 eee57c1
DB migration
matusdrobuliak66 bc8a9c0
fix
matusdrobuliak66 902e53b
fix
matusdrobuliak66 be8b5c6
Merge branch 'master' into p-models-split-licensed-items-2-attempt-co…
odeimaiz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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,7 +1,7 @@ | ||
| from datetime import datetime | ||
| from typing import NamedTuple | ||
|
|
||
| from models_library.licenses import LicensedItemID | ||
| from models_library.licenses import LicensedItemID, LicensedItemKey, LicensedItemVersion | ||
| from models_library.products import ProductName | ||
| from models_library.resource_tracker_licensed_items_checkouts import ( | ||
| LicensedItemCheckoutID, | ||
|
|
@@ -15,6 +15,8 @@ | |
| class LicensedItemCheckoutGet(BaseModel): | ||
| licensed_item_checkout_id: LicensedItemCheckoutID | ||
| licensed_item_id: LicensedItemID | ||
| key: LicensedItemKey | ||
| version: LicensedItemVersion | ||
| wallet_id: WalletID | ||
| user_id: UserID | ||
| user_email: str | ||
|
|
@@ -30,6 +32,8 @@ class LicensedItemCheckoutGet(BaseModel): | |
| { | ||
| "licensed_item_checkout_id": "beb16d18-d57d-44aa-a638-9727fa4a72ef", | ||
| "licensed_item_id": "303942ef-6d31-4ba8-afbe-dbb1fce2a953", | ||
| "key": "Duke", | ||
| "version": "1.0.0", | ||
| "wallet_id": 1, | ||
| "user_id": 1, | ||
| "user_email": "[email protected]", | ||
|
|
||
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
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.