Skip to content

Commit

Permalink
Source woocommerce: publishing connector (#10791)
Browse files Browse the repository at this point in the history
* fixed issues

* Fix: multiple issues

* modify configured catalog

* Fix: remove unused variables

* Fix: orders request with parameters

* Fix: add new line in configured catalogs

* Fix: remove unused imports

* Fix: catalog changes

* fix: change schema for meta_data

Co-authored-by: Manoj <saimanoj58@gmail.com>
  • Loading branch information
2 people authored and etsybaev committed Mar 5, 2022
1 parent 1e4c892 commit b954f28
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
"type": ["null", "integer"]
},
"quantity": {
"type": ["null", "string"]
"type": ["null", "number"]
},
"tax_class": {
"type": ["null", "string"]
Expand All @@ -163,7 +163,7 @@
"type": ["null", "string"]
},
"price": {
"type": ["null", "string"]
"type": ["null", "number"]
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,36 @@
{
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer"]
},
"key": {
"type": ["null", "string"]
},
"value": {
"type": ["null", "string"]
"type": ["null", "array", "object"],
"oneOf" : [
{
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer"]
},
"key": {
"type": ["null", "string"]
},
"value": {
"type": ["null", "object", "string"]
}
}
},
{
"type" : "array",
"items": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer"]
},
"key": {
"type": ["null", "string"]
},
"value": {
"type": ["null", "object", "string"]
}
}
}
}
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"description": "A conversion window is the period of time after an ad interaction (such as an ad click or video view) during which a conversion, such as a purchase, is recorded in Google Ads.",
"minimum": 0,
"maximum": 1095,
"default": 14,
"default": 0,
"examples": [14],
"order": 5
}
Expand Down

0 comments on commit b954f28

Please sign in to comment.