This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0e415e4
commit 8376a90
Showing
112 changed files
with
10,272 additions
and
5,746 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
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
3 changes: 0 additions & 3 deletions
3
client/src/main/java/com/mytiki/publish/client/capture/rsp/Block.kt
This file was deleted.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
client/src/main/java/com/mytiki/publish/client/capture/rsp/BlockRsp.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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
package com.mytiki.publish.client.capture.rsp | ||
|
||
data class BlockRsp(val confidence: Double, val text: String) |
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
2 changes: 1 addition & 1 deletion
2
...sh/client/capture/rsp/DocumentMetadata.kt → ...client/capture/rsp/DocumentMetadataRsp.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,3 +1,3 @@ | ||
package com.mytiki.publish.client.capture.rsp | ||
|
||
data class DocumentMetadata(val pages: Int) | ||
data class DocumentMetadataRsp(val pages: Int) |
8 changes: 0 additions & 8 deletions
8
client/src/main/java/com/mytiki/publish/client/capture/rsp/ExpenseDocument.kt
This file was deleted.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
client/src/main/java/com/mytiki/publish/client/capture/rsp/ExpenseDocumentRsp.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package com.mytiki.publish.client.capture.rsp | ||
|
||
data class ExpenseDocumentRsp( | ||
val blockRsps: Array<BlockRsp>, | ||
val expenseIndex: Int, | ||
val lineItemGroupRsps: Array<LineItemGroupRsp>, | ||
val summaryFieldsRsp: Array<Map<String, SummaryFieldRsp>> | ||
) |
3 changes: 0 additions & 3 deletions
3
client/src/main/java/com/mytiki/publish/client/capture/rsp/LineItem.kt
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
client/src/main/java/com/mytiki/publish/client/capture/rsp/LineItemExpenseField.kt
This file was deleted.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
client/src/main/java/com/mytiki/publish/client/capture/rsp/LineItemExpenseFieldRsp.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package com.mytiki.publish.client.capture.rsp | ||
|
||
data class LineItemExpenseFieldRsp( | ||
val productCode: SummaryFieldRsp?, | ||
val item: SummaryFieldRsp?, | ||
val price: SummaryFieldRsp?, | ||
val expenseRow: SummaryFieldRsp? | ||
) |
3 changes: 0 additions & 3 deletions
3
client/src/main/java/com/mytiki/publish/client/capture/rsp/LineItemGroup.kt
This file was deleted.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
client/src/main/java/com/mytiki/publish/client/capture/rsp/LineItemGroupRsp.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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
package com.mytiki.publish.client.capture.rsp | ||
|
||
data class LineItemGroupRsp(val lineItemGroupIndex: Int, val lineItemRsps: Array<LineItemRsp>) |
3 changes: 3 additions & 0 deletions
3
client/src/main/java/com/mytiki/publish/client/capture/rsp/LineItemRsp.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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
package com.mytiki.publish.client.capture.rsp | ||
|
||
data class LineItemRsp(val lineItemExpenseFieldRsps: Array<LineItemExpenseFieldRsp>) |
3 changes: 0 additions & 3 deletions
3
client/src/main/java/com/mytiki/publish/client/capture/rsp/SummaryField.kt
This file was deleted.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
client/src/main/java/com/mytiki/publish/client/capture/rsp/SummaryFieldRsp.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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
package com.mytiki.publish.client.capture.rsp | ||
|
||
data class SummaryFieldRsp(val confidenceKey: Int, val confidenceValue: Int, val value: String) |
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
2 changes: 1 addition & 1 deletion
2
client/src/main/java/com/mytiki/publish/client/email/EmailAttachmentType.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
7 changes: 3 additions & 4 deletions
7
client/src/main/java/com/mytiki/publish/client/email/EmailIndexData.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
Oops, something went wrong.