airbyte-faros-destination 0.13.11 → 0.13.13

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.13.11",
3
+ "version": "0.13.13",
4
4
  "description": "Faros Destination for Airbyte",
5
5
  "keywords": [
6
6
  "airbyte",
@@ -36,8 +36,8 @@
36
36
  "@segment/analytics-node": "^2.0.0",
37
37
  "axios": "^1.7.4",
38
38
  "date-format": "^4.0.6",
39
- "faros-airbyte-cdk": "0.13.11",
40
- "faros-airbyte-common": "0.13.11",
39
+ "faros-airbyte-cdk": "0.13.13",
40
+ "faros-airbyte-common": "0.13.13",
41
41
  "faros-js-client": "^0.6.1",
42
42
  "fs-extra": "^11.2.0",
43
43
  "git-url-parse": "^13.1.0",
@@ -51,6 +51,17 @@
51
51
  "title": "Upload sync logs",
52
52
  "description": "Upload sync logs to Faros.",
53
53
  "default": true
54
+ },
55
+ "heartbeat_timeout": {
56
+ "type": "integer",
57
+ "title": "Heartbeat Timeout",
58
+ "description": "Timeout in seconds for heartbeat check. If the Faros API does not receive a heartbeat within this time, the sync will be considered failed.",
59
+ "default": 300
60
+ },
61
+ "heartbeat_interval": {
62
+ "type": "integer",
63
+ "title": "Heartbeat Interval",
64
+ "description": "Interval in seconds for the destination to send a heartbeat to the Faros API. If left blank, the interval will be set to 1/3 of the heartbeat timeout."
54
65
  }
55
66
  }
56
67
  }
@@ -35,9 +35,18 @@
35
35
  "type": "string"
36
36
  }
37
37
  },
38
- "project_tag_flex_field_names": {
38
+ "application_tag_flex_field_user_lookup_names": {
39
39
  "order": 4,
40
40
  "type": "array",
41
+ "title": "Application Tag Flex User Lookup Names",
42
+ "description": "List of Flex Field User Lookup Names to use as application tags",
43
+ "items": {
44
+ "type": "string"
45
+ }
46
+ },
47
+ "project_tag_flex_field_names": {
48
+ "order": 5,
49
+ "type": "array",
41
50
  "title": "Project Tag Flex Field Names",
42
51
  "description": "List of Flex Field Names to use as project tags",
43
52
  "items": {
@@ -45,7 +54,7 @@
45
54
  }
46
55
  },
47
56
  "path_hierarchy_flex_field_names": {
48
- "order": 5,
57
+ "order": 6,
49
58
  "type": "array",
50
59
  "title": "Path Hierarchy Flex Field Names",
51
60
  "description": "List of Flex Field Names that define the path hierarchy",
@@ -54,7 +63,7 @@
54
63
  }
55
64
  },
56
65
  "application_mapping": {
57
- "order": 6,
66
+ "order": 7,
58
67
  "type": "string",
59
68
  "title": "Application Mapping",
60
69
  "description": "JSON map of Wolken service(s) ID, to compute platform specific app name and platform name.",
@@ -64,8 +73,19 @@
64
73
  "{ \"A3F91B6D\": { \"name\": \"aion\", \"platform\": \"ECS\" } }"
65
74
  ]
66
75
  },
76
+ "user_lookup_extra_fields_mapping": {
77
+ "order": 8,
78
+ "type": "string",
79
+ "title": "User Lookup Extra Fields Mapping",
80
+ "description": "JSON map of extra fields taken from User lookup to be added as tags. Key is the display name for the tag and value is the property path on the User record.",
81
+ "multiline": true,
82
+ "default": "{}",
83
+ "examples": [
84
+ "{ \"Department\": \"userAddress.departmentName\" }"
85
+ ]
86
+ },
67
87
  "store_current_incidents_associations": {
68
- "order": 7,
88
+ "order": 9,
69
89
  "type": "boolean",
70
90
  "title": "Only store current incidents associations",
71
91
  "description": "Only store current incidents associations in the graph.",