airbyte-faros-destination 0.20.0-rc.4 → 0.20.0-rc.6
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/lib/converters/azure-tfvc/changesets.d.ts +8 -1
- package/lib/converters/azure-tfvc/changesets.js +124 -32
- package/lib/converters/azure-tfvc/changesets.js.map +1 -1
- package/lib/converters/azure-tfvc/common.d.ts +5 -1
- package/lib/converters/azure-tfvc/common.js +4 -0
- package/lib/converters/azure-tfvc/common.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/resources/source-specific-configs/azure-tfvc.json +26 -0
- package/resources/source-specific-configs/spec.json +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "airbyte-faros-destination",
|
|
3
|
-
"version": "0.20.0-rc.
|
|
3
|
+
"version": "0.20.0-rc.6",
|
|
4
4
|
"description": "Faros Destination for Airbyte",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"airbyte",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"ajv-formats": "^2.1.1",
|
|
37
37
|
"csv-parse": "^6.1.0",
|
|
38
38
|
"date-format": "^4.0.6",
|
|
39
|
-
"faros-airbyte-cdk": "0.20.0-rc.
|
|
40
|
-
"faros-airbyte-common": "0.20.0-rc.
|
|
39
|
+
"faros-airbyte-cdk": "0.20.0-rc.6",
|
|
40
|
+
"faros-airbyte-common": "0.20.0-rc.6",
|
|
41
41
|
"fs-extra": "^11.2.0",
|
|
42
42
|
"git-url-parse": "^13.1.0",
|
|
43
43
|
"graphql": "^16.8.1",
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Azure TFVC",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"oneOf": [
|
|
5
|
+
{
|
|
6
|
+
"type": "object",
|
|
7
|
+
"title": "Configuration",
|
|
8
|
+
"properties": {
|
|
9
|
+
"source_type": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"const": "Azure-TFVC",
|
|
12
|
+
"order": 0
|
|
13
|
+
},
|
|
14
|
+
"track_changesets": {
|
|
15
|
+
"type": "array",
|
|
16
|
+
"items": {
|
|
17
|
+
"type": "integer"
|
|
18
|
+
},
|
|
19
|
+
"title": "Track Changesets",
|
|
20
|
+
"description": "List of changeset IDs to track through mergeSources for investigation. Logs all branches and dates where these changesets appear.",
|
|
21
|
+
"default": []
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
}
|