faros-airbyte-common 0.14.13 → 0.15.0
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/azure-devops/azure-devops.d.ts +40 -0
- package/lib/azure-devops/azure-devops.js +264 -0
- package/lib/azure-devops/azure-devops.js.map +1 -0
- package/lib/azure-devops/index.d.ts +2 -0
- package/lib/azure-devops/index.js +21 -0
- package/lib/azure-devops/index.js.map +1 -0
- package/lib/azure-devops/types.d.ts +111 -0
- package/lib/azure-devops/types.js +3 -0
- package/lib/azure-devops/types.js.map +1 -0
- package/lib/bitbucket/index.d.ts +1 -0
- package/lib/bitbucket/index.js +18 -0
- package/lib/bitbucket/index.js.map +1 -0
- package/lib/bitbucket/types.d.ts +547 -0
- package/lib/bitbucket/types.js +3 -0
- package/lib/bitbucket/types.js.map +1 -0
- package/lib/bitbucket-server/index.d.ts +127 -0
- package/lib/bitbucket-server/index.js +23 -0
- package/lib/bitbucket-server/index.js.map +1 -0
- package/lib/circleci/index.d.ts +1 -0
- package/lib/circleci/index.js +18 -0
- package/lib/circleci/index.js.map +1 -0
- package/lib/circleci/types.d.ts +86 -0
- package/lib/circleci/types.js +3 -0
- package/lib/circleci/types.js.map +1 -0
- package/lib/clickup/index.d.ts +1 -0
- package/lib/clickup/index.js +18 -0
- package/lib/clickup/index.js.map +1 -0
- package/lib/clickup/types.d.ts +292 -0
- package/lib/clickup/types.js +3 -0
- package/lib/clickup/types.js.map +1 -0
- package/lib/common/bucket-set.d.ts +6 -0
- package/lib/common/bucket-set.js +71 -0
- package/lib/common/bucket-set.js.map +1 -0
- package/lib/common/bucketing.d.ts +20 -0
- package/lib/common/bucketing.js +67 -0
- package/lib/common/bucketing.js.map +1 -0
- package/lib/common/index.d.ts +25 -0
- package/lib/common/index.js +126 -0
- package/lib/common/index.js.map +1 -0
- package/lib/github/codegen.d.ts +3 -0
- package/lib/github/codegen.js +39 -0
- package/lib/github/codegen.js.map +1 -0
- package/lib/github/generated/index.d.ts +8241 -0
- package/lib/github/generated/index.js +3257 -0
- package/lib/github/generated/index.js.map +1 -0
- package/lib/github/index.d.ts +1 -0
- package/lib/github/index.js +18 -0
- package/lib/github/index.js.map +1 -0
- package/lib/github/queries.d.ts +16 -0
- package/lib/github/queries.js +47 -0
- package/lib/github/queries.js.map +1 -0
- package/lib/github/types.d.ts +213 -0
- package/lib/github/types.js +10 -0
- package/lib/github/types.js.map +1 -0
- package/lib/jira/index.d.ts +1 -0
- package/lib/jira/index.js +18 -0
- package/lib/jira/index.js.map +1 -0
- package/lib/jira/types.d.ts +140 -0
- package/lib/jira/types.js +12 -0
- package/lib/jira/types.js.map +1 -0
- package/lib/tsconfig.tsbuildinfo +1 -0
- package/lib/vanta/index.d.ts +1 -0
- package/lib/vanta/index.js +18 -0
- package/lib/vanta/index.js.map +1 -0
- package/lib/vanta/types.d.ts +73 -0
- package/lib/vanta/types.js +3 -0
- package/lib/vanta/types.js.map +1 -0
- package/lib/wolken/index.d.ts +1 -0
- package/lib/wolken/index.js +18 -0
- package/lib/wolken/index.js.map +1 -0
- package/lib/wolken/types.d.ts +130 -0
- package/lib/wolken/types.js +3 -0
- package/lib/wolken/types.js.map +1 -0
- package/lib/xray/index.d.ts +1 -0
- package/lib/xray/index.js +18 -0
- package/lib/xray/index.js.map +1 -0
- package/lib/xray/types.d.ts +73 -0
- package/lib/xray/types.js +3 -0
- package/lib/xray/types.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './types';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./types"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/vanta/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAwB"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
export type Vulnerability = {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
integrationId: string;
|
|
6
|
+
packageIdentifier: string | null;
|
|
7
|
+
vulnerabilityType: 'CONFIGURATION' | 'COMMON' | 'GROUPED';
|
|
8
|
+
targetId: string;
|
|
9
|
+
firstDetectedDate: string;
|
|
10
|
+
sourceDetectedDate: string | null;
|
|
11
|
+
lastDetectedDate: string | null;
|
|
12
|
+
severity: 'LOW' | 'MEDIUM' | 'HIGH' | 'CRITICAL' | null;
|
|
13
|
+
cvssSeverityScore: number | null;
|
|
14
|
+
scannerScore: number | null;
|
|
15
|
+
isFixable: boolean;
|
|
16
|
+
remediateByDate: string | null;
|
|
17
|
+
relatedVulns: string[];
|
|
18
|
+
relatedUrls: string[];
|
|
19
|
+
externalURL: string;
|
|
20
|
+
scanSource?: string;
|
|
21
|
+
deactivateMetadata: {
|
|
22
|
+
isVulnDeactivatedIndefinitely: boolean;
|
|
23
|
+
deactivatedUntilDate: string | null;
|
|
24
|
+
deactivationReason: string;
|
|
25
|
+
deactivatedOnDate: string;
|
|
26
|
+
deactivatedBy: string;
|
|
27
|
+
} | null;
|
|
28
|
+
asset?: VulnerableAssetSummary;
|
|
29
|
+
};
|
|
30
|
+
export type VulnerabilityRemediation = {
|
|
31
|
+
id: string;
|
|
32
|
+
vulnerabilityId: string;
|
|
33
|
+
vulnerableAssetId: string;
|
|
34
|
+
severity: 'LOW' | 'MEDIUM' | 'HIGH' | 'CRITICAL';
|
|
35
|
+
detectedDate: string;
|
|
36
|
+
slaDeadlineDate: string;
|
|
37
|
+
remediationDate: string;
|
|
38
|
+
asset?: VulnerableAssetSummary;
|
|
39
|
+
};
|
|
40
|
+
export type VulnerableAsset = {
|
|
41
|
+
id: string;
|
|
42
|
+
name: string;
|
|
43
|
+
assetType: 'CODE_REPOSITORY' | 'CONTAINER_REPOSITORY' | 'CONTAINER_REPOSITORY_IMAGE' | 'MANIFEST_FILE' | 'SERVER' | 'SERVERLESS_FUNCTION' | 'WORKSTATION';
|
|
44
|
+
hasBeenScanned: boolean;
|
|
45
|
+
imageScanTag: string | null;
|
|
46
|
+
scanners: Scanner[];
|
|
47
|
+
assetTags: AssetTag[] | null;
|
|
48
|
+
parentAccountOrOrganization: string | null;
|
|
49
|
+
biosUuid: string;
|
|
50
|
+
ipv4s: string[] | null;
|
|
51
|
+
ipv6s: string[] | null;
|
|
52
|
+
macAddresses: string[] | null;
|
|
53
|
+
hostnames: string[] | null;
|
|
54
|
+
fqdns: string[] | null;
|
|
55
|
+
operatingSystems: string[] | null;
|
|
56
|
+
targetId: string | null;
|
|
57
|
+
};
|
|
58
|
+
export type Scanner = {
|
|
59
|
+
resourceId: string;
|
|
60
|
+
integrationId: string;
|
|
61
|
+
imageDigest: string | null;
|
|
62
|
+
imagePushedAtDate: string | null;
|
|
63
|
+
imageTags: string[] | null;
|
|
64
|
+
};
|
|
65
|
+
export type AssetTag = {
|
|
66
|
+
key: string;
|
|
67
|
+
value: string;
|
|
68
|
+
};
|
|
69
|
+
export type VulnerableAssetSummary = {
|
|
70
|
+
name: string;
|
|
71
|
+
imageTags: string[];
|
|
72
|
+
type: string;
|
|
73
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/vanta/types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './types';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./types"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/wolken/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAwB"}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
export interface User {
|
|
2
|
+
readonly userId: number;
|
|
3
|
+
readonly userPsNo: string;
|
|
4
|
+
readonly userFname: string;
|
|
5
|
+
readonly userLname: string;
|
|
6
|
+
readonly userEmail: string;
|
|
7
|
+
readonly userPhno: string;
|
|
8
|
+
readonly userMobno: string;
|
|
9
|
+
readonly activeUser: boolean;
|
|
10
|
+
readonly hireDate: string;
|
|
11
|
+
readonly userAddress: {
|
|
12
|
+
readonly departmentName: string;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
export interface CIRequest {
|
|
16
|
+
pkey: number;
|
|
17
|
+
ciId: number;
|
|
18
|
+
ciName: string;
|
|
19
|
+
ciTypeId: number;
|
|
20
|
+
ciTypeName: string;
|
|
21
|
+
}
|
|
22
|
+
export interface Incident {
|
|
23
|
+
ticketId: number;
|
|
24
|
+
ticketFormattedId: string;
|
|
25
|
+
originId: number;
|
|
26
|
+
originName: string;
|
|
27
|
+
subject: string;
|
|
28
|
+
createdTime: string;
|
|
29
|
+
requesterId: number;
|
|
30
|
+
requesterName: string;
|
|
31
|
+
creatorId: number;
|
|
32
|
+
creatorName: string;
|
|
33
|
+
unitId: number;
|
|
34
|
+
unitName: string;
|
|
35
|
+
categoryId: number;
|
|
36
|
+
categoryName: string;
|
|
37
|
+
subCategoryId: number;
|
|
38
|
+
subCategoryName: string;
|
|
39
|
+
itemId: number;
|
|
40
|
+
itemName: string;
|
|
41
|
+
teamId: number;
|
|
42
|
+
teamName: string;
|
|
43
|
+
priorityId: number;
|
|
44
|
+
priorityName: string;
|
|
45
|
+
impactId: number;
|
|
46
|
+
impactName: string;
|
|
47
|
+
urgencyId: number;
|
|
48
|
+
urgencyName: string;
|
|
49
|
+
assignedUserId: string;
|
|
50
|
+
assignedUserName: string;
|
|
51
|
+
assignedUserPsNo: string;
|
|
52
|
+
updatedTimestamp: string;
|
|
53
|
+
statusName: string;
|
|
54
|
+
subStatusName: string;
|
|
55
|
+
statusId: number;
|
|
56
|
+
subStatusId: number;
|
|
57
|
+
lastUpdatedByUser: string;
|
|
58
|
+
lastUpdatedByUserId: number;
|
|
59
|
+
plannedStartDate: string;
|
|
60
|
+
plannedEndDate: string;
|
|
61
|
+
closedByUserID: string;
|
|
62
|
+
closureTimeStamp: string;
|
|
63
|
+
resolvedByUserID: string;
|
|
64
|
+
resolvedByUserEmail: string;
|
|
65
|
+
resolvedByUserName: string;
|
|
66
|
+
resolutionTimeStamp: string;
|
|
67
|
+
description: string;
|
|
68
|
+
flexFields: FlexField[];
|
|
69
|
+
ciRequestList: CIRequest[];
|
|
70
|
+
}
|
|
71
|
+
export interface FlexField {
|
|
72
|
+
flexId: number;
|
|
73
|
+
flexName: string;
|
|
74
|
+
flexValue: string;
|
|
75
|
+
}
|
|
76
|
+
export interface Urgency {
|
|
77
|
+
urgencyId: number;
|
|
78
|
+
}
|
|
79
|
+
export interface ConfigurationItem {
|
|
80
|
+
ciId: number;
|
|
81
|
+
ciName: string;
|
|
82
|
+
ciDesc: string;
|
|
83
|
+
ciNotes: string;
|
|
84
|
+
ciStatusId: number;
|
|
85
|
+
ciOwnerId: string;
|
|
86
|
+
ciNumber: string;
|
|
87
|
+
ciSerialNumber: string;
|
|
88
|
+
ciTypeId: number;
|
|
89
|
+
ciTypeName: string;
|
|
90
|
+
ciLocationId: number;
|
|
91
|
+
ciAssetTag: string;
|
|
92
|
+
ciCostCenterId: string;
|
|
93
|
+
ciPoNumber: string;
|
|
94
|
+
ciCost: string;
|
|
95
|
+
dateofpurchase: string;
|
|
96
|
+
dateofuse: string;
|
|
97
|
+
createdById: number;
|
|
98
|
+
createddate: string;
|
|
99
|
+
updatedbyId: number;
|
|
100
|
+
updatedDate: string;
|
|
101
|
+
ciSourceid: number;
|
|
102
|
+
ciSupplier: string;
|
|
103
|
+
ciIpAddress: string;
|
|
104
|
+
ciOS: string;
|
|
105
|
+
ciMemory: string;
|
|
106
|
+
ciStorage: string;
|
|
107
|
+
hostName: string;
|
|
108
|
+
prodGroup: string;
|
|
109
|
+
deviceClass: string;
|
|
110
|
+
deviceModel: string;
|
|
111
|
+
ciArch: string;
|
|
112
|
+
ciModel: string;
|
|
113
|
+
ciSubTypeId: number;
|
|
114
|
+
ciSubTypeName: string;
|
|
115
|
+
ciCPU: string;
|
|
116
|
+
ciRAM: string;
|
|
117
|
+
ciHDD: string;
|
|
118
|
+
amcRequired: boolean;
|
|
119
|
+
ciClassificationId: string;
|
|
120
|
+
ciSecondaryOwnerid: string;
|
|
121
|
+
ciAssignmentTeamId: number;
|
|
122
|
+
ciApprovalGroupId: string;
|
|
123
|
+
warrantyStartdate: string;
|
|
124
|
+
warrantyEnddate: string;
|
|
125
|
+
cimanufacture: string;
|
|
126
|
+
taskTeam: string;
|
|
127
|
+
ciStatusName: string;
|
|
128
|
+
flexFields: FlexField[];
|
|
129
|
+
urgency: Urgency;
|
|
130
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/wolken/types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './types';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./types"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/xray/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAwB"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
export interface TestKey {
|
|
2
|
+
readonly issueId: string;
|
|
3
|
+
readonly key: string;
|
|
4
|
+
}
|
|
5
|
+
interface BaseTestDetail extends TestKey {
|
|
6
|
+
readonly summary: string;
|
|
7
|
+
readonly description: string;
|
|
8
|
+
readonly labels: ReadonlyArray<string>;
|
|
9
|
+
}
|
|
10
|
+
export type TestPlan = BaseTestDetail;
|
|
11
|
+
export interface TestType {
|
|
12
|
+
readonly name: string;
|
|
13
|
+
readonly kind: string;
|
|
14
|
+
}
|
|
15
|
+
export interface Status {
|
|
16
|
+
readonly name: string;
|
|
17
|
+
}
|
|
18
|
+
interface PreconditionType {
|
|
19
|
+
readonly name: string;
|
|
20
|
+
readonly kind: string;
|
|
21
|
+
}
|
|
22
|
+
interface Precondition {
|
|
23
|
+
readonly issueId: string;
|
|
24
|
+
readonly key: string;
|
|
25
|
+
readonly definition: string;
|
|
26
|
+
readonly rank: string;
|
|
27
|
+
readonly preconditionType: PreconditionType;
|
|
28
|
+
}
|
|
29
|
+
interface Step {
|
|
30
|
+
id: string;
|
|
31
|
+
action?: string;
|
|
32
|
+
data?: string;
|
|
33
|
+
result?: string;
|
|
34
|
+
status?: Status;
|
|
35
|
+
defects?: ReadonlyArray<string>;
|
|
36
|
+
}
|
|
37
|
+
export interface Test extends BaseTestDetail {
|
|
38
|
+
readonly gherkin: string;
|
|
39
|
+
readonly unstructured: string;
|
|
40
|
+
readonly testType: TestType;
|
|
41
|
+
readonly status: Status;
|
|
42
|
+
readonly preconditions: ReadonlyArray<Precondition>;
|
|
43
|
+
readonly steps: ReadonlyArray<Step>;
|
|
44
|
+
readonly project: string;
|
|
45
|
+
readonly lastModified: string;
|
|
46
|
+
}
|
|
47
|
+
export interface TestPlanTest {
|
|
48
|
+
planIssueId: string;
|
|
49
|
+
planKey: string;
|
|
50
|
+
testIssueId: string;
|
|
51
|
+
testKey: string;
|
|
52
|
+
}
|
|
53
|
+
export interface TestRun {
|
|
54
|
+
id: string;
|
|
55
|
+
startedOn: string;
|
|
56
|
+
finishedOn: string;
|
|
57
|
+
defects: ReadonlyArray<string>;
|
|
58
|
+
status: Status;
|
|
59
|
+
steps: ReadonlyArray<Step>;
|
|
60
|
+
lastModified: string;
|
|
61
|
+
test: TestKey;
|
|
62
|
+
testVersion: TestVersion;
|
|
63
|
+
testExecution: TestKey;
|
|
64
|
+
}
|
|
65
|
+
export interface TestVersion {
|
|
66
|
+
name: string;
|
|
67
|
+
}
|
|
68
|
+
export interface TestExecution extends BaseTestDetail {
|
|
69
|
+
readonly testEnvironments: ReadonlyArray<string>;
|
|
70
|
+
readonly project: string;
|
|
71
|
+
readonly lastModified: string;
|
|
72
|
+
}
|
|
73
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/xray/types.ts"],"names":[],"mappings":""}
|