Skip to content

Commit c64c074

Browse files
authored
Merge pull request #36 from code0-tech/feat/recursive-shopware-types
Recursive shopware types
2 parents c3efa38 + ae0d451 commit c64c074

25 files changed

Lines changed: 180 additions & 20 deletions

actions/gls-action/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

actions/gls-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"start": "node dist/index.js"
1313
},
1414
"dependencies": {
15-
"@code0-tech/hercules": "^1.1.0",
15+
"@code0-tech/hercules": "^1.1.1",
1616
"axios": "^1.7.7"
1717
},
1818
"devDependencies": {

actions/shopify-action/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

actions/shopify-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"start": "node dist/index.js"
1313
},
1414
"dependencies": {
15-
"@code0-tech/hercules": "^1.1.0",
15+
"@code0-tech/hercules": "^1.1.1",
1616
"axios": "^1.7.7",
1717
"shopify-webhook-schemas": "^0.3.7"
1818
},

actions/shopware-action/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

actions/shopware-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"start": "node dist/index.js"
1414
},
1515
"dependencies": {
16-
"@code0-tech/hercules": "^1.1.0",
16+
"@code0-tech/hercules": "^1.1.1",
1717
"axios": "^1.7.7"
1818
},
1919
"devDependencies": {
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import {Identifier, Name, Schema} from "@code0-tech/hercules";
2+
import {schemas} from "../generated/shopware-schemas.ts";
3+
4+
@Identifier("ShopwareCountry")
5+
@Name({code: "en-US", content: "ShopwareCountry"})
6+
@Schema(schemas.Country)
7+
export class ShopwareCountry {
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import {Identifier, Name, Schema} from "@code0-tech/hercules";
2+
import {schemas} from "../generated/shopware-schemas.ts";
3+
4+
@Identifier("ShopwareCountryState")
5+
@Name({code: "en-US", content: "ShopwareCountryState"})
6+
@Schema(schemas.CountryState)
7+
export class ShopwareCountryState {
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import {Identifier, Name, Schema} from "@code0-tech/hercules";
2+
import {schemas} from "../generated/shopware-schemas.ts";
3+
4+
@Identifier("ShopwareCurrency")
5+
@Name({code: "en-US", content: "ShopwareCurrency"})
6+
@Schema(schemas.Currency)
7+
export class ShopwareCurrency {
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import {Identifier, Name, Schema} from "@code0-tech/hercules";
2+
import {schemas} from "../generated/shopware-schemas.ts";
3+
4+
@Identifier("ShopwareOrder")
5+
@Name({code: "en-US", content: "ShopwareOrder"})
6+
@Schema(schemas.Order)
7+
export class ShopwareOrder {
8+
}

0 commit comments

Comments
 (0)