faros-airbyte-common 0.0.1

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/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # Shared Utilities for Airbyte Sources and Destinations
2
+
3
+ This package contains code, such as shared types and utility functions, that can
4
+ be used by both sources and destinations.
@@ -0,0 +1,127 @@
1
+ import { FileDiff } from '../common';
2
+ declare type HRefs = {
3
+ self?: {
4
+ href: string;
5
+ }[];
6
+ };
7
+ export declare function selfHRef(links: HRefs): string | undefined;
8
+ export interface Commit {
9
+ readonly id: string;
10
+ readonly author: User;
11
+ readonly authorTimestamp: number;
12
+ readonly committer: User;
13
+ readonly committerTimestamp: number;
14
+ readonly message: string;
15
+ readonly computedProperties: {
16
+ readonly repository: {
17
+ readonly fullName: string;
18
+ };
19
+ };
20
+ }
21
+ export interface PullRequestActivity {
22
+ readonly id: number;
23
+ readonly createdDate: number;
24
+ readonly user: User;
25
+ readonly action: string;
26
+ readonly computedProperties: {
27
+ readonly pullRequest: {
28
+ readonly id: number;
29
+ readonly repository: {
30
+ readonly fullName: string;
31
+ };
32
+ readonly updatedDate: number;
33
+ };
34
+ };
35
+ }
36
+ interface PullRequestComment extends PullRequestActivity {
37
+ readonly comment: {
38
+ readonly text: string;
39
+ readonly createdDate: number;
40
+ readonly updatedDate: number;
41
+ };
42
+ }
43
+ export declare function isPullRequestComment(activity: PullRequestActivity): activity is PullRequestComment;
44
+ interface PullRequestMerge extends PullRequestActivity {
45
+ readonly commit: Commit;
46
+ }
47
+ export declare function isPullRequestMerge(activity: PullRequestActivity): activity is PullRequestMerge;
48
+ export declare function isPullRequestReview(activity: PullRequestActivity): boolean;
49
+ export interface PullRequestDiff {
50
+ readonly files: ReadonlyArray<FileDiff>;
51
+ readonly computedProperties: {
52
+ readonly pullRequest: {
53
+ readonly id: number;
54
+ readonly repository: {
55
+ readonly fullName: string;
56
+ };
57
+ readonly updatedDate: number;
58
+ };
59
+ };
60
+ }
61
+ export interface PullRequest {
62
+ readonly author: {
63
+ readonly user: User;
64
+ };
65
+ readonly id: number;
66
+ readonly title: string;
67
+ readonly description: string;
68
+ readonly state: string;
69
+ readonly createdDate: number;
70
+ readonly updatedDate: number;
71
+ readonly toRef: {
72
+ readonly repository: Repository;
73
+ };
74
+ readonly properties: {
75
+ readonly commentCount: number;
76
+ };
77
+ readonly links: HRefs;
78
+ readonly computedProperties: {
79
+ readonly repository: {
80
+ readonly fullName: string;
81
+ };
82
+ };
83
+ }
84
+ export interface Repository {
85
+ readonly slug: string;
86
+ readonly name: string;
87
+ readonly description: string;
88
+ readonly project: Project;
89
+ readonly public: boolean;
90
+ readonly links: HRefs;
91
+ readonly computedProperties: {
92
+ readonly fullName: string;
93
+ readonly mainBranch: string;
94
+ };
95
+ }
96
+ export interface Tag {
97
+ readonly id: string;
98
+ readonly displayId: string;
99
+ readonly type: string;
100
+ readonly latestCommit: string;
101
+ readonly latestChangeset: string;
102
+ readonly hash: string;
103
+ readonly computedProperties: {
104
+ readonly repository: {
105
+ readonly fullName: string;
106
+ };
107
+ };
108
+ }
109
+ export interface Project {
110
+ readonly key: string;
111
+ readonly name: string;
112
+ readonly links: HRefs;
113
+ }
114
+ export interface User {
115
+ readonly displayName: string;
116
+ readonly emailAddress: string;
117
+ readonly name: string;
118
+ readonly slug: string;
119
+ readonly links: HRefs;
120
+ }
121
+ export interface ProjectUser {
122
+ readonly user: User;
123
+ readonly project: {
124
+ readonly key: string;
125
+ };
126
+ }
127
+ export {};
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ // TODO: Deduplicate shared types for other source/converter pairs
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.isPullRequestReview = exports.isPullRequestMerge = exports.isPullRequestComment = exports.selfHRef = void 0;
5
+ function selfHRef(links) {
6
+ var _a, _b;
7
+ return (_b = (_a = links.self) === null || _a === void 0 ? void 0 : _a.find((l) => l.href)) === null || _b === void 0 ? void 0 : _b.href;
8
+ }
9
+ exports.selfHRef = selfHRef;
10
+ function isPullRequestComment(activity) {
11
+ return activity.action === 'COMMENTED';
12
+ }
13
+ exports.isPullRequestComment = isPullRequestComment;
14
+ function isPullRequestMerge(activity) {
15
+ return activity.action === 'MERGED';
16
+ }
17
+ exports.isPullRequestMerge = isPullRequestMerge;
18
+ function isPullRequestReview(activity) {
19
+ return (activity.action === 'APPROVED' ||
20
+ activity.action === 'DECLINED' ||
21
+ activity.action === 'REVIEWED');
22
+ }
23
+ exports.isPullRequestReview = isPullRequestReview;
24
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/bitbucket-server/index.ts"],"names":[],"mappings":";AAAA,kEAAkE;;;AAKlE,SAAgB,QAAQ,CAAC,KAAY;;IACnC,OAAO,MAAA,MAAA,KAAK,CAAC,IAAI,0CAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,0CAAE,IAAI,CAAC;AAC/C,CAAC;AAFD,4BAEC;AAoCD,SAAgB,oBAAoB,CAClC,QAA6B;IAE7B,OAAO,QAAQ,CAAC,MAAM,KAAK,WAAW,CAAC;AACzC,CAAC;AAJD,oDAIC;AAMD,SAAgB,kBAAkB,CAChC,QAA6B;IAE7B,OAAO,QAAQ,CAAC,MAAM,KAAK,QAAQ,CAAC;AACtC,CAAC;AAJD,gDAIC;AAED,SAAgB,mBAAmB,CAAC,QAA6B;IAC/D,OAAO,CACL,QAAQ,CAAC,MAAM,KAAK,UAAU;QAC9B,QAAQ,CAAC,MAAM,KAAK,UAAU;QAC9B,QAAQ,CAAC,MAAM,KAAK,UAAU,CAC/B,CAAC;AACJ,CAAC;AAND,kDAMC"}
@@ -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/clickup/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAwB"}
@@ -0,0 +1,292 @@
1
+ export interface Workspace {
2
+ id: string;
3
+ name: string;
4
+ color: string;
5
+ avatar: string;
6
+ members: readonly Member[];
7
+ }
8
+ interface Member {
9
+ user: User;
10
+ }
11
+ interface User {
12
+ id: number;
13
+ username: string;
14
+ email: string;
15
+ color: string;
16
+ profilePicture: string;
17
+ initials: string;
18
+ role: number;
19
+ last_active: string;
20
+ date_joined: string;
21
+ date_invited: string;
22
+ }
23
+ export interface Space {
24
+ computedProperties: {
25
+ workspace: {
26
+ id: string;
27
+ };
28
+ };
29
+ id: string;
30
+ name: string;
31
+ private: boolean;
32
+ statuses: ReadonlyArray<Status>;
33
+ multiple_assignees: boolean;
34
+ features: Features;
35
+ }
36
+ interface Features {
37
+ due_dates: DueDates;
38
+ time_tracking: Checklists;
39
+ tags: Checklists;
40
+ time_estimates: Checklists;
41
+ checklists: Checklists;
42
+ custom_fields: Checklists;
43
+ remap_dependencies: Checklists;
44
+ dependency_warning: Checklists;
45
+ portfolios: Checklists;
46
+ }
47
+ interface Checklists {
48
+ enabled: boolean;
49
+ }
50
+ interface DueDates {
51
+ enabled: boolean;
52
+ start_date: boolean;
53
+ remap_due_dates: boolean;
54
+ remap_closed_due_date: boolean;
55
+ }
56
+ export interface Folder {
57
+ computedProperties: {
58
+ workspace: {
59
+ id: string;
60
+ };
61
+ };
62
+ id: string;
63
+ name: string;
64
+ orderindex: number;
65
+ override_statuses: boolean;
66
+ hidden: boolean;
67
+ space: {
68
+ id: string;
69
+ name: string;
70
+ access: boolean;
71
+ };
72
+ task_count: string;
73
+ lists: readonly any[];
74
+ }
75
+ export interface List {
76
+ computedProperties: {
77
+ workspace: {
78
+ id: string;
79
+ };
80
+ };
81
+ id: string;
82
+ name: string;
83
+ orderindex: number;
84
+ content: string;
85
+ status: {
86
+ status: string;
87
+ color: string;
88
+ hide_label: boolean;
89
+ };
90
+ priority: {
91
+ priority: string;
92
+ color: string;
93
+ };
94
+ assignee: any;
95
+ task_count: any;
96
+ due_date: string;
97
+ start_date: any;
98
+ folder: {
99
+ id: string;
100
+ name: string;
101
+ hidden?: boolean;
102
+ access: boolean;
103
+ };
104
+ space: {
105
+ id: string;
106
+ name: string;
107
+ access: boolean;
108
+ };
109
+ archived: boolean;
110
+ override_statuses: boolean;
111
+ permission_level: string;
112
+ }
113
+ interface Status {
114
+ status: string;
115
+ color: string;
116
+ orderindex: number;
117
+ type: string;
118
+ }
119
+ export interface Task {
120
+ computedProperties: {
121
+ workspace: {
122
+ id: string;
123
+ };
124
+ };
125
+ id: string;
126
+ custom_id: string;
127
+ name: string;
128
+ text_content: string;
129
+ description: string;
130
+ status: Status;
131
+ orderindex: string;
132
+ date_created: string;
133
+ date_updated: string;
134
+ date_closed: string;
135
+ archived: boolean;
136
+ creator: Creator;
137
+ assignees: readonly Creator[];
138
+ watchers: readonly Creator[];
139
+ checklists: readonly Checklist[];
140
+ tags: readonly Tag[];
141
+ parent: string;
142
+ priority: string | {
143
+ color: string;
144
+ id: string;
145
+ orderindex: string;
146
+ priority: string;
147
+ };
148
+ due_date: string;
149
+ start_date: string;
150
+ points: number;
151
+ time_estimate: number;
152
+ custom_fields: readonly CustomField[];
153
+ dependencies: readonly any[];
154
+ linked_tasks: readonly {
155
+ task_id: string;
156
+ link_id: string;
157
+ date_created: string;
158
+ userid: string;
159
+ workspace_id: string;
160
+ }[];
161
+ team_id: string;
162
+ url: string;
163
+ permission_level: string;
164
+ list: FolderRef;
165
+ project: FolderRef;
166
+ folder: FolderRef;
167
+ space: SpaceRef;
168
+ }
169
+ interface Creator {
170
+ id: number;
171
+ username: string;
172
+ color: string;
173
+ email: string;
174
+ profilePicture: string;
175
+ }
176
+ interface Checklist {
177
+ id: string;
178
+ task_id: string;
179
+ name: string;
180
+ date_created: string;
181
+ orderindex: number;
182
+ creator: number;
183
+ resolved: number;
184
+ unresolved: number;
185
+ items: readonly Item[];
186
+ }
187
+ interface Item {
188
+ id: string;
189
+ name: string;
190
+ orderindex: number;
191
+ assignee: any;
192
+ resolved: boolean;
193
+ parent: any;
194
+ date_created: string;
195
+ children: readonly any[];
196
+ }
197
+ interface CustomField {
198
+ id: string;
199
+ name: string;
200
+ type: string;
201
+ type_config: Record<string, unknown>;
202
+ date_created: string;
203
+ hide_from_guests: boolean;
204
+ required: boolean;
205
+ value: any;
206
+ }
207
+ interface FolderRef {
208
+ id: string;
209
+ name: string;
210
+ hidden?: boolean;
211
+ access: boolean;
212
+ }
213
+ interface SpaceRef {
214
+ id: string;
215
+ }
216
+ interface Tag {
217
+ name: string;
218
+ tag_fg: string;
219
+ tag_bg: string;
220
+ }
221
+ export interface Goal {
222
+ computedProperties: {
223
+ workspace: {
224
+ id: string;
225
+ };
226
+ };
227
+ id: string;
228
+ name: string;
229
+ team_id: string;
230
+ date_created: string;
231
+ start_date: any;
232
+ due_date: string;
233
+ description: string;
234
+ private: boolean;
235
+ archived: boolean;
236
+ creator: number;
237
+ color: string;
238
+ pretty_id: string;
239
+ multiple_owners: boolean;
240
+ folder_id: any;
241
+ members: readonly any[];
242
+ owners: readonly Owner[];
243
+ key_results: readonly {
244
+ task_ids: readonly string[];
245
+ subcategory_ids: readonly string[];
246
+ }[];
247
+ percent_completed: number;
248
+ history: readonly any[];
249
+ pretty_url: string;
250
+ }
251
+ interface Owner {
252
+ id: number;
253
+ username: string;
254
+ initials: string;
255
+ email: string;
256
+ color: string;
257
+ profilePicture: string;
258
+ }
259
+ export interface StatusHistory {
260
+ computedProperties: {
261
+ task: {
262
+ id: string;
263
+ archived: boolean;
264
+ date_updated: string;
265
+ list: {
266
+ id: string;
267
+ };
268
+ workspace: {
269
+ id: string;
270
+ };
271
+ };
272
+ };
273
+ current_status: {
274
+ status: string;
275
+ color: string;
276
+ total_time: {
277
+ by_minute: number;
278
+ since: string;
279
+ };
280
+ };
281
+ status_history: readonly {
282
+ status: string;
283
+ color: string;
284
+ type: string;
285
+ total_time: {
286
+ by_minute: string;
287
+ since: string;
288
+ };
289
+ orderindex: number;
290
+ }[];
291
+ }
292
+ export {};
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/clickup/types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,8 @@
1
+ export interface FileDiff {
2
+ deletions: number;
3
+ additions: number;
4
+ from?: string;
5
+ to?: string;
6
+ deleted?: boolean;
7
+ new?: boolean;
8
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/common/index.ts"],"names":[],"mappings":""}
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2019.full.d.ts","../src/common/index.ts","../src/bitbucket-server/index.ts","../src/clickup/types.ts","../src/clickup/index.ts","../../node_modules/@types/analytics-node/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/node/ts4.8/assert.d.ts","../../node_modules/@types/node/ts4.8/assert/strict.d.ts","../../node_modules/@types/node/ts4.8/globals.d.ts","../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../node_modules/@types/node/ts4.8/buffer.d.ts","../../node_modules/@types/node/ts4.8/child_process.d.ts","../../node_modules/@types/node/ts4.8/cluster.d.ts","../../node_modules/@types/node/ts4.8/console.d.ts","../../node_modules/@types/node/ts4.8/constants.d.ts","../../node_modules/@types/node/ts4.8/crypto.d.ts","../../node_modules/@types/node/ts4.8/dgram.d.ts","../../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../node_modules/@types/node/ts4.8/dns.d.ts","../../node_modules/@types/node/ts4.8/dns/promises.d.ts","../../node_modules/@types/node/ts4.8/domain.d.ts","../../node_modules/@types/node/ts4.8/events.d.ts","../../node_modules/@types/node/ts4.8/fs.d.ts","../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../node_modules/@types/node/ts4.8/http.d.ts","../../node_modules/@types/node/ts4.8/http2.d.ts","../../node_modules/@types/node/ts4.8/https.d.ts","../../node_modules/@types/node/ts4.8/inspector.d.ts","../../node_modules/@types/node/ts4.8/module.d.ts","../../node_modules/@types/node/ts4.8/net.d.ts","../../node_modules/@types/node/ts4.8/os.d.ts","../../node_modules/@types/node/ts4.8/path.d.ts","../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../node_modules/@types/node/ts4.8/process.d.ts","../../node_modules/@types/node/ts4.8/punycode.d.ts","../../node_modules/@types/node/ts4.8/querystring.d.ts","../../node_modules/@types/node/ts4.8/readline.d.ts","../../node_modules/@types/node/ts4.8/repl.d.ts","../../node_modules/@types/node/ts4.8/stream.d.ts","../../node_modules/@types/node/ts4.8/stream/promises.d.ts","../../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../node_modules/@types/node/ts4.8/stream/web.d.ts","../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../node_modules/@types/node/ts4.8/test.d.ts","../../node_modules/@types/node/ts4.8/timers.d.ts","../../node_modules/@types/node/ts4.8/timers/promises.d.ts","../../node_modules/@types/node/ts4.8/tls.d.ts","../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../node_modules/@types/node/ts4.8/tty.d.ts","../../node_modules/@types/node/ts4.8/url.d.ts","../../node_modules/@types/node/ts4.8/util.d.ts","../../node_modules/@types/node/ts4.8/v8.d.ts","../../node_modules/@types/node/ts4.8/vm.d.ts","../../node_modules/@types/node/ts4.8/wasi.d.ts","../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../node_modules/@types/node/ts4.8/zlib.d.ts","../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../node_modules/@types/node/ts4.8/index.d.ts","../../node_modules/@types/buffer-from/index.d.ts","../../node_modules/keyv/src/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/cors/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/fast-redact/index.d.ts","../../node_modules/@types/jsonfile/index.d.ts","../../node_modules/@types/jsonfile/utils.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/google-spreadsheet/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/jenkins/index.d.ts","../../node_modules/@jest/expect-utils/build/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/expect/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/jsonwebtoken/index.d.ts","../../node_modules/@types/keyv/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/luxon/src/settings.d.ts","../../node_modules/@types/luxon/src/_util.d.ts","../../node_modules/@types/luxon/src/zone.d.ts","../../node_modules/@types/luxon/src/misc.d.ts","../../node_modules/@types/luxon/src/duration.d.ts","../../node_modules/@types/luxon/src/interval.d.ts","../../node_modules/@types/luxon/src/datetime.d.ts","../../node_modules/@types/luxon/src/info.d.ts","../../node_modules/@types/luxon/src/luxon.d.ts","../../node_modules/@types/luxon/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/pako/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/parse-link-header/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/toposort/index.d.ts","../../node_modules/@types/traverse/index.d.ts","../../node_modules/@types/turndown/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/verror/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f",{"version":"552acdcf5566087ab71f354d9f30719657af0f1fd42c7fb8799558193258a055","signature":"86e724c702982f7ed3e08f85459549bba8593aafd0e543b6a7ea4837ffcd6051"},{"version":"e3249decd00f66681e5117e0898e4cc646bd7e4c7638a03eafb168c5f5afd710","signature":"199cf481fe549f42ce9a14130ef173f32d2003dd3236e347bb540a2f4d4fec04"},{"version":"060a88570cfb474d55e88a7c9bd0f2257ee66ca090c5e77690b3a74e419e184a","signature":"9672481cf4966603d5fa4f012d3b09d76060c6962aa4da2bb0bfc4b10dd8ab9e"},"d5c19655468e29f60c871b21e73af8ebc653f736e7123ade916f22c4a5f80ce5","c88f6c1e3e3f47947e9307499b9c5ba2f29eb1158eccbbbe7ec9a04177420b4b","ac65f04c2df0218cb8e54f012745cbfcc3c0e67c1f6b1e557d88842bbb72e2db","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","a2e86df4db576d80704e25293cec6f20fc6101a11f4747440e2eef58fb3c860c","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","6704f0b54df85640baaeebd86c9d4a1dbb661d5a4d57a75bc84162f562f6531d","9d255af1b09c6697089d3c9bf438292a298d8b7a95c68793c9aae80afc9e5ca7","4911d4c3a7f7c11bad0e2cec329a19a385d10ea83b0b69c76e032359e388f624","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"2f6c9750131d5d2fdaba85c164a930dc07d2d7e7e8970b89d32864aa6c72620c","affectsGlobalScope":true},"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0",{"version":"4ffef5c4698e94e49dcf150e3270bad2b24a2aeab48b24acbe7c1366edff377d","affectsGlobalScope":true},"2534e46a52653b55dfb5a41ce427ec430c4afbaaf3bfcb1ae09b185c5d6bf169","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","3e44bd1bba0164e48cab51e327112a6f894275f79459675feae619738481a3ee","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","8bd106053ee0345dde7f626ed1f6100a89fb85f13ea65352627cf78c5f30c553","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","06ccebc2c2db57d6bdbca63b71c4ae5e6ddc42d972fd8f122d4c1a28aa111b25",{"version":"81e8508d1e82278f5d3fee936f267e00c308af36219bfcee2631f9513c9c4017","affectsGlobalScope":true},"413a4be7f94f631235bbc83dad36c4d15e5a2ff02bca1efdbd03636d6454631b","20c468256fd68d3ef1fa53526e76d51d6aa91711e84d72c0343589b99238287e","4198acced75d48a039c078734c4efca7788ff8c78609c270a2b63ec20e3e1676","8d4c16a26d59e3ce49741a7d4a6e8206b884e226cf308667c7778a0b2c0fee7f","288dd0c774a5c6e3964084c7a2bc8cc6b746d70f44a9892d028d04f915cf7ebc","d61c7c41eb1960b1285e242fd102c162b65c0522985b839fadda59874308a170",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"1805e0e4d1ed00f6361db25dff6887c7fa9b5b39f32599a34e8551da7daaa9c2","d10f4929cd610c26926d6784fc3f9f4120b789c03081b5d65fb2d2670a00fa04","fb0989383c6109f20281b3d31265293daefdd76d0d30551782c1654e93704f48","a4210a84a82b3e7a8cec5b2f3616e46d523f4f10cc1576d8f2fb89d0987b341e",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","22d48bfb37261136423ac687f1fa7bd4dda3083f767416d409a8260cf92bc8fc","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","f142151303f0792b81eff90b554081d2b78b146a83a4bc573228338e70afa420","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","698ab660b477b9c2cd5ccbd99e7e7df8b4a6134c1f5711fa615ed7aab51cb7f7","33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637","a4471d2bdba495b2a6a30b8765d5e0282fa7009d88345a9528f73c37869d3b93",{"version":"aee7013623e7632fba449d4df1da92925b27d9b816cb05546044dbfe54c88ef4","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c9d70d3d7191a66a81cb554557f8ed1cf736ea8397c44a864fe52689de18865a","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"1aad825534c73852a1f3275e527d729a2c0640f539198fdfdfeb83b839851910","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e3685a8957b4e2af64c3f04a58289ee0858a649dbcd963a2b897fe85858ae18a","a17b39fc912f9f37e5f7d6ed44b7215ee5633520c63e39de81e85bfd5c51d41c","42baf4ca38c38deaf411ea73f37bc39ff56c6e5c761a968b64ac1b25c92b5cd8","052e96ffe5376a3f7ead67f6893e021b68babb71c4683a203f7dae0226fcf5a7","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","dca41e86e89dfb2e85e6935260250f02eb6683b86c2fa16bec729ddd1bcd9b4b","facc7572c3330810ff4728113a324790679d4ed41fbd9e371028f08f1cad29f3","e482c3b05982b434d9efa302a7c745f4aeabb973a0c76565d7cd364b3862219e","ab754c02d70553f7131f80a5c44f6e45c3251afb571a73117274b4724f683e02","5d9a0b6e6be8dbb259f64037bce02f34692e8c1519f5cd5d467d7fa4490dced4","732a22e28e99e56f4f76410ef1d28ab502ae569ed7a25161db50629814f0c4e3","5d365f4aa7c18485bdb940d0066f7c8a6f7a924ef7685e5210016c24bb7ef8db","bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","aeaacb35b06dbb63484af10beaeb2b71ae5f1eb153e5a3024f0c6bda65a2f3b5","6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","6d969939c4a63f70f2aa49e88da6f64b655c8e6799612807bef41ccff6ea0da9",{"version":"b2fdcc3836d425833af10e536ae5491c34e218bc71870f12a401720f874b6ce4","affectsGlobalScope":true},"a52ef4dbbf82de3df527d9691b67834f8ced2724d307a10d68383a30bcb08b55","fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"3c706bae5e03bfd2d4da4bb476191b425c6414b4e142cf6419d969df582c257e","f21f46e0fd48bb5051ddc15ea4532fb6fa64bfb822a54fcd9d9d2fd8a366f91c","2cb090ebddbcb24d70f7feefd4e3bb9910c61ed0de51a6c6599bfab9405348b8","52ed17fe2c0a4bb27a4f13e99234b3d1f364dc27f9bd7964946d5ec62792a0cc","1eef59c38f38c64fcb60dcab950d8164a54e346eab8123a33141287765ce1a4e","b7648e912cb0958ae992e1b04e5bc78e79f11c7e27abd2b4c095f136a6bb2306","c68a4e9814ce3b5fffab0c0aac18172573b73e3853c5d5c509b809403fd434db","ce7dc6a3cbc2310198386d55981572f53742d67a615721f101554da7801a992b","c5641bb951da5d5252e7d8a806ec3c84f42555b5bd6a0879dbf1c7df1b8bd850","137394641f2db26158061d0638106d87919713c4dd17d17b0cdca1972ea0f8c8","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","4e9d375d05a75efefcdae0a6a7be76861b5c96683acd31d1c8b120f60c0f6194","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","0afe34c48fad1c1242745f938c2547118da072a942fef6db880cbb4550218dd1","d88a5e779faf033be3d52142a04fbe1cb96009868e3bbdd296b2bc6c59e06c0e","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","1d84555c17c5f9130c232f700e0776f2c5ade64f84baf35fc67b2968b49f5a1a","97cad055446113b65658aa07fac62e03dee7645dafec7f8e1e627500d5d8ee6d","9110d0556f9c55643de40c874641fe455177dee183538b4b6e7214c78e2112c3","12fe557e4c2d5ce9e11362f69a8d7c05d0588de4ae415afe8c5106da5c2772aa","4b5e3faff10d6bbeac24f4ceec4b5fc6212159aef9cbd650e480b09513430cbd","b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","e9eb1b173aa166892f3eddab182e49cfe59aa2e14d33aedb6b49d175ed6a3750"],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":false,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":false,"target":6},"fileIdsList":[[46,101],[48,101],[101],[51,101],[101,131],[51,52,53,54,55,101],[51,53,101],[101,108],[72,75,100,101,108,110,111,112],[75,101],[101,115,116,117],[73,101,108,120,121],[73,101,108],[101,125],[101,126],[101,133,136],[73,100,101,108],[66,101,108],[72,101,108],[101,140,142,143,144,145,146,147,148,149,150,151,152],[101,140,141,143,144,145,146,147,148,149,150,151,152],[101,141,142,143,144,145,146,147,148,149,150,151,152],[101,140,141,142,144,145,146,147,148,149,150,151,152],[101,140,141,142,143,145,146,147,148,149,150,151,152],[101,140,141,142,143,144,146,147,148,149,150,151,152],[101,140,141,142,143,144,145,147,148,149,150,151,152],[101,140,141,142,143,144,145,146,148,149,150,151,152],[101,140,141,142,143,144,145,146,147,149,150,151,152],[101,140,141,142,143,144,145,146,147,148,150,151,152],[101,140,141,142,143,144,145,146,147,148,149,151,152],[101,140,141,142,143,144,145,146,147,148,149,150,152],[101,140,141,142,143,144,145,146,147,148,149,150,151],[101,161],[101,153],[101,154,155,157,158,162],[101,154,156,159],[101,155,156],[101,154,157,159],[101,153,155,156,157,158,159,160],[101,155],[101,154],[57,101],[60,101],[61,66,92,101],[62,72,73,80,89,100,101],[62,63,72,80,101],[64,101],[65,66,73,81,101],[66,89,97,101],[67,69,72,80,101],[68,101],[69,70,101],[71,72,101],[72,101],[72,73,74,89,100,101],[72,73,74,89,101],[75,80,89,100,101],[72,73,75,76,80,89,97,100,101],[75,77,89,97,100,101],[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107],[72,78,101],[79,100,101],[69,72,80,89,101],[81,101],[82,101],[60,83,101],[84,99,101,105],[85,101],[86,101],[72,87,101],[87,88,101,103],[61,72,89,90,91,101],[61,89,91,101],[89,90,101],[92,101],[93,101],[72,95,96,101],[95,96,101],[66,80,97,101],[98,101],[80,99,101],[61,75,86,100,101],[66,101],[89,101,102],[101,103],[101,104],[61,66,72,74,83,89,100,101,103,105],[89,101,106],[75,89,101,108],[101,170,209],[101,170,194,209],[101,209],[101,170],[101,170,195,209],[101,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208],[101,195,209],[72,75,77,89,97,100,101,106,108],[101,217],[60,101,108,129,135],[101,133],[101,130,134],[101,132],[46]],"referencedMap":[[47,1],[49,2],[48,3],[46,3],[53,4],[51,3],[129,3],[132,5],[131,3],[50,3],[56,6],[52,4],[54,7],[55,4],[109,8],[113,9],[114,10],[115,3],[118,11],[116,3],[119,3],[122,12],[123,3],[124,13],[111,3],[125,3],[126,14],[127,15],[128,8],[137,16],[117,3],[120,17],[121,3],[138,18],[139,19],[141,20],[142,21],[140,22],[143,23],[144,24],[145,25],[146,26],[147,27],[148,28],[149,29],[150,30],[151,31],[152,32],[162,33],[154,34],[159,35],[157,36],[160,37],[158,38],[161,39],[156,3],[153,40],[155,41],[163,3],[164,3],[57,42],[58,42],[60,43],[61,44],[62,45],[63,46],[64,47],[65,48],[66,49],[67,50],[68,51],[69,52],[70,52],[71,53],[72,54],[73,55],[74,56],[59,3],[107,3],[75,57],[76,58],[77,59],[108,60],[78,61],[79,62],[80,63],[81,64],[82,65],[83,66],[84,67],[85,68],[86,69],[87,70],[88,71],[89,72],[91,73],[90,74],[92,75],[93,76],[94,3],[95,77],[96,78],[97,79],[98,80],[99,81],[100,82],[101,83],[102,84],[103,85],[104,86],[105,87],[106,88],[165,3],[166,3],[167,3],[168,3],[169,3],[112,89],[194,90],[195,91],[170,92],[173,92],[192,90],[193,90],[183,90],[182,93],[180,90],[175,90],[188,90],[186,90],[190,90],[174,90],[187,90],[191,90],[176,90],[177,90],[189,90],[171,90],[178,90],[179,90],[181,90],[185,90],[196,94],[184,90],[172,90],[209,95],[208,3],[203,94],[205,96],[204,94],[197,94],[198,94],[200,94],[202,94],[206,96],[207,96],[199,96],[201,96],[210,3],[211,3],[212,3],[213,3],[214,3],[215,3],[216,97],[217,3],[218,98],[130,3],[136,99],[134,100],[135,101],[110,54],[133,102],[8,3],[9,3],[13,3],[12,3],[2,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[21,3],[3,3],[4,3],[25,3],[22,3],[23,3],[24,3],[26,3],[27,3],[28,3],[5,3],[29,3],[30,3],[31,3],[32,3],[6,3],[45,3],[33,3],[34,3],[35,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[1,3],[44,3],[11,3],[10,3]],"exportedModulesMap":[[47,103],[49,2],[53,4],[51,3],[129,3],[132,5],[131,3],[50,3],[56,6],[52,4],[54,7],[55,4],[109,8],[113,9],[114,10],[115,3],[118,11],[116,3],[119,3],[122,12],[123,3],[124,13],[111,3],[125,3],[126,14],[127,15],[128,8],[137,16],[117,3],[120,17],[121,3],[138,18],[139,19],[141,20],[142,21],[140,22],[143,23],[144,24],[145,25],[146,26],[147,27],[148,28],[149,29],[150,30],[151,31],[152,32],[162,33],[154,34],[159,35],[157,36],[160,37],[158,38],[161,39],[156,3],[153,40],[155,41],[163,3],[164,3],[57,42],[58,42],[60,43],[61,44],[62,45],[63,46],[64,47],[65,48],[66,49],[67,50],[68,51],[69,52],[70,52],[71,53],[72,54],[73,55],[74,56],[59,3],[107,3],[75,57],[76,58],[77,59],[108,60],[78,61],[79,62],[80,63],[81,64],[82,65],[83,66],[84,67],[85,68],[86,69],[87,70],[88,71],[89,72],[91,73],[90,74],[92,75],[93,76],[94,3],[95,77],[96,78],[97,79],[98,80],[99,81],[100,82],[101,83],[102,84],[103,85],[104,86],[105,87],[106,88],[165,3],[166,3],[167,3],[168,3],[169,3],[112,89],[194,90],[195,91],[170,92],[173,92],[192,90],[193,90],[183,90],[182,93],[180,90],[175,90],[188,90],[186,90],[190,90],[174,90],[187,90],[191,90],[176,90],[177,90],[189,90],[171,90],[178,90],[179,90],[181,90],[185,90],[196,94],[184,90],[172,90],[209,95],[208,3],[203,94],[205,96],[204,94],[197,94],[198,94],[200,94],[202,94],[206,96],[207,96],[199,96],[201,96],[210,3],[211,3],[212,3],[213,3],[214,3],[215,3],[216,97],[217,3],[218,98],[130,3],[136,99],[134,100],[135,101],[110,54],[133,102],[8,3],[9,3],[13,3],[12,3],[2,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[21,3],[3,3],[4,3],[25,3],[22,3],[23,3],[24,3],[26,3],[27,3],[28,3],[5,3],[29,3],[30,3],[31,3],[32,3],[6,3],[45,3],[33,3],[34,3],[35,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[1,3],[44,3],[11,3],[10,3]],"semanticDiagnosticsPerFile":[47,49,48,46,53,51,129,132,131,50,56,52,54,55,109,113,114,115,118,116,119,122,123,124,111,125,126,127,128,137,117,120,121,138,139,141,142,140,143,144,145,146,147,148,149,150,151,152,162,154,159,157,160,158,161,156,153,155,163,164,57,58,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,59,107,75,76,77,108,78,79,80,81,82,83,84,85,86,87,88,89,91,90,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,165,166,167,168,169,112,194,195,170,173,192,193,183,182,180,175,188,186,190,174,187,191,176,177,189,171,178,179,181,185,196,184,172,209,208,203,205,204,197,198,200,202,206,207,199,201,210,211,212,213,214,215,216,217,218,130,136,134,135,110,133,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,45,33,34,35,36,7,37,42,43,38,39,40,41,1,44,11,10]},"version":"4.7.4"}
package/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "faros-airbyte-common",
3
+ "version": "0.0.1",
4
+ "description": "Faros Airbyte Connector shared utilities",
5
+ "keywords": [
6
+ "airbyte",
7
+ "faros"
8
+ ],
9
+ "homepage": "https://www.faros.ai",
10
+ "author": "Faros AI, Inc.",
11
+ "license": "Apache-2.0",
12
+ "repository": "https://github.com/faros-ai/airbyte-connectors",
13
+ "bugs": {
14
+ "url": "https://github.com/faros-ai/airbyte-connectors/issues"
15
+ },
16
+ "directories": {
17
+ "lib": "lib",
18
+ "test": "test"
19
+ },
20
+ "files": [
21
+ "lib/"
22
+ ],
23
+ "main": "./lib",
24
+ "engines": {
25
+ "node": ">=16"
26
+ },
27
+ "exports": {
28
+ "./bitbucket-server": "./lib/bitbucket-server/index.js",
29
+ "./clickup": "./lib/clickup/index.js",
30
+ "./common": "./lib/common/common.js"
31
+ },
32
+ "typesVersions": {
33
+ "*": {
34
+ "bitbucket-server": [
35
+ "./lib/bitbucket-server/index.d.ts"
36
+ ],
37
+ "clickup": [
38
+ "./lib/clickup/index.d.ts"
39
+ ],
40
+ "common": [
41
+ "./lib/common/index.d.ts"
42
+ ]
43
+ }
44
+ },
45
+ "scripts": {
46
+ "build": "tsc -p src",
47
+ "clean": "rm -rf lib node_modules out",
48
+ "fix": "prettier --write 'src/**/*.ts' 'test/**/*.ts' && npm run lint -- --fix",
49
+ "lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
50
+ "prepare": "npm run build",
51
+ "test": "jest --verbose --color",
52
+ "test-cov": "jest --coverage --verbose --color",
53
+ "watch": "tsc -b -w src test"
54
+ },
55
+ "dependencies": {},
56
+ "jest": {
57
+ "coverageDirectory": "out/coverage",
58
+ "coveragePathIgnorePatterns": [
59
+ "<rootDir>/node_modules/",
60
+ "<rootDir>/test/"
61
+ ],
62
+ "preset": "ts-jest",
63
+ "testEnvironment": "node",
64
+ "testTimeout": 10000,
65
+ "globals": {
66
+ "ts-jest": {
67
+ "tsconfig": "test/tsconfig.json"
68
+ }
69
+ },
70
+ "snapshotFormat": {
71
+ "printBasicPrototype": true
72
+ }
73
+ }
74
+ }