airbyte-faros-destination 0.4.76 → 0.4.77

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "airbyte-faros-destination",
3
- "version": "0.4.76",
3
+ "version": "0.4.77",
4
4
  "description": "Faros Destination for Airbyte",
5
5
  "keywords": [
6
6
  "airbyte",
@@ -36,8 +36,8 @@
36
36
  "analytics-node": "^6.0.0",
37
37
  "axios": "^0.26.0",
38
38
  "date-format": "^4.0.6",
39
- "faros-airbyte-cdk": "0.4.76",
40
- "faros-airbyte-common": "0.4.76",
39
+ "faros-airbyte-cdk": "0.4.77",
40
+ "faros-airbyte-common": "0.4.77",
41
41
  "faros-feeds-sdk": "^1.1.1",
42
42
  "faros-js-client": "^0.2.20",
43
43
  "fs-extra": "^11.1.0",
@@ -0,0 +1,28 @@
1
+ {
2
+ "title": "AgileAccelerator",
3
+ "description": "Configuration options that apply to records generated by the AgileAccelerator Source.",
4
+ "type": "object",
5
+ "oneOf": [
6
+ {
7
+ "type": "object",
8
+ "title": "Configuration",
9
+ "properties": {
10
+ "max_description_length": {
11
+ "type": "integer",
12
+ "title": "Max Description Length",
13
+ "description": "Value to cut description to specific length",
14
+ "default": 1000
15
+ },
16
+ "work_additional_fields": {
17
+ "type": "array",
18
+ "items": {
19
+ "type": "string"
20
+ },
21
+ "title": "Work Additional Fields",
22
+ "description": "Fields to save to tms_Task's additionalFields variable",
23
+ "default": []
24
+ }
25
+ }
26
+ }
27
+ ]
28
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "title": "Azure pipeline",
3
+ "description": "Configuration options that apply to records generated by the Azure pipeline Source.",
4
+ "type": "object",
5
+ "oneOf": [
6
+ {
7
+ "type": "object",
8
+ "title": "Configuration",
9
+ "properties": {
10
+ "application_mapping": {
11
+ "type": "string",
12
+ "title": "Azure pipeline Application Mapping",
13
+ "description": "JSON map of Azure Pipeline service(s) name, to compute platform specific app name and platform name. Used to reference compute_Application object, from an cicd_Deployment object.",
14
+ "default": "{}",
15
+ "examples": [
16
+ "{ \"Aion\": { \"name\": \"aion\", \"platform\": \"ECS\" } }"
17
+ ]
18
+ }
19
+ }
20
+ }
21
+ ]
22
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "title": "Backlog",
3
+ "description": "Configuration options that apply to records generated by the Backlog Source.",
4
+ "type": "object",
5
+ "oneOf": [
6
+ {
7
+ "type": "object",
8
+ "title": "Configuration",
9
+ "properties": {
10
+ "max_description_length": {
11
+ "type": "integer",
12
+ "title": "Max Description Length",
13
+ "description": "Value to cut description to specific length",
14
+ "default": 1000
15
+ }
16
+ }
17
+ }
18
+ ]
19
+ }
@@ -0,0 +1,31 @@
1
+ {
2
+ "title": "BambooHR",
3
+ "description": "Configuration options that apply to records generated by the BambooHR Source.",
4
+ "type": "object",
5
+ "oneOf": [
6
+ {
7
+ "type": "object",
8
+ "title": "Configuration",
9
+ "properties": {
10
+ "bootstrap_teams_from_managers": {
11
+ "type": "boolean",
12
+ "title": "Bootstrap Teams From Managers",
13
+ "description": "Assign employees to teams based off their managers.",
14
+ "default": false
15
+ },
16
+ "inactive_employment_history_status": {
17
+ "type": "array",
18
+ "items": {
19
+ "type": "string"
20
+ },
21
+ "title": "Inactive employmentHistoryStatus",
22
+ "description": "Values of employmentHistoryStatus that are equivalent to an employee being inactive",
23
+ "example": [
24
+ "Terminated",
25
+ "On-Leave"
26
+ ]
27
+ }
28
+ }
29
+ }
30
+ ]
31
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "title": "Bitbucket",
3
+ "description": "Configuration options that apply to records generated by the Bitbucket Source.",
4
+ "type": "object",
5
+ "oneOf": [
6
+ {
7
+ "type": "object",
8
+ "title": "Configuration",
9
+ "properties": {
10
+ "application_mapping": {
11
+ "type": "string",
12
+ "title": "Application Mapping",
13
+ "description": "JSON map of Bitbucket service(s) name, to compute platform specific app name and platform name. Used to reference compute_Application object, from an ims_Incident object.",
14
+ "multiline": true,
15
+ "default": "{}",
16
+ "examples": [
17
+ "{ \"Aion\": { \"name\": \"aion\", \"platform\": \"ECS\" } }"
18
+ ]
19
+ }
20
+ }
21
+ }
22
+ ]
23
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "title": "ClickUp",
3
+ "description": "Configuration options that apply to records generated by the ClickUp Source.",
4
+ "type": "object",
5
+ "oneOf": [
6
+ {
7
+ "type": "object",
8
+ "title": "Configuration",
9
+ "properties": {
10
+ "taskboard_source": {
11
+ "type": "string",
12
+ "title": "TaskBoard Source",
13
+ "description": "ClickUp task grouping type that will be mapped to tms_TaskBoards",
14
+ "default": "space",
15
+ "enum": [
16
+ "space",
17
+ "folder",
18
+ "list"
19
+ ]
20
+ },
21
+ "truncate_limit": {
22
+ "type": "integer",
23
+ "title": "Truncate Limit",
24
+ "description": "Truncate the descriptions of tasks.",
25
+ "default": 10000
26
+ }
27
+ }
28
+ }
29
+ ]
30
+ }
@@ -0,0 +1,37 @@
1
+ {
2
+ "title": "Datadog",
3
+ "description": "Configuration options that apply to records generated by the Datadog Source.",
4
+ "type": "object",
5
+ "oneOf": [
6
+ {
7
+ "type": "object",
8
+ "title": "Configuration",
9
+ "properties": {
10
+ "application_mapping": {
11
+ "type": "string",
12
+ "title": "Application Mapping",
13
+ "description": "JSON map of Datadog service(s) name, to compute platform specific app name and platform name. Used to reference compute_Application object, from an ims_Incident object.",
14
+ "multiline": true,
15
+ "default": "{}",
16
+ "examples": [
17
+ "{ \"Aion\": { \"name\": \"aion\", \"platform\": \"ECS\" } }"
18
+ ]
19
+ },
20
+ "default_severity": {
21
+ "type": "string",
22
+ "title": "Default Severity",
23
+ "description": "A default severity category if not present",
24
+ "pattern": "^(Sev[1-5])?(Custom)?$",
25
+ "examples": [
26
+ "Sev1",
27
+ "Sev2",
28
+ "Sev3",
29
+ "Sev4",
30
+ "Sev5",
31
+ "Custom"
32
+ ]
33
+ }
34
+ }
35
+ }
36
+ ]
37
+ }
@@ -0,0 +1,35 @@
1
+ {
2
+ "title": "Docker",
3
+ "description": "Configuration options that apply to records generated by the Docker Source.",
4
+ "type": "object",
5
+ "oneOf": [
6
+ {
7
+ "type": "object",
8
+ "title": "Configuration",
9
+ "required": [
10
+ "organization"
11
+ ],
12
+ "properties": {
13
+ "label_prefix": {
14
+ "type": "string",
15
+ "title": "Label Prefix",
16
+ "description": "Label prefix used to construct build key and commit key for cicd_Artifact and cicd_ArtifactCommitAssociation from labels. Every label key start with this prefix. If the prefix is 'faros-', then the label keys will be 'faros-build-id', 'faros-pipeline-id', etc."
17
+ },
18
+ "skip_tags": {
19
+ "type": "array",
20
+ "items": {
21
+ "type": "string"
22
+ },
23
+ "title": "Skip tags",
24
+ "description": "The images with the listed tags will be ignored by the feed"
25
+ },
26
+ "organization": {
27
+ "type": "string",
28
+ "title": "Organization",
29
+ "description": "Organization name to associate with image tags",
30
+ "default": "unknown-org"
31
+ }
32
+ }
33
+ }
34
+ ]
35
+ }
@@ -0,0 +1,29 @@
1
+ {
2
+ "title": "FireHydrant",
3
+ "description": "Configuration options that apply to records generated by the FireHydrant Source.",
4
+ "type": "object",
5
+ "oneOf": [
6
+ {
7
+ "type": "object",
8
+ "title": "Configuration",
9
+ "properties": {
10
+ "application_mapping": {
11
+ "type": "string",
12
+ "title": "Application Mapping",
13
+ "description": "JSON map of FireHydrant service(s) name, to compute platform specific app name and platform name. Used to reference compute_Application object, from an ims_Incident object.",
14
+ "multiline": true,
15
+ "default": "{}",
16
+ "examples": [
17
+ "{ \"Aion\": { \"name\": \"aion\", \"platform\": \"ECS\" } }"
18
+ ]
19
+ },
20
+ "max_description_length": {
21
+ "type": "integer",
22
+ "title": "Max Description Length",
23
+ "description": "Value to cut description to specific length",
24
+ "default": 1000
25
+ }
26
+ }
27
+ }
28
+ ]
29
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "title": "Jenkins",
3
+ "description": "Configuration options that apply to records generated by the Jenkins Source.",
4
+ "type": "object",
5
+ "oneOf": [
6
+ {
7
+ "type": "object",
8
+ "title": "Configuration",
9
+ "properties": {
10
+ "create_commit_records": {
11
+ "type": "boolean",
12
+ "title": "Create Commit Records",
13
+ "description": "Create vcs_Commit records from Jenkins builds",
14
+ "default": false
15
+ }
16
+ }
17
+ }
18
+ ]
19
+ }
@@ -0,0 +1,40 @@
1
+ {
2
+ "title": "Jira",
3
+ "description": "Configuration options that apply to records generated by the Jira Source.",
4
+ "type": "object",
5
+ "oneOf": [
6
+ {
7
+ "type": "object",
8
+ "title": "Configuration",
9
+ "properties": {
10
+ "use_board_ownership": {
11
+ "type": "boolean",
12
+ "title": "Use Board Ownership",
13
+ "description": "Use Jira boards for assigning owners of tasks, or use projects.",
14
+ "default": false
15
+ },
16
+ "truncate_limit": {
17
+ "type": "integer",
18
+ "title": "Truncate Limit",
19
+ "description": "Truncate the descriptions of projects, tasks, and epics.",
20
+ "default": 10000
21
+ },
22
+ "exclude_fields": {
23
+ "type": "array",
24
+ "items": {
25
+ "type": "string"
26
+ },
27
+ "title": "Exclude Fields",
28
+ "description": "List of fields to exclude when saving tasks. Defaults to no exclusions.",
29
+ "default": []
30
+ },
31
+ "additional_fields_array_limit": {
32
+ "type": "integer",
33
+ "title": "Additional Fields Array Limit",
34
+ "description": "Truncates an additional field's array value to the given length.",
35
+ "default": 50
36
+ }
37
+ }
38
+ }
39
+ ]
40
+ }
@@ -0,0 +1,282 @@
1
+ {
2
+ "title": "Notion",
3
+ "description": "Configuration options that apply to records generated by the Notion Source. While there are only a handful of required properties, you will likely need to override the default property name mappings to match the property names in your notion account.",
4
+ "type": "object",
5
+ "oneOf": [
6
+ {
7
+ "type": "object",
8
+ "title": "None",
9
+ "properties": {}
10
+ },
11
+ {
12
+ "type": "object",
13
+ "title": "Configuration",
14
+ "required": [
15
+ "kind_property"
16
+ ],
17
+ "properties": {
18
+ "kind_property": {
19
+ "type": "string",
20
+ "title": "Kind Property",
21
+ "description": "The page property that determines the kind of object a page is, i.e., project, epic, sprint, or task. It must have a select type in Notion. It's expected that each kind of object has a unique, fixed value, which must be provided in the object's configuration section."
22
+ },
23
+ "projects": {
24
+ "type": "object",
25
+ "title": "Projects",
26
+ "description": "Configuration for projects",
27
+ "oneOf": [
28
+ {
29
+ "type": "object",
30
+ "title": "Project Configuration",
31
+ "required": [
32
+ "kind"
33
+ ],
34
+ "properties": {
35
+ "kind": {
36
+ "type": "string",
37
+ "title": "Project Kind",
38
+ "description": "The value of the kind property for project types."
39
+ },
40
+ "properties": {
41
+ "type": "object",
42
+ "title": "Properties",
43
+ "description": "Project properties",
44
+ "properties": {
45
+ "name": {
46
+ "type": "string",
47
+ "title": "Name",
48
+ "description": "The property that determines a project's name",
49
+ "default": "Name"
50
+ },
51
+ "description": {
52
+ "type": "string",
53
+ "title": "Description",
54
+ "description": "The property that determines a project's description",
55
+ "default": "Description"
56
+ }
57
+ }
58
+ }
59
+ }
60
+ }
61
+ ]
62
+ },
63
+ "epics": {
64
+ "type": "object",
65
+ "title": "Epics",
66
+ "description": "Configuration for epics",
67
+ "oneOf": [
68
+ {
69
+ "type": "object",
70
+ "title": "Epic Configuration",
71
+ "required": [
72
+ "kind"
73
+ ],
74
+ "properties": {
75
+ "kind": {
76
+ "type": "string",
77
+ "title": "Epic Kind",
78
+ "description": "The value of the kind property for epic types"
79
+ },
80
+ "properties": {
81
+ "type": "object",
82
+ "title": "Properties",
83
+ "description": "Epic properties",
84
+ "properties": {
85
+ "name": {
86
+ "type": "string",
87
+ "title": "Name",
88
+ "description": "The property that determines an epic's name",
89
+ "default": "Name"
90
+ },
91
+ "description": {
92
+ "type": "string",
93
+ "title": "Description",
94
+ "description": "The property that determines an epic's description",
95
+ "default": "Description"
96
+ },
97
+ "project": {
98
+ "type": "string",
99
+ "title": "Project",
100
+ "description": "The property that determines an epic's project. It must have a relation type in Notion.",
101
+ "default": "Project"
102
+ },
103
+ "status": {
104
+ "type": "string",
105
+ "title": "Status",
106
+ "description": "The property that determines an epic's status",
107
+ "default": "Status"
108
+ }
109
+ }
110
+ }
111
+ }
112
+ }
113
+ ]
114
+ },
115
+ "sprints": {
116
+ "type": "object",
117
+ "title": "Sprints",
118
+ "description": "Configuration for sprints",
119
+ "oneOf": [
120
+ {
121
+ "type": "object",
122
+ "title": "Sprint Configuration",
123
+ "required": [
124
+ "kind"
125
+ ],
126
+ "properties": {
127
+ "kind": {
128
+ "type": "string",
129
+ "title": "Sprint Kind",
130
+ "description": "The value of the kind property for sprint types"
131
+ },
132
+ "properties": {
133
+ "type": "object",
134
+ "title": "Properties",
135
+ "description": "Sprint properties",
136
+ "properties": {
137
+ "name": {
138
+ "type": "string",
139
+ "title": "Name",
140
+ "description": "The property that determines a sprint's name",
141
+ "default": "Name"
142
+ },
143
+ "description": {
144
+ "type": "string",
145
+ "title": "Description",
146
+ "description": "The property that determines a sprint's description",
147
+ "default": "Description"
148
+ },
149
+ "status": {
150
+ "type": "string",
151
+ "title": "Status",
152
+ "description": "The property that determines a sprint's status",
153
+ "default": "Status"
154
+ },
155
+ "started_at": {
156
+ "type": "string",
157
+ "title": "Started At",
158
+ "description": "The property that determines a sprint's start timestamp",
159
+ "default": "Started At"
160
+ },
161
+ "ended_at": {
162
+ "type": "string",
163
+ "title": "Ended At",
164
+ "description": "The property that determines a sprint's end timestamp",
165
+ "default": "Ended At"
166
+ },
167
+ "closed_at": {
168
+ "type": "string",
169
+ "title": "Closed At",
170
+ "description": "The property that determines a sprint's closed timestamp",
171
+ "default": "Closed At"
172
+ }
173
+ }
174
+ }
175
+ }
176
+ }
177
+ ]
178
+ },
179
+ "tasks": {
180
+ "type": "object",
181
+ "title": "Tasks",
182
+ "description": "Configuration for tasks",
183
+ "oneOf": [
184
+ {
185
+ "type": "object",
186
+ "title": "Task Configuration",
187
+ "required": [
188
+ "kind"
189
+ ],
190
+ "properties": {
191
+ "kind": {
192
+ "type": "string",
193
+ "title": "Task Kind",
194
+ "description": "The value of the kind property for task types"
195
+ },
196
+ "include_additional_properties": {
197
+ "type": "boolean",
198
+ "title": "Include Additional Properties",
199
+ "description": "Include unmapped properties in the task's additional fields",
200
+ "default": false
201
+ },
202
+ "properties": {
203
+ "type": "object",
204
+ "title": "Properties",
205
+ "description": "Task properties",
206
+ "properties": {
207
+ "name": {
208
+ "type": "string",
209
+ "title": "Name",
210
+ "description": "The property that determines a task's name",
211
+ "default": "Name"
212
+ },
213
+ "description": {
214
+ "type": "string",
215
+ "title": "Description",
216
+ "description": "The property that determines a task's description",
217
+ "default": "Description"
218
+ },
219
+ "type": {
220
+ "type": "string",
221
+ "title": "Task Type",
222
+ "description": "The property that determines a task's type, e.g., story, bug, etc.",
223
+ "default": "Type"
224
+ },
225
+ "project": {
226
+ "type": "string",
227
+ "title": "Project",
228
+ "description": "The property that determines a task's project. It must have a relation type in Notion.",
229
+ "default": "Project"
230
+ },
231
+ "epic": {
232
+ "type": "string",
233
+ "title": "Epic",
234
+ "description": "The property that determines a task's epic. It must have a relation type in Notion.",
235
+ "default": "Epic"
236
+ },
237
+ "sprint": {
238
+ "type": "string",
239
+ "title": "Sprint",
240
+ "description": "The property that determines a task's sprint. It must have a relation type in Notion",
241
+ "default": "Sprint"
242
+ },
243
+ "status": {
244
+ "type": "string",
245
+ "title": "Status",
246
+ "description": "The property that determines a task's status",
247
+ "default": "Status"
248
+ },
249
+ "priority": {
250
+ "type": "string",
251
+ "title": "Priority",
252
+ "description": "The property that determines a task's priority",
253
+ "default": "Priority"
254
+ },
255
+ "points": {
256
+ "type": "string",
257
+ "title": "Points",
258
+ "description": "The property that determines a task's points",
259
+ "default": "Points"
260
+ },
261
+ "assignee": {
262
+ "type": "string",
263
+ "title": "Assignee",
264
+ "description": "The property that determines a task's assignee. It must have a person type in Notion.",
265
+ "default": "Assignee"
266
+ },
267
+ "resolved_at": {
268
+ "type": "string",
269
+ "title": "Resolved At",
270
+ "description": "The property that determines a task's resolved timestamp",
271
+ "default": "Resolved At"
272
+ }
273
+ }
274
+ }
275
+ }
276
+ }
277
+ ]
278
+ }
279
+ }
280
+ }
281
+ ]
282
+ }
@@ -0,0 +1,29 @@
1
+ {
2
+ "title": "OpsGenie",
3
+ "description": "Configuration options that apply to records generated by the OpsGenie Source.",
4
+ "type": "object",
5
+ "oneOf": [
6
+ {
7
+ "type": "object",
8
+ "title": "Configuration",
9
+ "properties": {
10
+ "max_description_length": {
11
+ "type": "integer",
12
+ "title": "Max Description Length",
13
+ "description": "Value to cut description to specific length",
14
+ "default": 1000
15
+ },
16
+ "application_mapping": {
17
+ "type": "string",
18
+ "title": "Application Mapping",
19
+ "description": "JSON map of OpsGenie service(s) name, to compute a Faros Application and Platform name. Used to reference compute_Application object, from an ims_Incident object. If specified, and such service exists, the feed will write a compute_Application object.",
20
+ "multiline": true,
21
+ "default": "{}",
22
+ "examples": [
23
+ "{ \"Aion\": { \"name\": \"aion\", \"platform\": \"ECS\" } }"
24
+ ]
25
+ }
26
+ }
27
+ }
28
+ ]
29
+ }