forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…irbytehq#7107) * Add FulfillmentOrder stream * Add fulfillments stream * Fix schema validation error * Bump docker version and update doc * Apply gradlew format * Fix source_definition * Fix doc after rebase * Fix format after rebase * Remove enum type in schemas * bump version * run seed config again Co-authored-by: Marcos Marx <[email protected]>
- Loading branch information
Showing
11 changed files
with
527 additions
and
6 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
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
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
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
180 changes: 180 additions & 0 deletions
180
...yte-integrations/connectors/source-shopify/source_shopify/schemas/fulfillment_orders.json
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,180 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"assigned_location_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"destination": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"address1": { | ||
"type": ["null", "string"] | ||
}, | ||
"address2": { | ||
"type": ["null", "string"] | ||
}, | ||
"city": { | ||
"type": ["null", "string"] | ||
}, | ||
"company": { | ||
"type": ["null", "string"] | ||
}, | ||
"country": { | ||
"type": ["null", "string"] | ||
}, | ||
"email": { | ||
"type": ["null", "string"] | ||
}, | ||
"first_name": { | ||
"type": ["null", "string"] | ||
}, | ||
"last_name": { | ||
"type": ["null", "string"] | ||
}, | ||
"phone": { | ||
"type": ["null", "string"] | ||
}, | ||
"province": { | ||
"type": ["null", "string"] | ||
}, | ||
"zip": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
}, | ||
"delivery_method": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"method_type": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
}, | ||
"fulfilled_at": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"fulfillment_holds": { | ||
"type": ["null", "array"], | ||
"items": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"reason": { | ||
"type": ["null", "string"] | ||
}, | ||
"reason_notes": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
} | ||
}, | ||
"id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"line_items": { | ||
"type": ["null", "array"], | ||
"items": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"shop_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"fullfillment_order_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"line_item_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"inventory_item_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"quantity": { | ||
"type": ["null", "integer"] | ||
}, | ||
"fulfillable_quantity": { | ||
"type": ["null", "integer"] | ||
}, | ||
"variant_id": { | ||
"type": ["null", "integer"] | ||
} | ||
} | ||
} | ||
}, | ||
"order_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"request_status": { | ||
"type": ["null", "string"] | ||
}, | ||
"shop_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"status": { | ||
"type": ["null", "string"] | ||
}, | ||
"supported_actions": { | ||
"type": ["null", "array"], | ||
"items": { | ||
"type": ["null", "string"] | ||
} | ||
}, | ||
"merchant_requests": { | ||
"type": ["null", "array"], | ||
"items": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"message": { | ||
"type": ["null", "string"] | ||
}, | ||
"kind": { | ||
"type": ["null", "string"] | ||
}, | ||
"request_options": { | ||
"type": ["null", "object"] | ||
} | ||
} | ||
} | ||
}, | ||
"assigned_location": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"address1": { | ||
"type": ["null", "string"] | ||
}, | ||
"address2": { | ||
"type": ["null", "string"] | ||
}, | ||
"city": { | ||
"type": ["null", "string"] | ||
}, | ||
"country_code": { | ||
"type": ["null", "string"] | ||
}, | ||
"location_id": { | ||
"type": ["null", "integer"] | ||
}, | ||
"name": { | ||
"type": ["null", "string"] | ||
}, | ||
"phone": { | ||
"type": ["null", "string"] | ||
}, | ||
"province": { | ||
"type": ["null", "string"] | ||
}, | ||
"zip": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.