Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions tap_shopify/schemas/orders.json
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,32 @@
}
},
"currentTotalWeight": { "type": ["null", "number"] },
"customAttributes": {
"type": [
"null",
"array"
],
"items": {
"type": [
"null",
"object"
],
"properties": {
"key": {
"type": [
"null",
"string"
]
},
"value": {
"type": [
"null",
"string"
]
}
}
}
},
"customer": {
"type": [
"null",
Expand Down Expand Up @@ -683,6 +709,7 @@
},
"name": { "type": ["null", "string"] },
"note": { "type": ["null", "string"] },
"number": { "type": ["null", "number"] },
"netPaymentSet": {
"type": ["null", "object"],
"properties": {
Expand Down
5 changes: 5 additions & 0 deletions tap_shopify/streams/orders.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,10 @@ def get_query(self):
}
}
currentTotalWeight
customAttributes {
key
value
}
customer {
id
email
Expand Down Expand Up @@ -369,6 +373,7 @@ def get_query(self):
}
name
note
number
netPaymentSet {
presentmentMoney {
amount
Expand Down