airbyte-faros-destination 0.11.5 → 0.11.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "airbyte-faros-destination",
3
- "version": "0.11.5",
3
+ "version": "0.11.6",
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.11.5",
40
- "faros-airbyte-common": "0.11.5",
39
+ "faros-airbyte-cdk": "0.11.6",
40
+ "faros-airbyte-common": "0.11.6",
41
41
  "faros-js-client": "^0.5.2",
42
42
  "fs-extra": "^11.2.0",
43
43
  "git-url-parse": "^13.1.0",
@@ -1,5 +1,5 @@
1
- query cicdArtifactQueryByCommitSha($commitShas: [String], $limit: Int) {
2
- cicd_Artifact(where: {uid: {_in: $commitShas}}, limit: $limit, distinct_on: uid) {
1
+ query cicdArtifactQueryByCommitSha($commitShas: [String]) {
2
+ cicd_Artifact(where: {uid: {_in: $commitShas}}, distinct_on: uid) {
3
3
  uid
4
4
  repository {
5
5
  organization {
@@ -11,12 +11,12 @@
11
11
  "const": "Vanta",
12
12
  "order": 0
13
13
  },
14
- "updateExistingVulnerabilities": {
15
- "type": "boolean",
16
- "title": "Update Faros Vulnerabilities to Resolved",
17
- "default": true,
18
- "order": 1
19
- }
14
+ "max_description_length": {
15
+ "type": "integer",
16
+ "title": "Max Description Length",
17
+ "description": "Defines the maximum length for descriptions before truncation",
18
+ "default": 1000
19
+ }
20
20
  }
21
21
  }
22
22
  ]
@@ -1,5 +1,5 @@
1
- query vcsRepositoryQuery($vcsRepoNames: [String], $limit: Int) {
2
- vcs_Repository(where: {name: {_in: $vcsRepoNames}}, limit: $limit, distinct_on: name) {
1
+ query vcsRepositoryQuery($vcsRepoNames: [String]) {
2
+ vcs_Repository(where: {name: {_in: $vcsRepoNames}}, distinct_on: name) {
3
3
  organization {
4
4
  uid
5
5
  source
@@ -1,15 +0,0 @@
1
- query cicdArtifactQueryByRepoName($repoNames: [String], $limit: Int) {
2
- cicd_Artifact(
3
- where: {repository: {uid: {_in: $repoNames}}}
4
- limit: $limit
5
- ) {
6
- uid
7
- repository {
8
- organization {
9
- uid
10
- source
11
- }
12
- uid
13
- }
14
- }
15
- }
@@ -1,24 +0,0 @@
1
- query cicdArtifactVulnerabilityQuery($limit: Int, $id: String) {
2
- cicd_ArtifactVulnerability(
3
- where: {resolvedAt: {_is_null: true}, _and: {id: {_gt: $id}}}
4
- limit: $limit
5
- order_by: {id: asc}
6
- ) {
7
- id
8
- resolvedAt
9
- vulnerability {
10
- uid
11
- source
12
- }
13
- artifact {
14
- uid
15
- repository {
16
- organization {
17
- uid
18
- source
19
- }
20
- uid
21
- }
22
- }
23
- }
24
- }
@@ -1,21 +0,0 @@
1
- query vcsRepositoryVulnerabilityQuery($limit: Int, $id: String) {
2
- vcs_RepositoryVulnerability(
3
- where: {resolvedAt: {_is_null: true}, _and: {id: {_gt: $id}}}
4
- limit: $limit
5
- order_by: {id: asc}
6
- ) {
7
- id
8
- resolvedAt
9
- vulnerability {
10
- uid
11
- source
12
- }
13
- repository {
14
- organization {
15
- uid
16
- source
17
- }
18
- name
19
- }
20
- }
21
- }