airbyte-source-iterable 0.5.0__py3-none-any.whl → 0.5.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {airbyte_source_iterable-0.5.0.dist-info → airbyte_source_iterable-0.5.1.dist-info}/METADATA +2 -2
- airbyte_source_iterable-0.5.1.dist-info/RECORD +31 -0
- source_iterable/schemas/campaigns.json +18 -0
- source_iterable/schemas/campaigns_metrics.json +1 -0
- source_iterable/schemas/channels.json +4 -0
- source_iterable/schemas/email_bounce.json +10 -0
- source_iterable/schemas/email_click.json +18 -0
- source_iterable/schemas/email_complaint.json +10 -0
- source_iterable/schemas/email_open.json +15 -0
- source_iterable/schemas/email_send.json +38 -0
- source_iterable/schemas/email_send_skip.json +38 -0
- source_iterable/schemas/email_subscribe.json +11 -0
- source_iterable/schemas/email_unsubscribe.json +15 -0
- source_iterable/schemas/events.json +8 -0
- source_iterable/schemas/list_users.json +2 -0
- source_iterable/schemas/lists.json +4 -0
- source_iterable/schemas/message_types.json +3 -0
- source_iterable/schemas/metadata.json +1 -0
- source_iterable/schemas/templates.json +8 -0
- source_iterable/schemas/users.json +132 -11
- airbyte_source_iterable-0.5.0.dist-info/RECORD +0 -31
- {airbyte_source_iterable-0.5.0.dist-info → airbyte_source_iterable-0.5.1.dist-info}/WHEEL +0 -0
- {airbyte_source_iterable-0.5.0.dist-info → airbyte_source_iterable-0.5.1.dist-info}/entry_points.txt +0 -0
@@ -1,131 +1,169 @@
|
|
1
1
|
{
|
2
2
|
"properties": {
|
3
3
|
"reason": {
|
4
|
+
"description": "Reason for skipping the email send.",
|
4
5
|
"type": ["null", "string"]
|
5
6
|
},
|
6
7
|
"createdAt": {
|
8
|
+
"description": "Date and time when the email send skip data was created.",
|
7
9
|
"type": ["null", "string"],
|
8
10
|
"format": "date-time"
|
9
11
|
},
|
10
12
|
"campaignId": {
|
13
|
+
"description": "Unique identifier for the campaign associated with the email send skip data.",
|
11
14
|
"type": ["null", "integer"]
|
12
15
|
},
|
13
16
|
"itblInternal": {
|
17
|
+
"description": "Internal iterable properties associated with the email send skip data.",
|
14
18
|
"type": ["null", "object"],
|
15
19
|
"properties": {
|
16
20
|
"documentCreatedAt": {
|
21
|
+
"description": "Date and time when the document was created.",
|
17
22
|
"type": ["null", "string"],
|
18
23
|
"format": "date-time"
|
19
24
|
},
|
20
25
|
"documentUpdatedAt": {
|
26
|
+
"description": "Date and time when the document was last updated.",
|
21
27
|
"type": ["null", "string"],
|
22
28
|
"format": "date-time"
|
23
29
|
}
|
24
30
|
}
|
25
31
|
},
|
26
32
|
"messageTypeId": {
|
33
|
+
"description": "Identifier for the type of message sent.",
|
27
34
|
"type": ["null", "integer"]
|
28
35
|
},
|
29
36
|
"transactionalData": {
|
37
|
+
"description": "Transactional data associated with the email send skip.",
|
30
38
|
"type": ["null", "object"],
|
31
39
|
"properties": {
|
32
40
|
"inventory": {
|
41
|
+
"description": "Inventory details of the transactional data.",
|
33
42
|
"type": ["null", "integer"]
|
34
43
|
},
|
35
44
|
"eventName": {
|
45
|
+
"description": "Name of the event associated with the transactional data.",
|
36
46
|
"type": ["null", "string"]
|
37
47
|
},
|
38
48
|
"name": {
|
49
|
+
"description": "Name of the product associated with the transactional data.",
|
39
50
|
"type": ["null", "string"]
|
40
51
|
},
|
41
52
|
"sku": {
|
53
|
+
"description": "Stock Keeping Unit (SKU) associated with the transactional data.",
|
42
54
|
"type": ["null", "string"]
|
43
55
|
},
|
44
56
|
"email": {
|
57
|
+
"description": "Email address associated with the transactional data.",
|
45
58
|
"type": ["null", "string"]
|
46
59
|
},
|
47
60
|
"url": {
|
61
|
+
"description": "URL associated with the transactional data.",
|
48
62
|
"type": ["null", "string"]
|
49
63
|
},
|
50
64
|
"description": {
|
65
|
+
"description": "Description of the transactional data.",
|
51
66
|
"type": ["null", "string"]
|
52
67
|
},
|
53
68
|
"price": {
|
69
|
+
"description": "Price of the product in the transactional data.",
|
54
70
|
"type": ["null", "integer"]
|
55
71
|
},
|
56
72
|
"product_type": {
|
73
|
+
"description": "Type of the product in the transactional data.",
|
57
74
|
"type": ["null", "string"]
|
58
75
|
},
|
59
76
|
"compare_at_price": {
|
77
|
+
"description": "Comparison price for the transactional data.",
|
60
78
|
"type": ["null", "number"]
|
61
79
|
},
|
62
80
|
"id": {
|
81
|
+
"description": "Unique identifier for the transactional data.",
|
63
82
|
"type": ["null", "string"]
|
64
83
|
},
|
65
84
|
"templateId": {
|
85
|
+
"description": "Identifier for the template used for the transactional data.",
|
66
86
|
"type": ["null", "integer"]
|
67
87
|
},
|
68
88
|
"product_id": {
|
89
|
+
"description": "Identifier for the product associated with the transactional data.",
|
69
90
|
"type": ["null", "string"]
|
70
91
|
},
|
71
92
|
"categories": {
|
93
|
+
"description": "Categories associated with the transactional data.",
|
72
94
|
"type": ["null", "array"],
|
73
95
|
"items": {}
|
74
96
|
},
|
75
97
|
"createdAt": {
|
98
|
+
"description": "Date and time when the transactional data was created.",
|
76
99
|
"type": ["null", "string"],
|
77
100
|
"format": "date-time"
|
78
101
|
},
|
79
102
|
"campaignId": {
|
103
|
+
"description": "Unique identifier for the campaign associated with the transactional data.",
|
80
104
|
"type": ["null", "integer"]
|
81
105
|
},
|
82
106
|
"vendor": {
|
107
|
+
"description": "Vendor of the product in the transactional data.",
|
83
108
|
"type": ["null", "string"]
|
84
109
|
},
|
85
110
|
"eventUpdatedAt": {
|
111
|
+
"description": "Date and time when the event was last updated.",
|
86
112
|
"type": ["null", "string"],
|
87
113
|
"format": "date-time"
|
88
114
|
},
|
89
115
|
"discount": {
|
116
|
+
"description": "Discount applied in the transactional data.",
|
90
117
|
"type": ["null", "integer"]
|
91
118
|
},
|
92
119
|
"imageUrl": {
|
120
|
+
"description": "URL for the image associated with the transactional data.",
|
93
121
|
"type": ["null", "string"]
|
94
122
|
},
|
95
123
|
"itblInternal": {
|
124
|
+
"description": "Internal iterable properties associated with the transactional data.",
|
96
125
|
"type": ["null", "object"],
|
97
126
|
"properties": {
|
98
127
|
"documentCreatedAt": {
|
128
|
+
"description": "Date and time when the document was created.",
|
99
129
|
"type": ["null", "string"],
|
100
130
|
"format": "date-time"
|
101
131
|
},
|
102
132
|
"documentUpdatedAt": {
|
133
|
+
"description": "Date and time when the document was last updated.",
|
103
134
|
"type": ["null", "string"],
|
104
135
|
"format": "date-time"
|
105
136
|
}
|
106
137
|
}
|
107
138
|
},
|
108
139
|
"handle": {
|
140
|
+
"description": "Handle of the transactional data.",
|
109
141
|
"type": ["null", "string"]
|
110
142
|
}
|
111
143
|
}
|
112
144
|
},
|
113
145
|
"contentId": {
|
146
|
+
"description": "Identifier for the content associated with the email send skip data.",
|
114
147
|
"type": ["null", "integer"]
|
115
148
|
},
|
116
149
|
"messageId": {
|
150
|
+
"description": "Unique identifier for the message related to the email send skip data.",
|
117
151
|
"type": ["null", "string"]
|
118
152
|
},
|
119
153
|
"templateId": {
|
154
|
+
"description": "Identifier for the template used in the email send skip data.",
|
120
155
|
"type": ["null", "integer"]
|
121
156
|
},
|
122
157
|
"email": {
|
158
|
+
"description": "Email address to which the email send skip data corresponds.",
|
123
159
|
"type": ["null", "string"]
|
124
160
|
},
|
125
161
|
"userId": {
|
162
|
+
"description": "Identifier for the user associated with the email send skip data.",
|
126
163
|
"type": ["null", "string"]
|
127
164
|
},
|
128
165
|
"channelId": {
|
166
|
+
"description": "Identifier for the channel through which the email was sent.",
|
129
167
|
"type": ["null", "integer"]
|
130
168
|
}
|
131
169
|
},
|
@@ -1,43 +1,54 @@
|
|
1
1
|
{
|
2
2
|
"properties": {
|
3
3
|
"createdAt": {
|
4
|
+
"description": "The timestamp when the email subscription was created",
|
4
5
|
"type": ["null", "string"],
|
5
6
|
"format": "date-time"
|
6
7
|
},
|
7
8
|
"signupSource": {
|
9
|
+
"description": "The source where the subscriber signed up for the emails",
|
8
10
|
"type": ["null", "string"]
|
9
11
|
},
|
10
12
|
"emailListIds": {
|
13
|
+
"description": "List of email list identifiers the subscriber belongs to",
|
11
14
|
"type": ["null", "array"],
|
12
15
|
"items": {}
|
13
16
|
},
|
14
17
|
"itblInternal": {
|
18
|
+
"description": "Internal properties related to the subscription",
|
15
19
|
"type": ["null", "object"],
|
16
20
|
"properties": {
|
17
21
|
"documentCreatedAt": {
|
22
|
+
"description": "The timestamp when the internal document was created",
|
18
23
|
"type": ["null", "string"],
|
19
24
|
"format": "date-time"
|
20
25
|
},
|
21
26
|
"documentUpdatedAt": {
|
27
|
+
"description": "The timestamp when the internal document was last updated",
|
22
28
|
"type": ["null", "string"],
|
23
29
|
"format": "date-time"
|
24
30
|
}
|
25
31
|
}
|
26
32
|
},
|
27
33
|
"emailListId": {
|
34
|
+
"description": "The unique identifier of the email list",
|
28
35
|
"type": ["null", "integer"]
|
29
36
|
},
|
30
37
|
"email": {
|
38
|
+
"description": "The email address of the subscriber",
|
31
39
|
"type": ["null", "string"]
|
32
40
|
},
|
33
41
|
"userId": {
|
42
|
+
"description": "The unique identifier of the subscriber user",
|
34
43
|
"type": ["null", "string"]
|
35
44
|
},
|
36
45
|
"profileUpdatedAt": {
|
46
|
+
"description": "The timestamp when the subscriber profile was last updated",
|
37
47
|
"type": ["null", "string"],
|
38
48
|
"format": "date-time"
|
39
49
|
},
|
40
50
|
"workflowId": {
|
51
|
+
"description": "The identifier of the workflow associated with the subscription",
|
41
52
|
"type": ["null", "integer"]
|
42
53
|
}
|
43
54
|
},
|
@@ -1,55 +1,70 @@
|
|
1
1
|
{
|
2
2
|
"properties": {
|
3
3
|
"unsubSource": {
|
4
|
+
"description": "The source from which the email unsubscribe request originated.",
|
4
5
|
"type": ["null", "string"]
|
5
6
|
},
|
6
7
|
"createdAt": {
|
8
|
+
"description": "The timestamp indicating when the email unsubscribe data was created.",
|
7
9
|
"type": ["null", "string"],
|
8
10
|
"format": "date-time"
|
9
11
|
},
|
10
12
|
"campaignId": {
|
13
|
+
"description": "The unique identifier for the campaign associated with the email unsubscribe data.",
|
11
14
|
"type": ["null", "integer"]
|
12
15
|
},
|
13
16
|
"itblInternal": {
|
17
|
+
"description": "Internal properties specific to Iterable.",
|
14
18
|
"type": ["null", "object"],
|
15
19
|
"properties": {
|
16
20
|
"documentCreatedAt": {
|
21
|
+
"description": "The timestamp indicating when the document was created within Iterable.",
|
17
22
|
"type": ["null", "string"],
|
18
23
|
"format": "date-time"
|
19
24
|
},
|
20
25
|
"documentUpdatedAt": {
|
26
|
+
"description": "The timestamp indicating when the document was last updated within Iterable.",
|
21
27
|
"type": ["null", "string"],
|
22
28
|
"format": "date-time"
|
23
29
|
}
|
24
30
|
}
|
25
31
|
},
|
26
32
|
"emailListId": {
|
33
|
+
"description": "The unique identifier for the email list associated with the email unsubscribe data.",
|
27
34
|
"type": ["null", "integer"]
|
28
35
|
},
|
29
36
|
"emailListIds": {
|
37
|
+
"description": "The list of unique identifiers for multiple email lists associated with the email unsubscribe data.",
|
30
38
|
"type": ["null", "array"],
|
31
39
|
"items": {}
|
32
40
|
},
|
33
41
|
"workflowId": {
|
42
|
+
"description": "The unique identifier for the workflow associated with the email unsubscribe data.",
|
34
43
|
"type": ["null", "integer"]
|
35
44
|
},
|
36
45
|
"messageId": {
|
46
|
+
"description": "The unique identifier for the message associated with the email unsubscribe data.",
|
37
47
|
"type": ["null", "string"]
|
38
48
|
},
|
39
49
|
"templateId": {
|
50
|
+
"description": "The unique identifier for the template associated with the email unsubscribe data.",
|
40
51
|
"type": ["null", "integer"]
|
41
52
|
},
|
42
53
|
"channelIds": {
|
54
|
+
"description": "The list of unique identifiers for multiple channels associated with the email unsubscribe data.",
|
43
55
|
"type": ["null", "array"],
|
44
56
|
"items": {}
|
45
57
|
},
|
46
58
|
"email": {
|
59
|
+
"description": "The email address for which the user unsubscribed.",
|
47
60
|
"type": ["null", "string"]
|
48
61
|
},
|
49
62
|
"userId": {
|
63
|
+
"description": "The unique identifier for the user who unsubscribed from the email list.",
|
50
64
|
"type": ["null", "string"]
|
51
65
|
},
|
52
66
|
"channelId": {
|
67
|
+
"description": "The unique identifier for the channel associated with the email unsubscribe data.",
|
53
68
|
"type": ["null", "integer"]
|
54
69
|
}
|
55
70
|
},
|
@@ -1,32 +1,40 @@
|
|
1
1
|
{
|
2
2
|
"properties": {
|
3
3
|
"itblInternal": {
|
4
|
+
"description": "Internal details related to the event",
|
4
5
|
"type": ["null", "object"],
|
5
6
|
"properties": {
|
6
7
|
"documentCreatedAt": {
|
8
|
+
"description": "Timestamp when the related document was created",
|
7
9
|
"type": ["null", "string"],
|
8
10
|
"format": "date-time"
|
9
11
|
},
|
10
12
|
"documentUpdatedAt": {
|
13
|
+
"description": "Timestamp when the related document was last updated",
|
11
14
|
"type": ["null", "string"],
|
12
15
|
"format": "date-time"
|
13
16
|
}
|
14
17
|
}
|
15
18
|
},
|
16
19
|
"_type": {
|
20
|
+
"description": "Type of the event data",
|
17
21
|
"type": ["null", "string"]
|
18
22
|
},
|
19
23
|
"createdAt": {
|
24
|
+
"description": "Timestamp when the event was created",
|
20
25
|
"type": ["null", "string"],
|
21
26
|
"format": "date-time"
|
22
27
|
},
|
23
28
|
"email": {
|
29
|
+
"description": "Email address related to the event",
|
24
30
|
"type": ["null", "string"]
|
25
31
|
},
|
26
32
|
"userId": {
|
33
|
+
"description": "User ID associated with the event",
|
27
34
|
"type": ["null", "string"]
|
28
35
|
},
|
29
36
|
"data": {
|
37
|
+
"description": "Event-specific data associated with the event",
|
30
38
|
"type": ["null", "object"]
|
31
39
|
}
|
32
40
|
},
|
@@ -1,15 +1,19 @@
|
|
1
1
|
{
|
2
2
|
"properties": {
|
3
3
|
"id": {
|
4
|
+
"description": "The unique identifier of the list.",
|
4
5
|
"type": ["null", "integer"]
|
5
6
|
},
|
6
7
|
"name": {
|
8
|
+
"description": "The name or title of the list.",
|
7
9
|
"type": ["null", "string"]
|
8
10
|
},
|
9
11
|
"createdAt": {
|
12
|
+
"description": "The date and time when the list was created.",
|
10
13
|
"type": ["null", "integer"]
|
11
14
|
},
|
12
15
|
"listType": {
|
16
|
+
"description": "The type or category of the list.",
|
13
17
|
"type": ["null", "string"]
|
14
18
|
}
|
15
19
|
},
|
@@ -1,12 +1,15 @@
|
|
1
1
|
{
|
2
2
|
"properties": {
|
3
3
|
"id": {
|
4
|
+
"description": "The unique identifier for the message type.",
|
4
5
|
"type": ["null", "number"]
|
5
6
|
},
|
6
7
|
"name": {
|
8
|
+
"description": "The display name for the message type.",
|
7
9
|
"type": ["null", "string"]
|
8
10
|
},
|
9
11
|
"channelId": {
|
12
|
+
"description": "The unique identifier for the channel the message belongs to.",
|
10
13
|
"type": ["null", "number"]
|
11
14
|
}
|
12
15
|
},
|
@@ -1,28 +1,36 @@
|
|
1
1
|
{
|
2
2
|
"properties": {
|
3
3
|
"templateId": {
|
4
|
+
"description": "The unique identifier for the template.",
|
4
5
|
"type": ["null", "number"]
|
5
6
|
},
|
6
7
|
"createdAt": {
|
8
|
+
"description": "The date and time when the template was created.",
|
7
9
|
"type": ["null", "string"],
|
8
10
|
"format": "date-time"
|
9
11
|
},
|
10
12
|
"updatedAt": {
|
13
|
+
"description": "The date and time when the template was last updated.",
|
11
14
|
"type": ["null", "integer"]
|
12
15
|
},
|
13
16
|
"name": {
|
17
|
+
"description": "The name/title of the template.",
|
14
18
|
"type": ["null", "string"]
|
15
19
|
},
|
16
20
|
"creatorUserId": {
|
21
|
+
"description": "The ID of the user who created the template.",
|
17
22
|
"type": ["null", "string"]
|
18
23
|
},
|
19
24
|
"messageTypeId": {
|
25
|
+
"description": "The type of message associated with the template.",
|
20
26
|
"type": ["null", "number"]
|
21
27
|
},
|
22
28
|
"campaignId": {
|
29
|
+
"description": "The unique identifier for the campaign associated with the template.",
|
23
30
|
"type": ["null", "number"]
|
24
31
|
},
|
25
32
|
"clientTemplateId": {
|
33
|
+
"description": "The identifier specific to the client for the template.",
|
26
34
|
"type": ["null", "string"]
|
27
35
|
}
|
28
36
|
},
|