Skip to content

Commit

Permalink
šŸ›Source Close.com: format source, delete requirements.txt, change speā€¦
Browse files Browse the repository at this point in the history
ā€¦c from json to yaml (#39477)
  • Loading branch information
btkcodedev authored Jun 14, 2024
1 parent 258603e commit 46b2188
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 33 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ connector_image: airbyte/source-close-com:dev
acceptance_tests:
spec:
tests:
- spec_path: "source_close_com/spec.json"
- spec_path: "source_close_com/spec.yaml"
connection:
tests:
- config_path: "secrets/config.json"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: dfffecb7-9a13-43e9-acdc-b92af7997ca9
dockerImageTag: 0.5.1
dockerImageTag: 0.5.2
dockerRepository: airbyte/source-close-com
documentationUrl: https://docs.airbyte.com/integrations/sources/close-com
githubIssueLabel: source-close-com
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
version = "0.5.1"
version = "0.5.2"
name = "source-close-com"
description = "Source implementation for Close.com."
authors = [ "Airbyte <contact@airbyte.io>",]
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
documentationUrl: https://docs.airbyte.com/integrations/sources/close-com
connectionSpecification:
$schema: http://json-schema.org/draft-07/schema#
title: Close.com Spec
type: object
required:
- api_key
additionalProperties: true
properties:
api_key:
title: API Key
type: string
description: Close.com API key (usually starts with 'api_'; find yours <a href="https://app.close.com/settings/api/">here</a>).
airbyte_secret: true
start_date:
title: Replication Start Date
type: string
description:
"The start date to sync data; all data after this date will be
replicated. Leave blank to retrieve all the data available in the account.
Format: YYYY-MM-DD."
examples:
- "2021-01-01"
default: "2021-01-01"
pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}$"
format: date
3 changes: 2 additions & 1 deletion docs/integrations/sources/close-com.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ The Close.com connector is subject to rate limits. For more information on this

| Version | Date | Pull Request | Subject |
| :------ | :--------- | :------------------------------------------------------- | :----------------------------------------------------------------------------------------------------- |
| 0.5.1 | 2024-05-20 | [38391](https://github.com/airbytehq/airbyte/pull/38391) | [autopull] base image + poetry + up_to_date |
| 0.5.2 | 2024-06-15 | [39477](https://github.com/airbytehq/airbyte/pull/39477) | Format source, delete requirements.txt |
| 0.5.1 | 2024-05-20 | [38391](https://github.com/airbytehq/airbyte/pull/38391) | [autopull] base image + poetry + up_to_date |
| 0.5.0 | 2023-11-30 | [32984](https://github.com/airbytehq/airbyte/pull/32984) | Add support for custom fields |
| 0.4.3 | 2023-10-28 | [31534](https://github.com/airbytehq/airbyte/pull/31534) | Fixed Email Activities Stream Pagination |
| 0.4.2 | 2023-08-08 | [29206](https://github.com/airbytehq/airbyte/pull/29206) | Fixed the issue with `DatePicker` format for `start date` |
Expand Down

0 comments on commit 46b2188

Please sign in to comment.