airbyte-faros-destination 0.4.79 → 0.4.81
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/circleci/pipelines.d.ts +2 -1
- package/lib/converters/circleci/pipelines.js +61 -3
- package/lib/converters/circleci/pipelines.js.map +1 -1
- package/lib/converters/notion/common.d.ts +181 -181
- package/lib/converters/statuspage/incidents.d.ts +1 -0
- package/lib/converters/statuspage/incidents.js +27 -0
- package/lib/converters/statuspage/incidents.js.map +1 -1
- package/lib/converters/statuspage/pages.d.ts +6 -0
- package/lib/converters/statuspage/pages.js +15 -0
- package/lib/converters/statuspage/pages.js.map +1 -0
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -3
- package/lib/converters/circleci/workflows.d.ts +0 -9
- package/lib/converters/circleci/workflows.js +0 -81
- package/lib/converters/circleci/workflows.js.map +0 -1
- package/lib/converters/statuspage/incident_updates.d.ts +0 -8
- package/lib/converters/statuspage/incident_updates.js +0 -46
- package/lib/converters/statuspage/incident_updates.js.map +0 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { AirbyteRecord } from 'faros-airbyte-cdk';
|
|
1
2
|
import { DestinationModel, DestinationRecord } from '../converter';
|
|
2
3
|
import { CircleCIConverter } from './common';
|
|
3
4
|
export declare class Pipelines extends CircleCIConverter {
|
|
4
5
|
readonly destinationModels: ReadonlyArray<DestinationModel>;
|
|
5
|
-
convert(): Promise<ReadonlyArray<DestinationRecord>>;
|
|
6
|
+
convert(record: AirbyteRecord): Promise<ReadonlyArray<DestinationRecord>>;
|
|
6
7
|
}
|
|
@@ -1,14 +1,72 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Pipelines = void 0;
|
|
4
|
+
const faros_js_client_1 = require("faros-js-client");
|
|
5
|
+
const lodash_1 = require("lodash");
|
|
4
6
|
const common_1 = require("./common");
|
|
5
7
|
class Pipelines extends common_1.CircleCIConverter {
|
|
6
8
|
constructor() {
|
|
7
9
|
super(...arguments);
|
|
8
|
-
this.destinationModels = [
|
|
10
|
+
this.destinationModels = [
|
|
11
|
+
'cicd_Build',
|
|
12
|
+
'cicd_BuildCommitAssociation',
|
|
13
|
+
'cicd_BuildStep',
|
|
14
|
+
];
|
|
9
15
|
}
|
|
10
|
-
async convert() {
|
|
11
|
-
|
|
16
|
+
async convert(record) {
|
|
17
|
+
var _a, _b, _c;
|
|
18
|
+
const source = this.streamName.source;
|
|
19
|
+
const pipeline = record.record.data;
|
|
20
|
+
const res = [];
|
|
21
|
+
for (const workflow of pipeline.workflows) {
|
|
22
|
+
const buildKey = common_1.CircleCICommon.getBuildKey(workflow, pipeline, source);
|
|
23
|
+
const repoName = common_1.CircleCICommon.getProject(pipeline.project_slug);
|
|
24
|
+
res.push({
|
|
25
|
+
model: 'cicd_Build',
|
|
26
|
+
record: {
|
|
27
|
+
...buildKey,
|
|
28
|
+
number: pipeline.number,
|
|
29
|
+
name: `${common_1.CircleCICommon.getProject(pipeline.project_slug)}_${pipeline.number}_${workflow.name}`,
|
|
30
|
+
createdAt: faros_js_client_1.Utils.toDate(workflow.created_at),
|
|
31
|
+
startedAt: faros_js_client_1.Utils.toDate(workflow.created_at),
|
|
32
|
+
endedAt: faros_js_client_1.Utils.toDate(workflow.stopped_at),
|
|
33
|
+
status: common_1.CircleCICommon.convertStatus(workflow.status),
|
|
34
|
+
},
|
|
35
|
+
});
|
|
36
|
+
res.push({
|
|
37
|
+
model: 'cicd_BuildCommitAssociation',
|
|
38
|
+
record: {
|
|
39
|
+
build: buildKey,
|
|
40
|
+
commit: {
|
|
41
|
+
sha: (_a = pipeline.vcs) === null || _a === void 0 ? void 0 : _a.revision,
|
|
42
|
+
uid: (_b = pipeline.vcs) === null || _b === void 0 ? void 0 : _b.revision,
|
|
43
|
+
repository: {
|
|
44
|
+
name: repoName,
|
|
45
|
+
uid: repoName,
|
|
46
|
+
organization: {
|
|
47
|
+
uid: common_1.CircleCICommon.getOrganization(pipeline.project_slug),
|
|
48
|
+
source: (_c = pipeline.vcs) === null || _c === void 0 ? void 0 : _c.provider_name,
|
|
49
|
+
},
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
},
|
|
53
|
+
});
|
|
54
|
+
for (const job of workflow.jobs) {
|
|
55
|
+
res.push({
|
|
56
|
+
model: 'cicd_BuildStep',
|
|
57
|
+
record: {
|
|
58
|
+
uid: (0, lodash_1.toLower)(job.id),
|
|
59
|
+
name: job.name,
|
|
60
|
+
startedAt: faros_js_client_1.Utils.toDate(job.started_at),
|
|
61
|
+
endedAt: faros_js_client_1.Utils.toDate(job.stopped_at),
|
|
62
|
+
status: common_1.CircleCICommon.convertStatus(job.status),
|
|
63
|
+
type: common_1.CircleCICommon.convertJobType(job.type),
|
|
64
|
+
build: buildKey,
|
|
65
|
+
},
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
return res;
|
|
12
70
|
}
|
|
13
71
|
}
|
|
14
72
|
exports.Pipelines = Pipelines;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pipelines.js","sourceRoot":"","sources":["../../../src/converters/circleci/pipelines.ts"],"names":[],"mappings":";;;AACA,
|
|
1
|
+
{"version":3,"file":"pipelines.js","sourceRoot":"","sources":["../../../src/converters/circleci/pipelines.ts"],"names":[],"mappings":";;;AACA,qDAAsC;AACtC,mCAA+B;AAG/B,qCAA2D;AAG3D,MAAa,SAAU,SAAQ,0BAAiB;IAAhD;;QACW,sBAAiB,GAAoC;YAC5D,YAAY;YACZ,6BAA6B;YAC7B,gBAAgB;SACjB,CAAC;IA4DJ,CAAC;IA3DC,KAAK,CAAC,OAAO,CACX,MAAqB;;QAErB,MAAM,MAAM,GAAG,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC;QACtC,MAAM,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC,IAAgB,CAAC;QAChD,MAAM,GAAG,GAAwB,EAAE,CAAC;QAEpC,KAAK,MAAM,QAAQ,IAAI,QAAQ,CAAC,SAAS,EAAE;YACzC,MAAM,QAAQ,GAAG,uBAAc,CAAC,WAAW,CAAC,QAAQ,EAAE,QAAQ,EAAE,MAAM,CAAC,CAAC;YACxE,MAAM,QAAQ,GAAG,uBAAc,CAAC,UAAU,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC;YAClE,GAAG,CAAC,IAAI,CAAC;gBACP,KAAK,EAAE,YAAY;gBACnB,MAAM,EAAE;oBACN,GAAG,QAAQ;oBACX,MAAM,EAAE,QAAQ,CAAC,MAAM;oBACvB,IAAI,EAAE,GAAG,uBAAc,CAAC,UAAU,CAAC,QAAQ,CAAC,YAAY,CAAC,IACvD,QAAQ,CAAC,MACX,IAAI,QAAQ,CAAC,IAAI,EAAE;oBACnB,SAAS,EAAE,uBAAK,CAAC,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC;oBAC5C,SAAS,EAAE,uBAAK,CAAC,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC;oBAC5C,OAAO,EAAE,uBAAK,CAAC,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC;oBAC1C,MAAM,EAAE,uBAAc,CAAC,aAAa,CAAC,QAAQ,CAAC,MAAM,CAAC;iBACtD;aACF,CAAC,CAAC;YACH,GAAG,CAAC,IAAI,CAAC;gBACP,KAAK,EAAE,6BAA6B;gBACpC,MAAM,EAAE;oBACN,KAAK,EAAE,QAAQ;oBACf,MAAM,EAAE;wBACN,GAAG,EAAE,MAAA,QAAQ,CAAC,GAAG,0CAAE,QAAQ;wBAC3B,GAAG,EAAE,MAAA,QAAQ,CAAC,GAAG,0CAAE,QAAQ;wBAC3B,UAAU,EAAE;4BACV,IAAI,EAAE,QAAQ;4BACd,GAAG,EAAE,QAAQ;4BACb,YAAY,EAAE;gCACZ,GAAG,EAAE,uBAAc,CAAC,eAAe,CAAC,QAAQ,CAAC,YAAY,CAAC;gCAC1D,MAAM,EAAE,MAAA,QAAQ,CAAC,GAAG,0CAAE,aAAa;6BACpC;yBACF;qBACF;iBACF;aACF,CAAC,CAAC;YACH,KAAK,MAAM,GAAG,IAAI,QAAQ,CAAC,IAAI,EAAE;gBAC/B,GAAG,CAAC,IAAI,CAAC;oBACP,KAAK,EAAE,gBAAgB;oBACvB,MAAM,EAAE;wBACN,GAAG,EAAE,IAAA,gBAAO,EAAC,GAAG,CAAC,EAAE,CAAC;wBACpB,IAAI,EAAE,GAAG,CAAC,IAAI;wBACd,SAAS,EAAE,uBAAK,CAAC,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC;wBACvC,OAAO,EAAE,uBAAK,CAAC,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC;wBACrC,MAAM,EAAE,uBAAc,CAAC,aAAa,CAAC,GAAG,CAAC,MAAM,CAAC;wBAChD,IAAI,EAAE,uBAAc,CAAC,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC;wBAC7C,KAAK,EAAE,QAAQ;qBAChB;iBACF,CAAC,CAAC;aACJ;SACF;QACD,OAAO,GAAG,CAAC;IACb,CAAC;CACF;AAjED,8BAiEC"}
|