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

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"sourceDefinitionId": "d6f9a7c2-815e-4b76-a10c-9f6d2a871e32",
"name": "Woocommerce",
"dockerRepository": "blotout/source-woocommerce",
"dockerImageTag": "0.0.2",
"documentationUrl": "https://docs.airbyte.com/integrations/sources/woocommerce",
"icon": "woocommerce.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -601,6 +601,12 @@
dockerImageTag: 0.1.1
documentationUrl: https://docs.airbyte.io/integrations/sources/us-census
sourceType: api
- name: WooCommerce
sourceDefinitionId: d6f9a7c2-815e-4b76-a10c-9f6d2a871e32
dockerRepository: blotout/source-woocommerce
dockerImageTag: 0.0.2
documentationUrl: https://docs.airbyte.com/integrations/sources/woocommerce
sourceType: api
- name: Zendesk Chat
sourceDefinitionId: 40d24d0f-b8f9-4fe0-9e6c-b06c0f3f45e4
dockerRepository: airbyte/source-zendesk-chat
Expand Down
43 changes: 43 additions & 0 deletions airbyte-config/init/src/main/resources/seed/source_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5952,6 +5952,49 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "blotout/source-woocommerce:0.0.2"
spec:
documentationUrl: "https://docs.airbyte.com/integrations/sources/woocommerce"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Woocommerce Spec"
type: "object"
required:
- "api_key"
- "api_secret"
- "shop"
- "start_date"
additionalProperties: true
properties:
api_key:
type: "string"
title: "Customer Key"
description: "Customer Key for API in WooCommerce shop"
airbyte_secret: true
order: 0
api_secret:
type: "string"
title: "Customer Secret"
description: "Customer Secret for API in WooCommerce shop"
airbyte_secret: true
order: 1
shop:
type: "string"
title: "Shop Name"
description: "The name of the store. For https://EXAMPLE.com, the shop name is 'EXAMPLE.com'."
order: 2
start_date:
type: "string"
title: "Start Date"
description: "The date you would like to replicate data from. Format: YYYY-MM-DD"
examples:
- "2021-01-01"
pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}$"
format: "date"
order: 3
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-zendesk-chat:0.1.3"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/zendesk-chat"
Expand Down
4 changes: 2 additions & 2 deletions airbyte-integrations/connectors/source-woocommerce/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ RUN pip install .
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.1
LABEL io.airbyte.name=airbyte/source-woocommerce
LABEL io.airbyte.version=0.0.2
LABEL io.airbyte.name=blotout/source-woocommerce
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See [Source Acceptance Tests](https://docs.airbyte.io/contributing-to-airbyte/building-new-connector/source-acceptance-tests.md)
# for more information about how to configure these tests
connector_image: airbyte/source-woocommerce:dev
connector_image: blotout/source-woocommerce:dev
tests:
spec:
- spec_path: "source_woocommerce/spec.json"
Expand Down