@spinajs/queue 2.0.180 → 2.0.182
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/cjs/BlackHoleQueueClient.d.ts +11 -11
- package/lib/cjs/BlackHoleQueueClient.js +29 -29
- package/lib/cjs/BlackHoleQueueClient.js.map +1 -1
- package/lib/cjs/config/queue.d.ts +10 -10
- package/lib/cjs/config/queue.js +17 -17
- package/lib/cjs/decorators.d.ts +19 -19
- package/lib/cjs/decorators.js +35 -35
- package/lib/cjs/index.d.ts +38 -38
- package/lib/cjs/index.js +167 -167
- package/lib/cjs/index.js.map +1 -1
- package/lib/cjs/interfaces.d.ts +213 -213
- package/lib/cjs/interfaces.js +168 -168
- package/lib/cjs/interfaces.js.map +1 -1
- package/lib/cjs/migrations/Queue_2022_10_18_01_13_00.d.ts +5 -5
- package/lib/cjs/migrations/Queue_2022_10_18_01_13_00.js +35 -35
- package/lib/cjs/migrations/Queue_2022_10_18_01_13_00.js.map +1 -1
- package/lib/cjs/models/JobModel.d.ts +19 -19
- package/lib/cjs/models/JobModel.js +46 -46
- package/lib/cjs/models/JobModel.js.map +1 -1
- package/lib/mjs/BlackHoleQueueClient.d.ts +11 -11
- package/lib/mjs/BlackHoleQueueClient.js +26 -26
- package/lib/mjs/BlackHoleQueueClient.js.map +1 -1
- package/lib/mjs/config/queue.d.ts +10 -10
- package/lib/mjs/config/queue.js +15 -15
- package/lib/mjs/decorators.d.ts +19 -19
- package/lib/mjs/decorators.js +30 -30
- package/lib/mjs/index.d.ts +38 -38
- package/lib/mjs/index.js +150 -150
- package/lib/mjs/index.js.map +1 -1
- package/lib/mjs/interfaces.d.ts +213 -213
- package/lib/mjs/interfaces.js +156 -156
- package/lib/mjs/interfaces.js.map +1 -1
- package/lib/mjs/migrations/Queue_2022_10_18_01_13_00.d.ts +5 -5
- package/lib/mjs/migrations/Queue_2022_10_18_01_13_00.js +32 -32
- package/lib/mjs/migrations/Queue_2022_10_18_01_13_00.js.map +1 -1
- package/lib/mjs/models/JobModel.d.ts +19 -19
- package/lib/mjs/models/JobModel.js +43 -43
- package/lib/mjs/models/JobModel.js.map +1 -1
- package/lib/tsconfig.cjs.tsbuildinfo +1 -1
- package/lib/tsconfig.mjs.tsbuildinfo +1 -1
- package/package.json +6 -6
package/lib/cjs/index.js
CHANGED
|
@@ -1,168 +1,168 @@
|
|
|
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 __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
14
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
15
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
16
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
17
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
18
|
-
};
|
|
19
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
20
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
21
|
-
};
|
|
22
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
23
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
24
|
-
};
|
|
25
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.DefaultQueueService = void 0;
|
|
27
|
-
const exceptions_1 = require("@spinajs/exceptions");
|
|
28
|
-
const di_1 = require("@spinajs/di");
|
|
29
|
-
const log_1 = require("@spinajs/log");
|
|
30
|
-
const interfaces_js_1 = require("./interfaces.js");
|
|
31
|
-
const JobModel_js_1 = require("./models/JobModel.js");
|
|
32
|
-
const uuid_1 = require("uuid");
|
|
33
|
-
const configuration_1 = require("@spinajs/configuration");
|
|
34
|
-
const luxon_1 = require("luxon");
|
|
35
|
-
__exportStar(require("./BlackHoleQueueClient.js"), exports);
|
|
36
|
-
__exportStar(require("./interfaces.js"), exports);
|
|
37
|
-
__exportStar(require("./decorators.js"), exports);
|
|
38
|
-
__exportStar(require("./models/JobModel.js"), exports);
|
|
39
|
-
__exportStar(require("./migrations/Queue_2022_10_18_01_13_00.js"), exports);
|
|
40
|
-
let DefaultQueueService = class DefaultQueueService extends interfaces_js_1.QueueService {
|
|
41
|
-
async dispose() {
|
|
42
|
-
this.Connections.forEach(async (val) => {
|
|
43
|
-
await val.dispose();
|
|
44
|
-
});
|
|
45
|
-
this.Connections.clear();
|
|
46
|
-
}
|
|
47
|
-
async emit(event) {
|
|
48
|
-
const connections = this.getConnectionsForMessage(event);
|
|
49
|
-
for (let c of connections) {
|
|
50
|
-
if ((0, interfaces_js_1.isJob)(event)) {
|
|
51
|
-
const jModel = new JobModel_js_1.JobModel();
|
|
52
|
-
jModel.JobId = (0, uuid_1.v4)();
|
|
53
|
-
jModel.Name = event.Name;
|
|
54
|
-
jModel.Status = 'created';
|
|
55
|
-
jModel.Progress = 0;
|
|
56
|
-
jModel.Connection = c;
|
|
57
|
-
await jModel.insert();
|
|
58
|
-
event.JobId = jModel.JobId;
|
|
59
|
-
}
|
|
60
|
-
this.Connections.get(c).emit(event);
|
|
61
|
-
this.Log.trace(`Emitted message ${event.Name}, type: ${event.Type} to connection ${c}`);
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
async stopConsuming(event) {
|
|
65
|
-
this.getConnectionsForMessage(event).forEach((c) => this.Connections.get(c).unsubscribe(event));
|
|
66
|
-
}
|
|
67
|
-
/**
|
|
68
|
-
*
|
|
69
|
-
* Starts to consume events/jobs from connection
|
|
70
|
-
*
|
|
71
|
-
* NOTE: When consuming events, we can have multiple event types on same channel, couse
|
|
72
|
-
* subscribe function filters it out, and event can be handled in another subscription
|
|
73
|
-
*
|
|
74
|
-
* When consuming jobs, multiple jobs on same channel can have unpredictible behavior becouse
|
|
75
|
-
* job can be executed once even with multiple subscribers, so filtering it out
|
|
76
|
-
* prevents from executing it on other subscriptions
|
|
77
|
-
*
|
|
78
|
-
* @param event - event type to consume
|
|
79
|
-
* @param callback - optional callback when job is consumet, mandatory for events
|
|
80
|
-
* @param subscriptionId - optional subscription id if consuming durable events
|
|
81
|
-
* @param durable - is durable event, if not set, this value default to event decorator options
|
|
82
|
-
*/
|
|
83
|
-
async consume(event, callback, subscriptionId, durable) {
|
|
84
|
-
const options = Reflect.getMetadata('queue:options', event);
|
|
85
|
-
const self = this;
|
|
86
|
-
if (!options) {
|
|
87
|
-
throw new exceptions_1.InvalidArgument(`Type ${event.name} is not defined as Job or Event type. Use proper decorator to configure queue events`);
|
|
88
|
-
}
|
|
89
|
-
const { durable: eDurable } = options;
|
|
90
|
-
const connections = this.getConnectionsForMessage(event);
|
|
91
|
-
if ((eDurable || durable) && !subscriptionId) {
|
|
92
|
-
throw new exceptions_1.InvalidArgument('subscriptionId should be set when using durable events');
|
|
93
|
-
}
|
|
94
|
-
for (let c of connections) {
|
|
95
|
-
const conn = this.Connections.get(c);
|
|
96
|
-
if (!conn) {
|
|
97
|
-
throw new di_1.ServiceNotFound(`Queue connection ${c} not found. Please check your configuration before consuming events from this connection.`);
|
|
98
|
-
}
|
|
99
|
-
await conn.subscribe(event, async (e) => {
|
|
100
|
-
if (e.Name === event.name) {
|
|
101
|
-
const ev = di_1.DI.resolve(event);
|
|
102
|
-
ev.hydrate(e);
|
|
103
|
-
/**
|
|
104
|
-
* Handle job type of message
|
|
105
|
-
* To preserve result & handle delay, errors etc..
|
|
106
|
-
*/
|
|
107
|
-
if (ev instanceof interfaces_js_1.QueueJob) {
|
|
108
|
-
let jobResult = null;
|
|
109
|
-
const jModel = await JobModel_js_1.JobModel.where({ JobId: ev.JobId }).firstOrThrow(new exceptions_1.UnexpectedServerError(`No model found for jobId ${ev.JobId}`));
|
|
110
|
-
jModel.Status = 'executing';
|
|
111
|
-
jModel.ExecutedAt = luxon_1.DateTime.now();
|
|
112
|
-
try {
|
|
113
|
-
// update executing state
|
|
114
|
-
await jModel.update();
|
|
115
|
-
jobResult = await ev.execute(onProgress);
|
|
116
|
-
jModel.Result = jobResult;
|
|
117
|
-
jModel.Status = 'success';
|
|
118
|
-
jModel.FinishedAt = luxon_1.DateTime.now();
|
|
119
|
-
jModel.Progress = 100;
|
|
120
|
-
this.Log.trace(`Job ${event.name} processed with result ${JSON.stringify(jModel.Result)}`);
|
|
121
|
-
}
|
|
122
|
-
catch (err) {
|
|
123
|
-
this.Log.error(err, `Cannot execute job ${event.name}`);
|
|
124
|
-
jModel.Result = {
|
|
125
|
-
message: err.message,
|
|
126
|
-
};
|
|
127
|
-
jModel.Status = 'error';
|
|
128
|
-
}
|
|
129
|
-
await jModel.update();
|
|
130
|
-
async function onProgress(p) {
|
|
131
|
-
jModel.Progress = p;
|
|
132
|
-
await jModel.update();
|
|
133
|
-
self.Log.trace(`Job ${event.name}:${jModel.JobId} progress: ${p}%`);
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
if (!callback && ev instanceof interfaces_js_1.QueueEvent) {
|
|
137
|
-
throw new exceptions_1.InvalidArgument('when subscribing to events, callback cannot be null. Subscriber should handle event in callback function !');
|
|
138
|
-
}
|
|
139
|
-
this.Log.trace(`Queue message ${event.name} processed`);
|
|
140
|
-
if (callback) {
|
|
141
|
-
return callback(ev);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
}, subscriptionId, durable ?? eDurable ?? false);
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
/**
|
|
148
|
-
* Get specific queue client connection. If no connection param is provided, default is returned.
|
|
149
|
-
* @param connection - connection name to obtain
|
|
150
|
-
* @returns
|
|
151
|
-
*/
|
|
152
|
-
get(connection) {
|
|
153
|
-
return this.Connections.get(`${connection ?? this.Configuration.default}`);
|
|
154
|
-
}
|
|
155
|
-
};
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
DefaultQueueService
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
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 __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
14
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
15
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
16
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
17
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
18
|
+
};
|
|
19
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
20
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
21
|
+
};
|
|
22
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
23
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.DefaultQueueService = void 0;
|
|
27
|
+
const exceptions_1 = require("@spinajs/exceptions");
|
|
28
|
+
const di_1 = require("@spinajs/di");
|
|
29
|
+
const log_1 = require("@spinajs/log");
|
|
30
|
+
const interfaces_js_1 = require("./interfaces.js");
|
|
31
|
+
const JobModel_js_1 = require("./models/JobModel.js");
|
|
32
|
+
const uuid_1 = require("uuid");
|
|
33
|
+
const configuration_1 = require("@spinajs/configuration");
|
|
34
|
+
const luxon_1 = require("luxon");
|
|
35
|
+
__exportStar(require("./BlackHoleQueueClient.js"), exports);
|
|
36
|
+
__exportStar(require("./interfaces.js"), exports);
|
|
37
|
+
__exportStar(require("./decorators.js"), exports);
|
|
38
|
+
__exportStar(require("./models/JobModel.js"), exports);
|
|
39
|
+
__exportStar(require("./migrations/Queue_2022_10_18_01_13_00.js"), exports);
|
|
40
|
+
let DefaultQueueService = class DefaultQueueService extends interfaces_js_1.QueueService {
|
|
41
|
+
async dispose() {
|
|
42
|
+
this.Connections.forEach(async (val) => {
|
|
43
|
+
await val.dispose();
|
|
44
|
+
});
|
|
45
|
+
this.Connections.clear();
|
|
46
|
+
}
|
|
47
|
+
async emit(event) {
|
|
48
|
+
const connections = this.getConnectionsForMessage(event);
|
|
49
|
+
for (let c of connections) {
|
|
50
|
+
if ((0, interfaces_js_1.isJob)(event)) {
|
|
51
|
+
const jModel = new JobModel_js_1.JobModel();
|
|
52
|
+
jModel.JobId = (0, uuid_1.v4)();
|
|
53
|
+
jModel.Name = event.Name;
|
|
54
|
+
jModel.Status = 'created';
|
|
55
|
+
jModel.Progress = 0;
|
|
56
|
+
jModel.Connection = c;
|
|
57
|
+
await jModel.insert();
|
|
58
|
+
event.JobId = jModel.JobId;
|
|
59
|
+
}
|
|
60
|
+
this.Connections.get(c).emit(event);
|
|
61
|
+
this.Log.trace(`Emitted message ${event.Name}, type: ${event.Type} to connection ${c}`);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
async stopConsuming(event) {
|
|
65
|
+
this.getConnectionsForMessage(event).forEach((c) => this.Connections.get(c).unsubscribe(event));
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* Starts to consume events/jobs from connection
|
|
70
|
+
*
|
|
71
|
+
* NOTE: When consuming events, we can have multiple event types on same channel, couse
|
|
72
|
+
* subscribe function filters it out, and event can be handled in another subscription
|
|
73
|
+
*
|
|
74
|
+
* When consuming jobs, multiple jobs on same channel can have unpredictible behavior becouse
|
|
75
|
+
* job can be executed once even with multiple subscribers, so filtering it out
|
|
76
|
+
* prevents from executing it on other subscriptions
|
|
77
|
+
*
|
|
78
|
+
* @param event - event type to consume
|
|
79
|
+
* @param callback - optional callback when job is consumet, mandatory for events
|
|
80
|
+
* @param subscriptionId - optional subscription id if consuming durable events
|
|
81
|
+
* @param durable - is durable event, if not set, this value default to event decorator options
|
|
82
|
+
*/
|
|
83
|
+
async consume(event, callback, subscriptionId, durable) {
|
|
84
|
+
const options = Reflect.getMetadata('queue:options', event);
|
|
85
|
+
const self = this;
|
|
86
|
+
if (!options) {
|
|
87
|
+
throw new exceptions_1.InvalidArgument(`Type ${event.name} is not defined as Job or Event type. Use proper decorator to configure queue events`);
|
|
88
|
+
}
|
|
89
|
+
const { durable: eDurable } = options;
|
|
90
|
+
const connections = this.getConnectionsForMessage(event);
|
|
91
|
+
if ((eDurable || durable) && !subscriptionId) {
|
|
92
|
+
throw new exceptions_1.InvalidArgument('subscriptionId should be set when using durable events');
|
|
93
|
+
}
|
|
94
|
+
for (let c of connections) {
|
|
95
|
+
const conn = this.Connections.get(c);
|
|
96
|
+
if (!conn) {
|
|
97
|
+
throw new di_1.ServiceNotFound(`Queue connection ${c} not found. Please check your configuration before consuming events from this connection.`);
|
|
98
|
+
}
|
|
99
|
+
await conn.subscribe(event, async (e) => {
|
|
100
|
+
if (e.Name === event.name) {
|
|
101
|
+
const ev = di_1.DI.resolve(event);
|
|
102
|
+
ev.hydrate(e);
|
|
103
|
+
/**
|
|
104
|
+
* Handle job type of message
|
|
105
|
+
* To preserve result & handle delay, errors etc..
|
|
106
|
+
*/
|
|
107
|
+
if (ev instanceof interfaces_js_1.QueueJob) {
|
|
108
|
+
let jobResult = null;
|
|
109
|
+
const jModel = await JobModel_js_1.JobModel.where({ JobId: ev.JobId }).firstOrThrow(new exceptions_1.UnexpectedServerError(`No model found for jobId ${ev.JobId}`));
|
|
110
|
+
jModel.Status = 'executing';
|
|
111
|
+
jModel.ExecutedAt = luxon_1.DateTime.now();
|
|
112
|
+
try {
|
|
113
|
+
// update executing state
|
|
114
|
+
await jModel.update();
|
|
115
|
+
jobResult = await ev.execute(onProgress);
|
|
116
|
+
jModel.Result = jobResult;
|
|
117
|
+
jModel.Status = 'success';
|
|
118
|
+
jModel.FinishedAt = luxon_1.DateTime.now();
|
|
119
|
+
jModel.Progress = 100;
|
|
120
|
+
this.Log.trace(`Job ${event.name} processed with result ${JSON.stringify(jModel.Result)}`);
|
|
121
|
+
}
|
|
122
|
+
catch (err) {
|
|
123
|
+
this.Log.error(err, `Cannot execute job ${event.name}`);
|
|
124
|
+
jModel.Result = {
|
|
125
|
+
message: err.message,
|
|
126
|
+
};
|
|
127
|
+
jModel.Status = 'error';
|
|
128
|
+
}
|
|
129
|
+
await jModel.update();
|
|
130
|
+
async function onProgress(p) {
|
|
131
|
+
jModel.Progress = p;
|
|
132
|
+
await jModel.update();
|
|
133
|
+
self.Log.trace(`Job ${event.name}:${jModel.JobId} progress: ${p}%`);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
if (!callback && ev instanceof interfaces_js_1.QueueEvent) {
|
|
137
|
+
throw new exceptions_1.InvalidArgument('when subscribing to events, callback cannot be null. Subscriber should handle event in callback function !');
|
|
138
|
+
}
|
|
139
|
+
this.Log.trace(`Queue message ${event.name} processed`);
|
|
140
|
+
if (callback) {
|
|
141
|
+
return callback(ev);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}, subscriptionId, durable ?? eDurable ?? false);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* Get specific queue client connection. If no connection param is provided, default is returned.
|
|
149
|
+
* @param connection - connection name to obtain
|
|
150
|
+
* @returns
|
|
151
|
+
*/
|
|
152
|
+
get(connection) {
|
|
153
|
+
return this.Connections.get(`${connection ?? this.Configuration.default}`);
|
|
154
|
+
}
|
|
155
|
+
};
|
|
156
|
+
exports.DefaultQueueService = DefaultQueueService;
|
|
157
|
+
__decorate([
|
|
158
|
+
(0, log_1.Logger)('queue'),
|
|
159
|
+
__metadata("design:type", log_1.Log)
|
|
160
|
+
], DefaultQueueService.prototype, "Log", void 0);
|
|
161
|
+
__decorate([
|
|
162
|
+
(0, configuration_1.AutoinjectService)('queue.connections', interfaces_js_1.QueueClient),
|
|
163
|
+
__metadata("design:type", Map)
|
|
164
|
+
], DefaultQueueService.prototype, "Connections", void 0);
|
|
165
|
+
exports.DefaultQueueService = DefaultQueueService = __decorate([
|
|
166
|
+
(0, di_1.Injectable)(interfaces_js_1.QueueService)
|
|
167
|
+
], DefaultQueueService);
|
|
168
168
|
//# sourceMappingURL=index.js.map
|
package/lib/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
|