Skip to content

Commit

Permalink
🎉 source Salesloft: added several new streams (#11460)
Browse files Browse the repository at this point in the history
  • Loading branch information
yannibenoit authored Apr 19, 2022
1 parent c8c4cf5 commit 1fe7222
Show file tree
Hide file tree
Showing 28 changed files with 1,327 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@
- name: SalesLoft
sourceDefinitionId: 41991d12-d4b5-439e-afd0-260a31d4c53f
dockerRepository: airbyte/source-salesloft
dockerImageTag: 0.1.2
dockerImageTag: 0.1.3
documentationUrl: https://docs.airbyte.io/integrations/sources/salesloft
icon: salesloft.svg
sourceType: api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7317,7 +7317,7 @@
- "overwrite"
- "append"
- "append_dedup"
- dockerImage: "airbyte/source-salesloft:0.1.2"
- dockerImage: "airbyte/source-salesloft:0.1.3"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/salesloft"
connectionSpecification:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ COPY source_salesloft ./source_salesloft
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.2
LABEL io.airbyte.version=0.1.3
LABEL io.airbyte.name=airbyte/source-salesloft
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": ["null", "string"]
},
"created_at": {
"type": ["null", "string"],
"format": "date-time"
},
"updated_at": {
"type": ["null", "string"],
"format": "date-time"
},
"order": {
"type": ["null", "integer"]
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": ["null", "string"]
},
"order": {
"type": ["null", "integer"]
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": ["null", "string"],
"format": "date-time"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,187 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"archived_at": {
"type": ["null", "string"],
"format": "date-time"
},
"name": {
"type": ["null", "string"]
},
"domain": {
"type": ["null", "string"]
},
"conversational_name": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"phone": {
"type": ["null", "string"]
},
"website": {
"type": ["null", "string"]
},
"linkedin_url": {
"type": ["null", "string"]
},
"twitter_handle": {
"type": ["null", "string"]
},
"street": {
"type": ["null", "string"]
},
"city": {
"type": ["null", "string"]
},
"state": {
"type": ["null", "string"]
},
"postal_code": {
"type": ["null", "string"]
},
"country": {
"type": ["null", "string"]
},
"locale": {
"type": ["null", "string"]
},
"industry": {
"type": ["null", "string"]
},
"company_type": {
"type": ["null", "string"]
},
"founded": {
"type": ["null", "string"]
},
"revenue_range": {
"type": ["null", "string"]
},
"size": {
"type": ["null", "string"]
},
"crm_id": {
"type": ["null", "string"]
},
"crm_url": {
"type": ["null", "string"]
},
"crm_object_type": {
"type": ["null", "string"]
},
"owner_crm_id": {
"type": ["null", "string"]
},
"last_contacted_at": {
"type": ["null", "string"],
"format": "date-time"
},
"last_contacted_type": {
"type": ["null", "string"]
},
"do_not_contact": {
"type": ["null", "string"]
},
"counts": {
"type": ["null", "object"],
"additionalProperties": false,
"properties": {
"people": {
"type": ["null", "integer"]
}
}
},
"owner": {
"type": ["null", "object"],
"additionalProperties": false,
"properties": {
"id": {
"type": ["null", "integer"]
},
"_href": {
"type": ["null", "string"]
}
}
},
"creator": {
"type": ["null", "object"],
"additionalProperties": false,
"properties": {
"id": {
"type": ["null", "integer"]
},
"_href": {
"type": ["null", "string"]
}
}
},
"last_contacted_by": {
"type": ["null", "object"],
"additionalProperties": false,
"properties": {
"id": {
"type": ["null", "integer"]
},
"_href": {
"type": ["null", "string"]
}
}
},
"last_contacted_person": {
"type": ["null", "object"],
"additionalProperties": false,
"properties": {
"id": {
"type": ["null", "integer"]
},
"_href": {
"type": ["null", "string"]
}
}
},
"company_stage": {
"type": ["null", "object"],
"additionalProperties": false,
"properties": {
"id": {
"type": ["null", "integer"]
},
"_href": {
"type": ["null", "string"]
}
}
},
"account_tier": {
"type": ["null", "object"],
"additionalProperties": false,
"properties": {
"id": {
"type": ["null", "integer"]
},
"_href": {
"type": ["null", "string"]
}
}
},
"tags": {
"type": ["null", "array"],
"items": {
"type": ["null", "string"]
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"due": {
"type": ["null", "string"]
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"type": {
"type": ["null", "string"]
},
"status": {
"type": ["null", "string"]
},
"due_on": {
"type": ["null", "string"],
"format": "date-time"
},
"multitouch_group_id": {
"type": ["null", "integer"]
},
"action_details": {
"type": ["null", "object"],
"additionalProperties": false,
"properties": {
"id": {
"type": ["null", "integer"]
},
"_href": {
"type": ["null", "string"]
}
}
},
"user": {
"type": ["null", "object"],
"additionalProperties": false,
"properties": {
"id": {
"type": ["null", "integer"]
},
"_href": {
"type": ["null", "string"]
}
}
},
"person": {
"type": ["null", "object"],
"additionalProperties": false,
"properties": {
"id": {
"type": ["null", "integer"]
},
"_href": {
"type": ["null", "string"]
}
}
},
"cadence": {
"type": ["null", "object"],
"additionalProperties": false,
"properties": {
"id": {
"type": ["null", "integer"]
},
"_href": {
"type": ["null", "string"]
}
}
},
"step": {
"type": ["null", "object"],
"additionalProperties": false,
"properties": {
"id": {
"type": ["null", "integer"]
},
"_href": {
"type": ["null", "string"]
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
"type": "object",
"properties": {
"id": {
"type": ["null", "integer"]
"type": "integer"
},
"added_at": {
"type": ["null", "string"],
"format": "date-time"
},
"created_at": {
"type": ["null", "string"],
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": ["null", "string"],
"type": "string",
"format": "date-time"
},
"person_deleted": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"type": "object",
"properties": {
"id": {
"type": ["null", "integer"]
"type": "integer"
},
"created_at": {
"type": ["null", "string"],
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": ["null", "string"],
"type": "string",
"format": "date-time"
},
"archived_at": {
Expand Down
Loading

0 comments on commit 1fe7222

Please sign in to comment.