@driveflux/reporter 5.1.4 → 5.2.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/dist/config.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { ProblemSeverity } from '@driveflux/problem';
2
- import { Configuration } from 'rollbar';
2
+ import type { Configuration } from 'rollbar';
3
3
  export type Config = {
4
4
  isProd: boolean;
5
5
  deferReporting: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAA;AAEpD,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAEvC,MAAM,MAAM,MAAM,GAAG;IACnB,MAAM,EAAE,OAAO,CAAA;IACf,cAAc,EAAE,OAAO,CAAA;IACvB,KAAK,CAAC,EAAE;QACN,cAAc,EAAE,MAAM,CAAA;QACtB,KAAK,EAAE,MAAM,CAAA;QACb,eAAe,EAAE,eAAe,CAAA;KACjC,CAAA;IACD,OAAO,EAAE;QACP,KAAK,EAAE,OAAO,CAAA;QACd,OAAO,EAAE,OAAO,CAAA;QAChB,OAAO,EAAE,OAAO,CAAA;KACjB,CAAA;IACD,OAAO,CAAC,EAAE,aAAa,CAAA;CACxB,CAAA;AA4BD,eAAO,IAAI,MAAM,EAAE,MAAiD,CAAA;AAEpE,eAAO,MAAM,WAAW,cAIvB,CAAA;AAED,eAAO,MAAM,SAAS,GAAI,GAAG,SAAS,MAAM,MAAM,OAAO,GAAG,SAAS,MAAM,CAAC,GAAG,CAAC,SAE/E,CAAA"}
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAA;AAEpD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAE5C,MAAM,MAAM,MAAM,GAAG;IACpB,MAAM,EAAE,OAAO,CAAA;IACf,cAAc,EAAE,OAAO,CAAA;IACvB,KAAK,CAAC,EAAE;QACP,cAAc,EAAE,MAAM,CAAA;QACtB,KAAK,EAAE,MAAM,CAAA;QACb,eAAe,EAAE,eAAe,CAAA;KAChC,CAAA;IACD,OAAO,EAAE;QACR,KAAK,EAAE,OAAO,CAAA;QACd,OAAO,EAAE,OAAO,CAAA;QAChB,OAAO,EAAE,OAAO,CAAA;KAChB,CAAA;IACD,OAAO,CAAC,EAAE,aAAa,CAAA;CACvB,CAAA;AA6BD,eAAO,IAAI,MAAM,EAAE,MAAiD,CAAA;AAEpE,eAAO,MAAM,WAAW,cAIvB,CAAA;AAED,eAAO,MAAM,SAAS,GAAI,GAAG,SAAS,MAAM,MAAM,OAC5C,GAAG,SACD,MAAM,CAAC,GAAG,CAAC,SAGlB,CAAA"}
package/dist/config.js CHANGED
@@ -1,34 +1,33 @@
1
1
  import { ProblemSeverity } from '@driveflux/problem';
2
2
  import { singleton } from '@driveflux/singleton';
3
- const getConfig = () => ({
4
- isProd: process.env.APP_ENV === 'production',
5
- deferReporting: typeof process.env.REPORTER_DEFER === 'string' && process.env.REPORTER_DEFER !== ''
6
- ? process.env.REPORTER_DEFER === 'true'
7
- : true,
8
- slack: {
9
- errorChannelId: process.env.SLACK_ERROR_CHANNEL,
10
- token: process.env.SLACK_TOKEN,
11
- minimumSeverity: ProblemSeverity.CRITICAL
12
- },
13
- drivers: {
14
- slack: process.env.REPORTER_USE_SLACK === 'true',
15
- rollbar: process.env.REPORTER_USE_ROLLBAR === 'true',
16
- console: process.env.REPORTER_USE_CONSOLE !== 'false'
17
- },
18
- rollbar: {
19
- accessToken: process.env.ROLLBAR_ACCESS_TOKEN,
20
- enabled: true,
21
- captureUncaught: true,
22
- captureUnhandledRejections: true,
23
- environment: process.env.APP_ENV || process.env.NODE_ENV
24
- }
25
- });
26
- export let config = singleton('reporterConfig', getConfig());
27
- export const resetConfig = () => {
3
+ var getConfig = function() {
4
+ return {
5
+ isProd: process.env.APP_ENV === 'production',
6
+ deferReporting: typeof process.env.REPORTER_DEFER === 'string' && process.env.REPORTER_DEFER !== '' ? process.env.REPORTER_DEFER === 'true' : true,
7
+ slack: {
8
+ errorChannelId: process.env.SLACK_ERROR_CHANNEL,
9
+ token: process.env.SLACK_TOKEN,
10
+ minimumSeverity: ProblemSeverity.CRITICAL
11
+ },
12
+ drivers: {
13
+ slack: process.env.REPORTER_USE_SLACK === 'true',
14
+ rollbar: process.env.REPORTER_USE_ROLLBAR === 'true',
15
+ console: process.env.REPORTER_USE_CONSOLE !== 'false'
16
+ },
17
+ rollbar: {
18
+ accessToken: process.env.ROLLBAR_ACCESS_TOKEN,
19
+ enabled: true,
20
+ captureUncaught: true,
21
+ captureUnhandledRejections: true,
22
+ environment: process.env.APP_ENV || process.env.NODE_ENV
23
+ }
24
+ };
25
+ };
26
+ export var config = singleton('reporterConfig', getConfig());
27
+ export var resetConfig = function() {
28
28
  config = singleton('reporterConfig', getConfig(), true);
29
29
  return config;
30
30
  };
31
- export const setConfig = (key, value) => {
31
+ export var setConfig = function(key, value) {
32
32
  config[key] = value;
33
33
  };
34
- //# sourceMappingURL=config.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"console.d.ts","sourceRoot":"","sources":["../../src/drivers/console.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAA;AACjD,OAAO,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AACrD,qBAAa,aAAc,YAAW,QAAQ;IAC5C,OAAO,CAAC,OAAO,CAAK;IAEd,WAAW,CAAC,GAAG,EAAE,KAAK,EAAE,CAAC,EAAE,QAAQ;IAMnC,aAAa,CAAC,OAAO,EAAE,OAAO;IAMpC,kBAAkB,CAAC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;CAGhD"}
1
+ {"version":3,"file":"console.d.ts","sourceRoot":"","sources":["../../src/drivers/console.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAA;AACjD,OAAO,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AACrD,qBAAa,aAAc,YAAW,QAAQ;IAC7C,OAAO,CAAC,OAAO,CAAK;IAEd,WAAW,CAAC,GAAG,EAAE,KAAK,EAAE,CAAC,EAAE,QAAQ;IAMnC,aAAa,CAAC,OAAO,EAAE,OAAO;IAMpC,kBAAkB,CAAC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;CAG/C"}
@@ -0,0 +1,204 @@
1
+ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
2
+ try {
3
+ var info = gen[key](arg);
4
+ var value = info.value;
5
+ } catch (error) {
6
+ reject(error);
7
+ return;
8
+ }
9
+ if (info.done) {
10
+ resolve(value);
11
+ } else {
12
+ Promise.resolve(value).then(_next, _throw);
13
+ }
14
+ }
15
+ function _async_to_generator(fn) {
16
+ return function() {
17
+ var self = this, args = arguments;
18
+ return new Promise(function(resolve, reject) {
19
+ var gen = fn.apply(self, args);
20
+ function _next(value) {
21
+ asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
22
+ }
23
+ function _throw(err) {
24
+ asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
25
+ }
26
+ _next(undefined);
27
+ });
28
+ };
29
+ }
30
+ function _class_call_check(instance, Constructor) {
31
+ if (!(instance instanceof Constructor)) {
32
+ throw new TypeError("Cannot call a class as a function");
33
+ }
34
+ }
35
+ function _defineProperties(target, props) {
36
+ for(var i = 0; i < props.length; i++){
37
+ var descriptor = props[i];
38
+ descriptor.enumerable = descriptor.enumerable || false;
39
+ descriptor.configurable = true;
40
+ if ("value" in descriptor) descriptor.writable = true;
41
+ Object.defineProperty(target, descriptor.key, descriptor);
42
+ }
43
+ }
44
+ function _create_class(Constructor, protoProps, staticProps) {
45
+ if (protoProps) _defineProperties(Constructor.prototype, protoProps);
46
+ if (staticProps) _defineProperties(Constructor, staticProps);
47
+ return Constructor;
48
+ }
49
+ function _define_property(obj, key, value) {
50
+ if (key in obj) {
51
+ Object.defineProperty(obj, key, {
52
+ value: value,
53
+ enumerable: true,
54
+ configurable: true,
55
+ writable: true
56
+ });
57
+ } else {
58
+ obj[key] = value;
59
+ }
60
+ return obj;
61
+ }
62
+ function _ts_generator(thisArg, body) {
63
+ var f, y, t, g, _ = {
64
+ label: 0,
65
+ sent: function() {
66
+ if (t[0] & 1) throw t[1];
67
+ return t[1];
68
+ },
69
+ trys: [],
70
+ ops: []
71
+ };
72
+ return g = {
73
+ next: verb(0),
74
+ "throw": verb(1),
75
+ "return": verb(2)
76
+ }, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
77
+ return this;
78
+ }), g;
79
+ function verb(n) {
80
+ return function(v) {
81
+ return step([
82
+ n,
83
+ v
84
+ ]);
85
+ };
86
+ }
87
+ function step(op) {
88
+ if (f) throw new TypeError("Generator is already executing.");
89
+ while(_)try {
90
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
91
+ if (y = 0, t) op = [
92
+ op[0] & 2,
93
+ t.value
94
+ ];
95
+ switch(op[0]){
96
+ case 0:
97
+ case 1:
98
+ t = op;
99
+ break;
100
+ case 4:
101
+ _.label++;
102
+ return {
103
+ value: op[1],
104
+ done: false
105
+ };
106
+ case 5:
107
+ _.label++;
108
+ y = op[1];
109
+ op = [
110
+ 0
111
+ ];
112
+ continue;
113
+ case 7:
114
+ op = _.ops.pop();
115
+ _.trys.pop();
116
+ continue;
117
+ default:
118
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
119
+ _ = 0;
120
+ continue;
121
+ }
122
+ if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
123
+ _.label = op[1];
124
+ break;
125
+ }
126
+ if (op[0] === 6 && _.label < t[1]) {
127
+ _.label = t[1];
128
+ t = op;
129
+ break;
130
+ }
131
+ if (t && _.label < t[2]) {
132
+ _.label = t[2];
133
+ _.ops.push(op);
134
+ break;
135
+ }
136
+ if (t[2]) _.ops.pop();
137
+ _.trys.pop();
138
+ continue;
139
+ }
140
+ op = body.call(thisArg, _);
141
+ } catch (e) {
142
+ op = [
143
+ 6,
144
+ e
145
+ ];
146
+ y = 0;
147
+ } finally{
148
+ f = t = 0;
149
+ }
150
+ if (op[0] & 5) throw op[1];
151
+ return {
152
+ value: op[0] ? op[1] : void 0,
153
+ done: true
154
+ };
155
+ }
156
+ }
157
+ export var ConsoleDriver = /*#__PURE__*/ function() {
158
+ "use strict";
159
+ function ConsoleDriver() {
160
+ _class_call_check(this, ConsoleDriver);
161
+ _define_property(this, "payload", void 0);
162
+ }
163
+ _create_class(ConsoleDriver, [
164
+ {
165
+ key: "reportError",
166
+ value: function reportError(err, _) {
167
+ var _this = this;
168
+ return _async_to_generator(function() {
169
+ return _ts_generator(this, function(_state) {
170
+ console.error('An error happened');
171
+ console.error('Error', err);
172
+ console.error('Payload', _this.payload);
173
+ return [
174
+ 2
175
+ ];
176
+ });
177
+ })();
178
+ }
179
+ },
180
+ {
181
+ key: "reportProblem",
182
+ value: function reportProblem(problem) {
183
+ var _this = this;
184
+ return _async_to_generator(function() {
185
+ return _ts_generator(this, function(_state) {
186
+ console.error('A problem happened');
187
+ console.error('Problem', problem);
188
+ console.error('Payload', _this.payload);
189
+ return [
190
+ 2
191
+ ];
192
+ });
193
+ })();
194
+ }
195
+ },
196
+ {
197
+ key: "setReporterPayload",
198
+ value: function setReporterPayload(payload) {
199
+ this.payload = payload;
200
+ }
201
+ }
202
+ ]);
203
+ return ConsoleDriver;
204
+ }();
@@ -1 +1 @@
1
- {"version":3,"file":"rollbar.d.ts","sourceRoot":"","sources":["../../src/drivers/rollbar.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAA;AAEjD,OAAO,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AAErD,qBAAa,aAAc,YAAW,QAAQ;IAC5C,OAAO,CAAC,OAAO,CAAA;gBAEH,aAAa,CAAC,EAAE,OAAO,SAAS,EAAE,aAAa;IAIrD,WAAW,CAAC,GAAG,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ;IAI1C,aAAa,CAAC,OAAO,EAAE,OAAO;IAapC,kBAAkB,CAAC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;CAGhD"}
1
+ {"version":3,"file":"rollbar.d.ts","sourceRoot":"","sources":["../../src/drivers/rollbar.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAA;AAEjD,OAAO,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AAErD,qBAAa,aAAc,YAAW,QAAQ;IAC7C,OAAO,CAAC,OAAO,CAAA;gBAEH,aAAa,CAAC,EAAE,OAAO,SAAS,EAAE,aAAa;IAIrD,WAAW,CAAC,GAAG,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ;IAI1C,aAAa,CAAC,OAAO,EAAE,OAAO;IAcpC,kBAAkB,CAAC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;CAG/C"}
@@ -0,0 +1,217 @@
1
+ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
2
+ try {
3
+ var info = gen[key](arg);
4
+ var value = info.value;
5
+ } catch (error) {
6
+ reject(error);
7
+ return;
8
+ }
9
+ if (info.done) {
10
+ resolve(value);
11
+ } else {
12
+ Promise.resolve(value).then(_next, _throw);
13
+ }
14
+ }
15
+ function _async_to_generator(fn) {
16
+ return function() {
17
+ var self = this, args = arguments;
18
+ return new Promise(function(resolve, reject) {
19
+ var gen = fn.apply(self, args);
20
+ function _next(value) {
21
+ asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
22
+ }
23
+ function _throw(err) {
24
+ asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
25
+ }
26
+ _next(undefined);
27
+ });
28
+ };
29
+ }
30
+ function _class_call_check(instance, Constructor) {
31
+ if (!(instance instanceof Constructor)) {
32
+ throw new TypeError("Cannot call a class as a function");
33
+ }
34
+ }
35
+ function _defineProperties(target, props) {
36
+ for(var i = 0; i < props.length; i++){
37
+ var descriptor = props[i];
38
+ descriptor.enumerable = descriptor.enumerable || false;
39
+ descriptor.configurable = true;
40
+ if ("value" in descriptor) descriptor.writable = true;
41
+ Object.defineProperty(target, descriptor.key, descriptor);
42
+ }
43
+ }
44
+ function _create_class(Constructor, protoProps, staticProps) {
45
+ if (protoProps) _defineProperties(Constructor.prototype, protoProps);
46
+ if (staticProps) _defineProperties(Constructor, staticProps);
47
+ return Constructor;
48
+ }
49
+ function _define_property(obj, key, value) {
50
+ if (key in obj) {
51
+ Object.defineProperty(obj, key, {
52
+ value: value,
53
+ enumerable: true,
54
+ configurable: true,
55
+ writable: true
56
+ });
57
+ } else {
58
+ obj[key] = value;
59
+ }
60
+ return obj;
61
+ }
62
+ function _ts_generator(thisArg, body) {
63
+ var f, y, t, g, _ = {
64
+ label: 0,
65
+ sent: function() {
66
+ if (t[0] & 1) throw t[1];
67
+ return t[1];
68
+ },
69
+ trys: [],
70
+ ops: []
71
+ };
72
+ return g = {
73
+ next: verb(0),
74
+ "throw": verb(1),
75
+ "return": verb(2)
76
+ }, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
77
+ return this;
78
+ }), g;
79
+ function verb(n) {
80
+ return function(v) {
81
+ return step([
82
+ n,
83
+ v
84
+ ]);
85
+ };
86
+ }
87
+ function step(op) {
88
+ if (f) throw new TypeError("Generator is already executing.");
89
+ while(_)try {
90
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
91
+ if (y = 0, t) op = [
92
+ op[0] & 2,
93
+ t.value
94
+ ];
95
+ switch(op[0]){
96
+ case 0:
97
+ case 1:
98
+ t = op;
99
+ break;
100
+ case 4:
101
+ _.label++;
102
+ return {
103
+ value: op[1],
104
+ done: false
105
+ };
106
+ case 5:
107
+ _.label++;
108
+ y = op[1];
109
+ op = [
110
+ 0
111
+ ];
112
+ continue;
113
+ case 7:
114
+ op = _.ops.pop();
115
+ _.trys.pop();
116
+ continue;
117
+ default:
118
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
119
+ _ = 0;
120
+ continue;
121
+ }
122
+ if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
123
+ _.label = op[1];
124
+ break;
125
+ }
126
+ if (op[0] === 6 && _.label < t[1]) {
127
+ _.label = t[1];
128
+ t = op;
129
+ break;
130
+ }
131
+ if (t && _.label < t[2]) {
132
+ _.label = t[2];
133
+ _.ops.push(op);
134
+ break;
135
+ }
136
+ if (t[2]) _.ops.pop();
137
+ _.trys.pop();
138
+ continue;
139
+ }
140
+ op = body.call(thisArg, _);
141
+ } catch (e) {
142
+ op = [
143
+ 6,
144
+ e
145
+ ];
146
+ y = 0;
147
+ } finally{
148
+ f = t = 0;
149
+ }
150
+ if (op[0] & 5) throw op[1];
151
+ return {
152
+ value: op[0] ? op[1] : void 0,
153
+ done: true
154
+ };
155
+ }
156
+ }
157
+ import Rollbar from 'rollbar';
158
+ export var RollbarDriver = /*#__PURE__*/ function() {
159
+ "use strict";
160
+ function RollbarDriver(rollbarConfig) {
161
+ _class_call_check(this, RollbarDriver);
162
+ _define_property(this, "rollbar", void 0);
163
+ this.rollbar = new Rollbar(rollbarConfig);
164
+ }
165
+ _create_class(RollbarDriver, [
166
+ {
167
+ key: "reportError",
168
+ value: function reportError(err, metadata) {
169
+ var _this = this;
170
+ return _async_to_generator(function() {
171
+ return _ts_generator(this, function(_state) {
172
+ _this.rollbar.error(err, metadata.request || {}, metadata.others);
173
+ return [
174
+ 2
175
+ ];
176
+ });
177
+ })();
178
+ }
179
+ },
180
+ {
181
+ key: "reportProblem",
182
+ value: function reportProblem(problem) {
183
+ var _this = this;
184
+ return _async_to_generator(function() {
185
+ return _ts_generator(this, function(_state) {
186
+ switch(_state.label){
187
+ case 0:
188
+ return [
189
+ 4,
190
+ new Promise(function(resolve) {
191
+ var _problem_privateMetadata, _problem_privateMetadata1;
192
+ _this.rollbar.error(((_problem_privateMetadata = problem.privateMetadata) === null || _problem_privateMetadata === void 0 ? void 0 : _problem_privateMetadata.error) || new Error(problem.message || problem.code), (_problem_privateMetadata1 = problem.privateMetadata) === null || _problem_privateMetadata1 === void 0 ? void 0 : _problem_privateMetadata1.request, problem.privateMetadata || {}, function(error) {
193
+ resolve(error);
194
+ });
195
+ })
196
+ ];
197
+ case 1:
198
+ _state.sent();
199
+ return [
200
+ 2
201
+ ];
202
+ }
203
+ });
204
+ })();
205
+ }
206
+ },
207
+ {
208
+ key: "setReporterPayload",
209
+ value: function setReporterPayload(payload) {
210
+ this.rollbar.configure({
211
+ payload: payload
212
+ });
213
+ }
214
+ }
215
+ ]);
216
+ return RollbarDriver;
217
+ }();
@@ -1 +1 @@
1
- {"version":3,"file":"slack.d.ts","sourceRoot":"","sources":["../../src/drivers/slack.ts"],"names":[],"mappings":"AACA,OAAO,EAAmC,KAAK,OAAO,EAAE,MAAM,oBAAoB,CAAA;AAGlF,OAAO,EAAU,KAAK,MAAM,EAAE,MAAM,cAAc,CAAA;AAClD,OAAO,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AAarD,qBAAa,WAAY,YAAW,QAAQ;IAC1C,OAAO,CAAC,WAAW,CAAQ;IAC3B,OAAO,CAAC,OAAO,CAA0B;IACzC,OAAO,CAAC,OAAO,CAAQ;gBAEX,WAAW,EAAE,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IAK/C,WAAW,CAAC,GAAG,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ;IAuB1C,aAAa,CAAC,OAAO,EAAE,OAAO;IA0BpC,kBAAkB,CAAC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;YAIjC,KAAK;IAanB,OAAO,CAAC,YAAY;CA8CrB"}
1
+ {"version":3,"file":"slack.d.ts","sourceRoot":"","sources":["../../src/drivers/slack.ts"],"names":[],"mappings":"AACA,OAAO,EACN,KAAK,OAAO,EAGZ,MAAM,oBAAoB,CAAA;AAG3B,OAAO,EAAE,KAAK,MAAM,EAAU,MAAM,cAAc,CAAA;AAClD,OAAO,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AAYrD,qBAAa,WAAY,YAAW,QAAQ;IAC3C,OAAO,CAAC,WAAW,CAAQ;IAC3B,OAAO,CAAC,OAAO,CAA0B;IACzC,OAAO,CAAC,OAAO,CAAQ;gBAEX,WAAW,EAAE,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IAK/C,WAAW,CAAC,GAAG,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ;IAuB1C,aAAa,CAAC,OAAO,EAAE,OAAO;IA+BpC,kBAAkB,CAAC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;YAIjC,KAAK;IAanB,OAAO,CAAC,YAAY;CA8CpB"}