-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* swagger / updating endpoint for audiences on contract execute * init * General endpoint cleanup + swagger updates * cleanup * lint + test publish fix
- Loading branch information
1 parent
8688991
commit f0ea177
Showing
21 changed files
with
160 additions
and
145 deletions.
There are no files selected for viewing
This file contains 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
13 changes: 0 additions & 13 deletions
13
models/src/main/kotlin/io/provenance/api/models/eos/SnapshotAssetRequest.kt
This file was deleted.
Oops, something went wrong.
This file contains 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
7 changes: 0 additions & 7 deletions
7
models/src/main/kotlin/io/provenance/api/models/p8e/CreateTxOnboardAssetRequest.kt
This file was deleted.
Oops, something went wrong.
This file contains 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 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 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 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
11 changes: 11 additions & 0 deletions
11
.../provenance/onboarding/domain/usecase/objectStore/store/models/StoreFileRequestWrapper.kt
This file contains 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,9 +1,20 @@ | ||
package io.provenance.onboarding.domain.usecase.objectStore.store.models | ||
|
||
import java.util.UUID | ||
import org.springframework.http.HttpEntity | ||
import org.springframework.http.codec.multipart.FilePart | ||
import org.springframework.http.codec.multipart.Part | ||
|
||
data class StoreFileRequestWrapper( | ||
val uuid: UUID, | ||
val request: Map<String, Part>, | ||
) | ||
|
||
data class SwaggerStoreFileRequestWrapper( | ||
val objectStoreAddress: String, | ||
val file: FilePart, | ||
) | ||
|
||
data class SwaggerGetFileResponse( | ||
val value: HttpEntity<ByteArray> | ||
) |
23 changes: 0 additions & 23 deletions
23
...main/kotlin/io/provenance/onboarding/domain/usecase/provenance/tx/CreateTxOnboardAsset.kt
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
...nance/onboarding/domain/usecase/provenance/tx/model/CreateTxOnboardAssetRequestWrapper.kt
This file was deleted.
Oops, something went wrong.
This file contains 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 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 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.