faros-airbyte-common 0.12.3 → 0.12.5
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/tsconfig.tsbuildinfo +1 -1
- 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 +72 -0
- package/lib/wolken/types.js +3 -0
- package/lib/wolken/types.js.map +1 -0
- package/package.json +5 -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/wolken/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAwB"}
|
|
@@ -0,0 +1,72 @@
|
|
|
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
|
+
}
|
|
12
|
+
export interface CIRequest {
|
|
13
|
+
pkey: number;
|
|
14
|
+
ciId: number;
|
|
15
|
+
ciName: string;
|
|
16
|
+
ciTypeId: number;
|
|
17
|
+
ciTypeName: string;
|
|
18
|
+
}
|
|
19
|
+
export interface Incident {
|
|
20
|
+
ticketId: number;
|
|
21
|
+
ticketFormattedId: string;
|
|
22
|
+
originId: number;
|
|
23
|
+
originName: string;
|
|
24
|
+
subject: string;
|
|
25
|
+
createdTime: string;
|
|
26
|
+
requesterId: number;
|
|
27
|
+
requesterName: string;
|
|
28
|
+
creatorId: number;
|
|
29
|
+
creatorName: string;
|
|
30
|
+
unitId: number;
|
|
31
|
+
unitName: string;
|
|
32
|
+
categoryId: number;
|
|
33
|
+
categoryName: string;
|
|
34
|
+
subCategoryId: number;
|
|
35
|
+
subCategoryName: string;
|
|
36
|
+
itemId: number;
|
|
37
|
+
itemName: string;
|
|
38
|
+
teamId: number;
|
|
39
|
+
teamName: string;
|
|
40
|
+
priorityId: number;
|
|
41
|
+
priorityName: string;
|
|
42
|
+
impactId: number;
|
|
43
|
+
impactName: string;
|
|
44
|
+
urgencyId: number;
|
|
45
|
+
urgencyName: string;
|
|
46
|
+
assignedUserId: string;
|
|
47
|
+
assignedUserName: string;
|
|
48
|
+
assignedUserPsNo: string;
|
|
49
|
+
updatedTimestamp: string;
|
|
50
|
+
statusName: string;
|
|
51
|
+
subStatusName: string;
|
|
52
|
+
statusId: number;
|
|
53
|
+
subStatusId: number;
|
|
54
|
+
lastUpdatedByUser: string;
|
|
55
|
+
lastUpdatedByUserId: number;
|
|
56
|
+
plannedStartDate: string;
|
|
57
|
+
plannedEndDate: string;
|
|
58
|
+
closedByUserID: string;
|
|
59
|
+
closureTimeStamp: string;
|
|
60
|
+
resolvedByUserID: string;
|
|
61
|
+
resolvedByUserEmail: string;
|
|
62
|
+
resolvedByUserName: string;
|
|
63
|
+
resolutionTimeStamp: string;
|
|
64
|
+
description: string;
|
|
65
|
+
flexFields: FlexField[];
|
|
66
|
+
ciRequestList: CIRequest[];
|
|
67
|
+
}
|
|
68
|
+
export interface FlexField {
|
|
69
|
+
flexId: number;
|
|
70
|
+
flexName: string;
|
|
71
|
+
flexValue: string;
|
|
72
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/wolken/types.ts"],"names":[],"mappings":""}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "faros-airbyte-common",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.5",
|
|
4
4
|
"description": "Faros Airbyte Connector shared utilities",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"airbyte",
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"./github/queries": "./lib/github/queries.js",
|
|
37
37
|
"./jira": "./lib/jira/index.js",
|
|
38
38
|
"./vanta": "./lib/vanta/index.js",
|
|
39
|
+
"./wolken": "./lib/wolken/index.js",
|
|
39
40
|
"./xray": "./lib/xray/index.js"
|
|
40
41
|
},
|
|
41
42
|
"typesVersions": {
|
|
@@ -70,6 +71,9 @@
|
|
|
70
71
|
"vanta": [
|
|
71
72
|
"./lib/vanta/index.d.ts"
|
|
72
73
|
],
|
|
74
|
+
"wolken": [
|
|
75
|
+
"./lib/wolken/index.d.ts"
|
|
76
|
+
],
|
|
73
77
|
"xray": [
|
|
74
78
|
"./lib/xray/index.d.ts"
|
|
75
79
|
]
|