Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding source-mailchimp connector #1536

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 6 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
6 changes: 6 additions & 0 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
- "source-google-sheets-native/**"
- "source-hubspot-native/**"
- "source-hubspot/**"
- "source-mailchimp/**"
- "source-notion/**"
- "source-linkedin-pages/**"
pull_request:
Expand All @@ -27,6 +28,7 @@ on:
- "source-google-sheets-native/**"
- "source-hubspot-native/**"
- "source-hubspot/**"
- "source-mailchimp/**"
- "source-notion/**"
- "source-linkedin-pages/**"

Expand Down Expand Up @@ -76,6 +78,10 @@ jobs:
type: capture
version: v5
usage_rate: "1.0"
- name: source-mailchimp
type: capture
version: v2
usage_rate: "1.0"
- name: source-notion
type: capture
version: v2
Expand Down
238 changes: 238 additions & 0 deletions source-mailchimp/acmeCo/automations.schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,238 @@
---
$schema: "http://json-schema.org/draft-07/schema#"
type: object
title: Automations
additionalProperties: true
required:
- id
properties:
id:
type: string
create_time:
type:
- "null"
- string
format: date-time
start_time:
type:
- "null"
- string
format: date-time
status:
type:
- "null"
- string
emails_sent:
type:
- "null"
- number
recipients:
type:
- "null"
- object
properties:
list_id:
type:
- "null"
- string
list_is_active:
type:
- "null"
- boolean
list_name:
type:
- "null"
- string
segment_opts:
type:
- "null"
- object
properties:
saved_segment_id:
type:
- "null"
- number
match:
type:
- "null"
- string
conditions:
type:
- "null"
- array
items:
type:
- "null"
- object
additionalProperties: true
store_id:
type:
- "null"
- string
settings:
type:
- "null"
- object
properties:
title:
type:
- "null"
- string
from_name:
type:
- "null"
- string
reply_to:
type:
- "null"
- string
use_conversation:
type:
- "null"
- boolean
to_name:
type:
- "null"
- string
authenticate:
type:
- "null"
- boolean
auto_footer:
type:
- "null"
- boolean
inline_css:
type:
- "null"
- boolean
tracking:
type:
- "null"
- object
properties:
opens:
type:
- "null"
- boolean
html_clicks:
type:
- "null"
- boolean
text_clicks:
type:
- "null"
- boolean
goal_tracking:
type:
- "null"
- boolean
ecomm360:
type:
- "null"
- boolean
google_analytics:
type:
- "null"
- string
clicktale:
type:
- "null"
- string
salesforce:
type:
- "null"
- object
properties:
campaign:
type:
- "null"
- boolean
notes:
type:
- "null"
- boolean
capsule:
type:
- "null"
- object
properties:
notes:
type:
- "null"
- boolean
trigger_settings:
type:
- "null"
- object
properties:
workflow_type:
type:
- "null"
- string
workflow_title:
type:
- "null"
- string
runtime:
type:
- "null"
- object
properties:
days:
type:
- "null"
- array
items:
type:
- "null"
- string
hours:
type:
- "null"
- object
properties:
type:
type:
- "null"
- string
workflow_emails_count:
type:
- "null"
- number
report_summary:
type:
- "null"
- object
properties:
opens:
type:
- "null"
- number
unique_opens:
type:
- "null"
- number
open_rate:
type:
- "null"
- number
clicks:
type:
- "null"
- number
subscriber_clicks:
type:
- "null"
- number
click_rate:
type:
- "null"
- number
_meta:
type: object
properties:
row_id:
type: integer
required:
- row_id
Loading
Loading