airbyte-faros-destination 0.13.0 → 0.13.2

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.0",
3
+ "version": "0.13.2",
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.0",
40
- "faros-airbyte-common": "0.13.0",
39
+ "faros-airbyte-cdk": "0.13.2",
40
+ "faros-airbyte-common": "0.13.2",
41
41
  "faros-js-client": "^0.6.1",
42
42
  "fs-extra": "^11.2.0",
43
43
  "git-url-parse": "^13.1.0",
@@ -99,6 +99,9 @@
99
99
  "victorops": {
100
100
  "$ref": "victorops.json"
101
101
  },
102
+ "wolken": {
103
+ "$ref": "wolken.json"
104
+ },
102
105
  "workday": {
103
106
  "$ref": "workday.json"
104
107
  },
@@ -0,0 +1,77 @@
1
+ {
2
+ "title": "Wolken",
3
+ "type": "object",
4
+ "oneOf": [
5
+ {
6
+ "type": "object",
7
+ "title": "Configuration",
8
+ "required": [
9
+ "service_id_flex_id"
10
+ ],
11
+ "properties": {
12
+ "source_type": {
13
+ "type": "string",
14
+ "const": "Wolken",
15
+ "order": 0
16
+ },
17
+ "service_id_flex_id": {
18
+ "order": 1,
19
+ "type": "integer",
20
+ "title": "Service ID Flex ID",
21
+ "description": "Flex ID of the field in the configuration item that contains the service ID."
22
+ },
23
+ "jira_project_key_flex_id": {
24
+ "order": 2,
25
+ "type": "integer",
26
+ "title": "Jira Project Key Flex ID",
27
+ "description": "Flex ID of the field in the configuration item that contains the Jira project key."
28
+ },
29
+ "application_tag_flex_ids": {
30
+ "order": 3,
31
+ "type": "array",
32
+ "title": "Application Tag Flex IDs",
33
+ "description": "List of flex IDs to use as application tags",
34
+ "items": {
35
+ "type": "integer"
36
+ }
37
+ },
38
+ "project_tag_flex_ids": {
39
+ "order": 4,
40
+ "type": "array",
41
+ "title": "Project Tag Flex IDs",
42
+ "description": "List of flex IDs to use as project tags",
43
+ "items": {
44
+ "type": "integer"
45
+ }
46
+ },
47
+ "path_hierarchy_flex_ids": {
48
+ "order": 5,
49
+ "type": "array",
50
+ "title": "Path Hierarchy Flex IDs",
51
+ "description": "List of flex IDs that define the path hierarchy",
52
+ "items": {
53
+ "type": "integer"
54
+ }
55
+ },
56
+ "application_mapping": {
57
+ "order": 6,
58
+ "type": "string",
59
+ "title": "Application Mapping",
60
+ "description": "JSON map of Wolken service(s) ID, to compute platform specific app name and platform name.",
61
+ "multiline": true,
62
+ "default": "{}",
63
+ "examples": [
64
+ "{ \"A3F91B6D\": { \"name\": \"aion\", \"platform\": \"ECS\" } }"
65
+ ]
66
+ },
67
+ "store_current_incidents_associations": {
68
+ "order": 7,
69
+ "type": "boolean",
70
+ "title": "Only store current incidents associations",
71
+ "description": "Only store current incidents associations in the graph.",
72
+ "default": false
73
+ }
74
+ }
75
+ }
76
+ ]
77
+ }