Skip to content

Commit

Permalink
more streams
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianswms committed Dec 16, 2024
1 parent f3d37c2 commit 43e911c
Show file tree
Hide file tree
Showing 6 changed files with 402 additions and 15 deletions.
30 changes: 15 additions & 15 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 52 additions & 0 deletions tap_calltrackingmetrics/schemas/contact_list.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"type": [
"object",
"null"
],
"properties": {
"id": {
"type": [
"string",
"null"
]
},
"account_id": {
"type": [
"integer",
"null"
]
},
"name": {
"type": [
"string",
"null"
]
},
"description": {
"type": [
"string",
"null"
]
},
"contacts_count": {
"type": [
"integer",
"null"
]
},
"created_at": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"updated_at": {
"type": [
"string",
"null"
],
"format": "date-time"
}
}
}
101 changes: 101 additions & 0 deletions tap_calltrackingmetrics/schemas/contact_list_detail.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
{
"type": [
"object",
"null"
],
"properties": {
"id": {
"type": [
"integer",
"null"
]
},
"contact_id": {
"type": [
"integer",
"null"
]
},
"name": {
"type": [
"string",
"null"
]
},
"number": {
"type": [
"string",
"null"
]
},
"caller_number_format": {
"type": [
"string",
"null"
]
},
"caller_number_split": {
"type": [
"array",
"null"
],
"items": {
"type": [
"string",
"null"
]
}
},
"favorite": {
"type": [
"boolean",
"null"
]
},
"address": {
"type": [
"object",
"null"
],
"properties": {
"street": {
"type": [
"string",
"null"
]
},
"city": {
"type": [
"string",
"null"
]
},
"state": {
"type": [
"string",
"null"
]
},
"country": {
"type": [
"string",
"null"
]
},
"postal_code": {
"type": [
"string",
"null"
]
}
}
},
"custom_fields": {
"type": [
"object",
"null"
],
"additionalProperties": true
}
}
}
Loading

0 comments on commit 43e911c

Please sign in to comment.