Skip to content

Commit 4486bd3

Browse files
committed
ECWID-156365 - merged v3 of plugin.
Merge remote-tracking branch 'origin/master' into ECWID-156365
2 parents 8c93f52 + 6a4b9c9 commit 4486bd3

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
${{ github.workspace }}/build/reports/detekt/detekt.html
4949
5050
- name: Upload static analysis results
51-
uses: github/codeql-action/upload-sarif@v2
51+
uses: github/codeql-action/upload-sarif@v3
5252
if: always()
5353
with:
5454
sarif_file: ${{ github.workspace }}/build/reports/detekt/detekt.sarif

.github/workflows/push-to-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
GRGIT_PASS: ${{ secrets.GRGIT_PASS }}
3838

3939
- name: Upload static analysis results
40-
uses: github/codeql-action/upload-sarif@v2
40+
uses: github/codeql-action/upload-sarif@v3
4141
if: always()
4242
with:
4343
sarif_file: ${{ github.workspace }}/build/reports/detekt/detekt.sarif

src/main/kotlin/com/ecwid/apiclient/v3/dto/product/result/FetchedProduct.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,9 @@ data class FetchedProduct(
191191

192192
data class CategoryInfo(
193193
val id: Int = 0,
194-
val enabled: Boolean = true
194+
val enabled: Boolean = true,
195+
val name: String = "",
196+
val nameTranslated: String = "",
195197
)
196198

197199
data class TaxInfo(

0 commit comments

Comments
 (0)