File tree Expand file tree Collapse file tree 2 files changed +14
-23
lines changed
order-routing/javascript/rankers/default Expand file tree Collapse file tree 2 files changed +14
-23
lines changed Original file line number Diff line number Diff line change 17
17
"plugins": [
18
18
"typescript",
19
19
"typescript-operations"
20
- ],
21
- "config": {
22
- "enumsAsTypes": "true",
23
- "useImplementingTypes": "true"
24
- }
20
+ ]
25
21
}
26
22
}
27
23
},
Original file line number Diff line number Diff line change @@ -2595,7 +2595,7 @@ type FulfillmentGroup {
2595
2595
"""
2596
2596
A list of inventory locations for the fulfillment group.
2597
2597
"""
2598
- inventoryLocations : [InventoryLocation ! ]
2598
+ inventoryLocations : [InventoryLocation ! ]!
2599
2599
}
2600
2600
2601
2601
"""
@@ -2943,13 +2943,23 @@ type Market {
2943
2943
"""
2944
2944
A geographic region which comprises a market.
2945
2945
"""
2946
- regions : [Region ! ]!
2946
+ regions : [MarketRegion ! ]!
2947
+ }
2948
+
2949
+ """
2950
+ Represents a region.
2951
+ """
2952
+ interface MarketRegion {
2953
+ """
2954
+ The name of the region.
2955
+ """
2956
+ name : String
2947
2957
}
2948
2958
2949
2959
"""
2950
2960
A country which comprises a market.
2951
2961
"""
2952
- type MarketRegionCountry implements Region {
2962
+ type MarketRegionCountry implements MarketRegion {
2953
2963
"""
2954
2964
The two-letter code for the country.
2955
2965
"""
@@ -3207,21 +3217,6 @@ input RankedLocation {
3207
3217
rank : Int !
3208
3218
}
3209
3219
3210
- """
3211
- Represents a region.
3212
- """
3213
- interface Region {
3214
- """
3215
- The code of the region.
3216
- """
3217
- code : String
3218
-
3219
- """
3220
- The name of the region.
3221
- """
3222
- name : String
3223
- }
3224
-
3225
3220
"""
3226
3221
A void type that can be used to return a null value from a mutation.
3227
3222
"""
You can’t perform that action at this time.
0 commit comments