@slickgrid-universal/event-pub-sub 5.9.0 → 5.12.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/LICENSE +7 -2
- package/dist/cjs/eventPubSub.service.js +13 -10
- package/dist/cjs/eventPubSub.service.js.map +1 -1
- package/dist/cjs/types/eventNamingStyle.enum.js +5 -3
- package/dist/cjs/types/eventNamingStyle.enum.js.map +1 -1
- package/dist/esm/eventPubSub.service.js +15 -10
- package/dist/esm/eventPubSub.service.js.map +1 -1
- package/dist/esm/types/eventNamingStyle.enum.js +5 -3
- package/dist/esm/types/eventNamingStyle.enum.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/eventPubSub.service.d.ts.map +1 -1
- package/dist/types/types/basePubSubService.interface.d.ts +4 -4
- package/dist/types/types/basePubSubService.interface.d.ts.map +1 -1
- package/dist/types/types/eventNamingStyle.enum.d.ts +5 -3
- package/dist/types/types/eventNamingStyle.enum.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/eventPubSub.service.ts +25 -13
- package/src/index.ts +1 -1
- package/src/types/basePubSubService.interface.ts +10 -5
- package/src/types/eventNamingStyle.enum.ts +6 -3
package/LICENSE
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
Copyright (c) 2020-present,
|
|
1
|
+
Copyright (c) 2020-present, Ghislain B.
|
|
2
|
+
https://github.com/ghiscoding/slickgrid-universal
|
|
3
|
+
|
|
4
|
+
and the original author of SlickGrid
|
|
5
|
+
Michael Leibman, michael{dot}leibman{at}gmail{dot}com
|
|
6
|
+
http://github.com/mleibman/slickgrid
|
|
2
7
|
|
|
3
8
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
9
|
a copy of this software and associated documentation files (the
|
|
@@ -17,4 +22,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
17
22
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
23
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
24
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
25
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -58,19 +58,22 @@ class EventPubSubService {
|
|
|
58
58
|
*/
|
|
59
59
|
getEventNameByNamingConvention(inputEventName, eventNamePrefix) {
|
|
60
60
|
let outputEventName = '';
|
|
61
|
+
if (this.eventNamingStyle === eventNamingStyle_enum_js_1.EventNamingStyle.lowerCaseWithoutOnPrefix) {
|
|
62
|
+
outputEventName = `${eventNamePrefix}${inputEventName.replace(/^on/, '')}`;
|
|
63
|
+
}
|
|
64
|
+
else if (this.eventNamingStyle === eventNamingStyle_enum_js_1.EventNamingStyle.camelCaseWithExtraOnPrefix) {
|
|
65
|
+
outputEventName = `${eventNamePrefix}${inputEventName.replace(/^on/, 'onOn')}`;
|
|
66
|
+
}
|
|
61
67
|
switch (this.eventNamingStyle) {
|
|
62
68
|
case eventNamingStyle_enum_js_1.EventNamingStyle.camelCase:
|
|
63
|
-
outputEventName =
|
|
69
|
+
outputEventName = eventNamePrefix !== '' ? `${eventNamePrefix}${(0, utils_1.titleCase)(inputEventName)}` : inputEventName;
|
|
64
70
|
break;
|
|
65
71
|
case eventNamingStyle_enum_js_1.EventNamingStyle.kebabCase:
|
|
66
|
-
outputEventName =
|
|
72
|
+
outputEventName = eventNamePrefix !== '' ? `${eventNamePrefix}-${(0, utils_1.toKebabCase)(inputEventName)}` : (0, utils_1.toKebabCase)(inputEventName);
|
|
67
73
|
break;
|
|
68
74
|
case eventNamingStyle_enum_js_1.EventNamingStyle.lowerCase:
|
|
69
75
|
outputEventName = `${eventNamePrefix}${inputEventName}`.toLowerCase();
|
|
70
76
|
break;
|
|
71
|
-
case eventNamingStyle_enum_js_1.EventNamingStyle.lowerCaseWithoutOnPrefix:
|
|
72
|
-
outputEventName = `${eventNamePrefix}${inputEventName.replace(/^on/, '')}`.toLowerCase();
|
|
73
|
-
break;
|
|
74
77
|
}
|
|
75
78
|
return outputEventName;
|
|
76
79
|
}
|
|
@@ -89,7 +92,7 @@ class EventPubSubService {
|
|
|
89
92
|
publish(eventName, data, delay, externalizeEventCallback) {
|
|
90
93
|
const eventNameByConvention = this.getEventNameByNamingConvention(eventName, '');
|
|
91
94
|
if (delay) {
|
|
92
|
-
return new Promise(resolve => {
|
|
95
|
+
return new Promise((resolve) => {
|
|
93
96
|
window.clearTimeout(this._timer);
|
|
94
97
|
this._timer = window.setTimeout(() => resolve(this.dispatchCustomEvent(eventNameByConvention, data, true, true, externalizeEventCallback)), delay);
|
|
95
98
|
});
|
|
@@ -107,7 +110,7 @@ class EventPubSubService {
|
|
|
107
110
|
subscribe(eventNames, callback) {
|
|
108
111
|
eventNames = Array.isArray(eventNames) ? eventNames : [eventNames];
|
|
109
112
|
const subscriptions = [];
|
|
110
|
-
eventNames.forEach(eventName => {
|
|
113
|
+
eventNames.forEach((eventName) => {
|
|
111
114
|
const eventNameByConvention = this.getEventNameByNamingConvention(eventName, '');
|
|
112
115
|
// the event listener will return the data in the "event.detail", so we need to return its content to the final callback
|
|
113
116
|
// basically we substitute the "data" with "event.detail" so that the user ends up with only the "data" result
|
|
@@ -117,7 +120,7 @@ class EventPubSubService {
|
|
|
117
120
|
});
|
|
118
121
|
// return a subscription(s) that we can later unsubscribe
|
|
119
122
|
return {
|
|
120
|
-
unsubscribe: () => subscriptions.forEach(unsub => unsub())
|
|
123
|
+
unsubscribe: () => subscriptions.forEach((unsub) => unsub()),
|
|
121
124
|
};
|
|
122
125
|
}
|
|
123
126
|
/**
|
|
@@ -133,7 +136,7 @@ class EventPubSubService {
|
|
|
133
136
|
this._subscribedEvents.push({ name: eventNameByConvention, listener });
|
|
134
137
|
// return a subscription that we can later unsubscribe
|
|
135
138
|
return {
|
|
136
|
-
unsubscribe: () => this.unsubscribe(eventNameByConvention, listener)
|
|
139
|
+
unsubscribe: () => this.unsubscribe(eventNameByConvention, listener),
|
|
137
140
|
};
|
|
138
141
|
}
|
|
139
142
|
/**
|
|
@@ -176,7 +179,7 @@ class EventPubSubService {
|
|
|
176
179
|
// protected functions
|
|
177
180
|
// --------------------
|
|
178
181
|
removeSubscribedEventWhenFound(eventName, listener) {
|
|
179
|
-
const eventIdx = this._subscribedEvents.findIndex(evt => evt.name === eventName && evt.listener === listener);
|
|
182
|
+
const eventIdx = this._subscribedEvents.findIndex((evt) => evt.name === eventName && evt.listener === listener);
|
|
180
183
|
if (eventIdx >= 0) {
|
|
181
184
|
this._subscribedEvents.splice(eventIdx, 1);
|
|
182
185
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eventPubSub.service.js","sourceRoot":"","sources":["../../src/eventPubSub.service.ts"],"names":[],"mappings":";;;AAAA,sDAAoE;AAEpE,+EAAoE;AAQpE,MAAa,kBAAkB;IAO7B,IAAI,aAAa;QACf,OAAO,IAAI,CAAC,cAAc,CAAC;IAC7B,CAAC;IACD,IAAI,aAAa,CAAC,OAAgB;QAChC,IAAI,CAAC,cAAc,GAAG,OAAO,CAAC;IAChC,CAAC;IAED,IAAI,gBAAgB;QAClB,OAAO,IAAI,CAAC,iBAAiB,CAAC;IAChC,CAAC;IAED,IAAI,oBAAoB;QACtB,OAAO,IAAI,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;IACvE,CAAC;IAED,YAAY,aAAuB;QApBzB,sBAAiB,GAAkB,EAAE,CAAC;QAGhD,qBAAgB,GAAqB,2CAAgB,CAAC,SAAS,CAAC;QAkB9D,2BAA2B;QAC3B,6GAA6G;QAC7G,IAAI,CAAC,cAAc,GAAG,aAAa,IAAI,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IACvE,CAAC;IAED,OAAO;QACL,IAAI,CAAC,cAAc,EAAE,CAAC;QACtB,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;QAC5B,MAAM,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACjC,IAAI,CAAC,cAAc,EAAE,MAAM,EAAE,CAAC;QAC9B,IAAI,CAAC,cAAc,GAAG,IAAW,CAAC;IACpC,CAAC;IAED;;;;;;;;OAQG;IACH,mBAAmB,
|
|
1
|
+
{"version":3,"file":"eventPubSub.service.js","sourceRoot":"","sources":["../../src/eventPubSub.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,13 +3,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.EventNamingStyle = void 0;
|
|
4
4
|
var EventNamingStyle;
|
|
5
5
|
(function (EventNamingStyle) {
|
|
6
|
-
/** Event name showing in Camel Case, so "onValidationError" would stay as "onValidationError" */
|
|
6
|
+
/** Event name showing in Camel Case, so "onValidationError" would stay as "onValidationError" (i.e. Angular) */
|
|
7
7
|
EventNamingStyle["camelCase"] = "camelCase";
|
|
8
|
-
/** Event name showing in
|
|
8
|
+
/** Event name showing in Camel Case but with an extra (duplicate) "on" prefix, so "onValidationError" would become "onOnValidationError" (i.e. Slickgrid-Vue). */
|
|
9
|
+
EventNamingStyle["camelCaseWithExtraOnPrefix"] = "camelCaseWithExtraOnPrefix";
|
|
10
|
+
/** Event name showing in Kebab Case, so "onValidationError" would become "on-validation-error" (i.e. Aurelia-Slickgrid) */
|
|
9
11
|
EventNamingStyle["kebabCase"] = "kebabCase";
|
|
10
12
|
/** Event name showing all in lowercase, so "onValidationError" would become "onvalidationerror" */
|
|
11
13
|
EventNamingStyle["lowerCase"] = "lowerCase";
|
|
12
|
-
/** Event name showing all in lowercase but without the "on" prefix, so "onValidationError" would
|
|
14
|
+
/** Event name showing all in lowercase but without the "on" prefix, so "onValidationError" would be "validationerror" (i.e. Salesforce). */
|
|
13
15
|
EventNamingStyle["lowerCaseWithoutOnPrefix"] = "lowerCaseWithoutOnPrefix";
|
|
14
16
|
})(EventNamingStyle || (exports.EventNamingStyle = EventNamingStyle = {}));
|
|
15
17
|
//# sourceMappingURL=eventNamingStyle.enum.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eventNamingStyle.enum.js","sourceRoot":"","sources":["../../../src/types/eventNamingStyle.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,
|
|
1
|
+
{"version":3,"file":"eventNamingStyle.enum.js","sourceRoot":"","sources":["../../../src/types/eventNamingStyle.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,gBAeX;AAfD,WAAY,gBAAgB;IAC1B,gHAAgH;IAChH,2CAAuB,CAAA;IAEvB,kKAAkK;IAClK,6EAAyD,CAAA;IAEzD,2HAA2H;IAC3H,2CAAuB,CAAA;IAEvB,mGAAmG;IACnG,2CAAuB,CAAA;IAEvB,4IAA4I;IAC5I,yEAAqD,CAAA;AACvD,CAAC,EAfW,gBAAgB,gCAAhB,gBAAgB,QAe3B"}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { titleCase, toKebabCase } from '@slickgrid-universal/utils';
|
|
2
|
+
import {} from './types/basePubSubService.interface.js';
|
|
2
3
|
import { EventNamingStyle } from './types/eventNamingStyle.enum.js';
|
|
4
|
+
import {} from './types/eventSubscription.interface.js';
|
|
3
5
|
export class EventPubSubService {
|
|
4
6
|
get elementSource() {
|
|
5
7
|
return this._elementSource;
|
|
@@ -55,19 +57,22 @@ export class EventPubSubService {
|
|
|
55
57
|
*/
|
|
56
58
|
getEventNameByNamingConvention(inputEventName, eventNamePrefix) {
|
|
57
59
|
let outputEventName = '';
|
|
60
|
+
if (this.eventNamingStyle === EventNamingStyle.lowerCaseWithoutOnPrefix) {
|
|
61
|
+
outputEventName = `${eventNamePrefix}${inputEventName.replace(/^on/, '')}`;
|
|
62
|
+
}
|
|
63
|
+
else if (this.eventNamingStyle === EventNamingStyle.camelCaseWithExtraOnPrefix) {
|
|
64
|
+
outputEventName = `${eventNamePrefix}${inputEventName.replace(/^on/, 'onOn')}`;
|
|
65
|
+
}
|
|
58
66
|
switch (this.eventNamingStyle) {
|
|
59
67
|
case EventNamingStyle.camelCase:
|
|
60
|
-
outputEventName =
|
|
68
|
+
outputEventName = eventNamePrefix !== '' ? `${eventNamePrefix}${titleCase(inputEventName)}` : inputEventName;
|
|
61
69
|
break;
|
|
62
70
|
case EventNamingStyle.kebabCase:
|
|
63
|
-
outputEventName =
|
|
71
|
+
outputEventName = eventNamePrefix !== '' ? `${eventNamePrefix}-${toKebabCase(inputEventName)}` : toKebabCase(inputEventName);
|
|
64
72
|
break;
|
|
65
73
|
case EventNamingStyle.lowerCase:
|
|
66
74
|
outputEventName = `${eventNamePrefix}${inputEventName}`.toLowerCase();
|
|
67
75
|
break;
|
|
68
|
-
case EventNamingStyle.lowerCaseWithoutOnPrefix:
|
|
69
|
-
outputEventName = `${eventNamePrefix}${inputEventName.replace(/^on/, '')}`.toLowerCase();
|
|
70
|
-
break;
|
|
71
76
|
}
|
|
72
77
|
return outputEventName;
|
|
73
78
|
}
|
|
@@ -86,7 +91,7 @@ export class EventPubSubService {
|
|
|
86
91
|
publish(eventName, data, delay, externalizeEventCallback) {
|
|
87
92
|
const eventNameByConvention = this.getEventNameByNamingConvention(eventName, '');
|
|
88
93
|
if (delay) {
|
|
89
|
-
return new Promise(resolve => {
|
|
94
|
+
return new Promise((resolve) => {
|
|
90
95
|
window.clearTimeout(this._timer);
|
|
91
96
|
this._timer = window.setTimeout(() => resolve(this.dispatchCustomEvent(eventNameByConvention, data, true, true, externalizeEventCallback)), delay);
|
|
92
97
|
});
|
|
@@ -104,7 +109,7 @@ export class EventPubSubService {
|
|
|
104
109
|
subscribe(eventNames, callback) {
|
|
105
110
|
eventNames = Array.isArray(eventNames) ? eventNames : [eventNames];
|
|
106
111
|
const subscriptions = [];
|
|
107
|
-
eventNames.forEach(eventName => {
|
|
112
|
+
eventNames.forEach((eventName) => {
|
|
108
113
|
const eventNameByConvention = this.getEventNameByNamingConvention(eventName, '');
|
|
109
114
|
// the event listener will return the data in the "event.detail", so we need to return its content to the final callback
|
|
110
115
|
// basically we substitute the "data" with "event.detail" so that the user ends up with only the "data" result
|
|
@@ -114,7 +119,7 @@ export class EventPubSubService {
|
|
|
114
119
|
});
|
|
115
120
|
// return a subscription(s) that we can later unsubscribe
|
|
116
121
|
return {
|
|
117
|
-
unsubscribe: () => subscriptions.forEach(unsub => unsub())
|
|
122
|
+
unsubscribe: () => subscriptions.forEach((unsub) => unsub()),
|
|
118
123
|
};
|
|
119
124
|
}
|
|
120
125
|
/**
|
|
@@ -130,7 +135,7 @@ export class EventPubSubService {
|
|
|
130
135
|
this._subscribedEvents.push({ name: eventNameByConvention, listener });
|
|
131
136
|
// return a subscription that we can later unsubscribe
|
|
132
137
|
return {
|
|
133
|
-
unsubscribe: () => this.unsubscribe(eventNameByConvention, listener)
|
|
138
|
+
unsubscribe: () => this.unsubscribe(eventNameByConvention, listener),
|
|
134
139
|
};
|
|
135
140
|
}
|
|
136
141
|
/**
|
|
@@ -173,7 +178,7 @@ export class EventPubSubService {
|
|
|
173
178
|
// protected functions
|
|
174
179
|
// --------------------
|
|
175
180
|
removeSubscribedEventWhenFound(eventName, listener) {
|
|
176
|
-
const eventIdx = this._subscribedEvents.findIndex(evt => evt.name === eventName && evt.listener === listener);
|
|
181
|
+
const eventIdx = this._subscribedEvents.findIndex((evt) => evt.name === eventName && evt.listener === listener);
|
|
177
182
|
if (eventIdx >= 0) {
|
|
178
183
|
this._subscribedEvents.splice(eventIdx, 1);
|
|
179
184
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eventPubSub.service.js","sourceRoot":"","sources":["../../src/eventPubSub.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"eventPubSub.service.js","sourceRoot":"","sources":["../../src/eventPubSub.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AACpE,OAAO,EAA0B,MAAM,wCAAwC,CAAC;AAChF,OAAO,EAAE,gBAAgB,EAAE,MAAM,kCAAkC,CAAC;AACpE,OAAO,EAA6C,MAAM,wCAAwC,CAAC;AAOnG,MAAM,OAAO,kBAAkB;IAO7B,IAAI,aAAa;QACf,OAAO,IAAI,CAAC,cAAc,CAAC;IAC7B,CAAC;IACD,IAAI,aAAa,CAAC,OAAgB;QAChC,IAAI,CAAC,cAAc,GAAG,OAAO,CAAC;IAChC,CAAC;IAED,IAAI,gBAAgB;QAClB,OAAO,IAAI,CAAC,iBAAiB,CAAC;IAChC,CAAC;IAED,IAAI,oBAAoB;QACtB,OAAO,IAAI,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;IACvE,CAAC;IAED,YAAY,aAAuB;QApBzB,sBAAiB,GAAkB,EAAE,CAAC;QAGhD,qBAAgB,GAAqB,gBAAgB,CAAC,SAAS,CAAC;QAkB9D,2BAA2B;QAC3B,6GAA6G;QAC7G,IAAI,CAAC,cAAc,GAAG,aAAa,IAAI,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IACvE,CAAC;IAED,OAAO;QACL,IAAI,CAAC,cAAc,EAAE,CAAC;QACtB,IAAI,CAAC,iBAAiB,GAAG,EAAE,CAAC;QAC5B,MAAM,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACjC,IAAI,CAAC,cAAc,EAAE,MAAM,EAAE,CAAC;QAC9B,IAAI,CAAC,cAAc,GAAG,IAAW,CAAC;IACpC,CAAC;IAED;;;;;;;;OAQG;IACH,mBAAmB,CACjB,SAAiB,EACjB,IAAQ,EACR,UAAU,GAAG,IAAI,EACjB,YAAY,GAAG,IAAI,EACnB,wBAA6C;QAE7C,MAAM,SAAS,GAAuB,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,YAAY,EAAE,CAAC;QACxF,IAAI,IAAI,EAAE,CAAC;YACT,SAAS,CAAC,MAAM,GAAG,IAAI,CAAC;QAC1B,CAAC;QACD,MAAM,SAAS,GAAG,IAAI,WAAW,CAAI,SAAS,EAAE,SAAS,CAAC,CAAC;QAC3D,IAAI,OAAO,wBAAwB,KAAK,UAAU,EAAE,CAAC;YACnD,wBAAwB,CAAC,SAAS,CAAC,CAAC;QACtC,CAAC;QACD,OAAO,IAAI,CAAC,cAAc,EAAE,aAAa,CAAC,SAAS,CAAC,CAAC;IACvD,CAAC;IAED;;;;;OAKG;IACH,8BAA8B,CAAC,cAAsB,EAAE,eAAuB;QAC5E,IAAI,eAAe,GAAG,EAAE,CAAC;QAEzB,IAAI,IAAI,CAAC,gBAAgB,KAAK,gBAAgB,CAAC,wBAAwB,EAAE,CAAC;YACxE,eAAe,GAAG,GAAG,eAAe,GAAG,cAAc,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,EAAE,CAAC;QAC7E,CAAC;aAAM,IAAI,IAAI,CAAC,gBAAgB,KAAK,gBAAgB,CAAC,0BAA0B,EAAE,CAAC;YACjF,eAAe,GAAG,GAAG,eAAe,GAAG,cAAc,CAAC,OAAO,CAAC,KAAK,EAAE,MAAM,CAAC,EAAE,CAAC;QACjF,CAAC;QAED,QAAQ,IAAI,CAAC,gBAAgB,EAAE,CAAC;YAC9B,KAAK,gBAAgB,CAAC,SAAS;gBAC7B,eAAe,GAAG,eAAe,KAAK,EAAE,CAAC,CAAC,CAAC,GAAG,eAAe,GAAG,SAAS,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC,CAAC,cAAc,CAAC;gBAC7G,MAAM;YACR,KAAK,gBAAgB,CAAC,SAAS;gBAC7B,eAAe,GAAG,eAAe,KAAK,EAAE,CAAC,CAAC,CAAC,GAAG,eAAe,IAAI,WAAW,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,cAAc,CAAC,CAAC;gBAC7H,MAAM;YACR,KAAK,gBAAgB,CAAC,SAAS;gBAC7B,eAAe,GAAG,GAAG,eAAe,GAAG,cAAc,EAAE,CAAC,WAAW,EAAE,CAAC;gBACtE,MAAM;QACV,CAAC;QACD,OAAO,eAAe,CAAC;IACzB,CAAC;IAED;;;;;;;;;;;OAWG;IACH,OAAO,CAAU,SAAiB,EAAE,IAAQ,EAAE,KAAc,EAAE,wBAA6C;QACzG,MAAM,qBAAqB,GAAG,IAAI,CAAC,8BAA8B,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;QAEjF,IAAI,KAAK,EAAE,CAAC;YACV,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE;gBAC7B,MAAM,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;gBACjC,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,UAAU,CAC7B,GAAG,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,mBAAmB,CAAI,qBAAqB,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,wBAAwB,CAAC,CAAC,EAC7G,KAAK,CACN,CAAC;YACJ,CAAC,CAAC,CAAC;QACL,CAAC;aAAM,CAAC;YACN,OAAO,IAAI,CAAC,mBAAmB,CAAI,qBAAqB,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,wBAAwB,CAAC,CAAC;QACxG,CAAC;IACH,CAAC;IAED;;;;;OAKG;IACH,SAAS,CAAU,UAA6B,EAAE,QAA2B;QAC3E,UAAU,GAAG,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC;QACnE,MAAM,aAAa,GAAsB,EAAE,CAAC;QAE5C,UAAU,CAAC,OAAO,CAAC,CAAC,SAAS,EAAE,EAAE;YAC/B,MAAM,qBAAqB,GAAG,IAAI,CAAC,8BAA8B,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;YAEjF,wHAAwH;YACxH,8GAA8G;YAC9G,IAAI,CAAC,cAAc,CAAC,gBAAgB,CAAC,qBAAqB,EAAE,CAAC,KAAyB,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,MAAW,CAAC,CAAC,CAAC;YACnI,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAC,CAAC;YACjF,aAAa,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,WAAW,CAAC,qBAAqB,EAAE,QAAiB,CAAC,CAAC,CAAC;QACvF,CAAC,CAAC,CAAC;QAEH,yDAAyD;QACzD,OAAO;YACL,WAAW,EAAE,GAAG,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,EAAE,CAAC;SAC7D,CAAC;IACJ,CAAC;IAED;;;;;;OAMG;IACH,cAAc,CAAU,SAAiB,EAAE,QAA6C;QACtF,MAAM,qBAAqB,GAAG,IAAI,CAAC,8BAA8B,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;QACjF,IAAI,CAAC,cAAc,CAAC,gBAAgB,CAAC,qBAAqB,EAAE,QAAQ,CAAC,CAAC;QACtE,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,QAAQ,EAAE,CAAC,CAAC;QAEvE,sDAAsD;QACtD,OAAO;YACL,WAAW,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,WAAW,CAAC,qBAAqB,EAAE,QAAiB,CAAC;SAC9E,CAAC;IACJ,CAAC;IAED;;;;;;OAMG;IACH,WAAW,CAAU,SAAiB,EAAE,QAAiD,EAAE,yBAAyB,GAAG,IAAI;QACzH,MAAM,qBAAqB,GAAG,IAAI,CAAC,8BAA8B,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;QACjF,IAAI,CAAC,cAAc,CAAC,mBAAmB,CAAC,qBAAqB,EAAE,QAAQ,CAAC,CAAC;QACzE,IAAI,yBAAyB,EAAE,CAAC;YAC9B,IAAI,CAAC,8BAA8B,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;QAC3D,CAAC;IACH,CAAC;IAED,kEAAkE;IAClE,cAAc,CAAC,aAAmC;QAChD,IAAI,KAAK,CAAC,OAAO,CAAC,aAAa,CAAC,EAAE,CAAC;YACjC,IAAI,YAAY,CAAC;YACjB,GAAG,CAAC;gBACF,YAAY,GAAG,aAAa,CAAC,GAAG,EAAE,CAAC;gBACnC,IAAI,YAAY,EAAE,OAAO,EAAE,CAAC;oBAC1B,YAAY,CAAC,OAAO,EAAE,CAAC;gBACzB,CAAC;qBAAM,IAAI,YAAY,EAAE,WAAW,EAAE,CAAC;oBACrC,YAAY,CAAC,WAAW,EAAE,CAAC;gBAC7B,CAAC;YACH,CAAC,QAAQ,YAAY,EAAE;QACzB,CAAC;aAAM,CAAC;YACN,IAAI,WAAW,GAAG,IAAI,CAAC,iBAAiB,CAAC,GAAG,EAAE,CAAC;YAC/C,OAAO,WAAW,EAAE,CAAC;gBACnB,IAAI,CAAC,WAAW,CAAC,WAAW,CAAC,IAAI,EAAE,WAAW,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;gBAChE,WAAW,GAAG,IAAI,CAAC,iBAAiB,CAAC,GAAG,EAAE,CAAC;YAC7C,CAAC;QACH,CAAC;IACH,CAAC;IAED,KAAK;IACL,sBAAsB;IACtB,uBAAuB;IAEb,8BAA8B,CAAI,SAAiB,EAAE,QAAiD;QAC9G,MAAM,QAAQ,GAAG,IAAI,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,IAAI,KAAK,SAAS,IAAI,GAAG,CAAC,QAAQ,KAAK,QAAQ,CAAC,CAAC;QAChH,IAAI,QAAQ,IAAI,CAAC,EAAE,CAAC;YAClB,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC;QAC7C,CAAC;IACH,CAAC;CACF"}
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
export var EventNamingStyle;
|
|
2
2
|
(function (EventNamingStyle) {
|
|
3
|
-
/** Event name showing in Camel Case, so "onValidationError" would stay as "onValidationError" */
|
|
3
|
+
/** Event name showing in Camel Case, so "onValidationError" would stay as "onValidationError" (i.e. Angular) */
|
|
4
4
|
EventNamingStyle["camelCase"] = "camelCase";
|
|
5
|
-
/** Event name showing in
|
|
5
|
+
/** Event name showing in Camel Case but with an extra (duplicate) "on" prefix, so "onValidationError" would become "onOnValidationError" (i.e. Slickgrid-Vue). */
|
|
6
|
+
EventNamingStyle["camelCaseWithExtraOnPrefix"] = "camelCaseWithExtraOnPrefix";
|
|
7
|
+
/** Event name showing in Kebab Case, so "onValidationError" would become "on-validation-error" (i.e. Aurelia-Slickgrid) */
|
|
6
8
|
EventNamingStyle["kebabCase"] = "kebabCase";
|
|
7
9
|
/** Event name showing all in lowercase, so "onValidationError" would become "onvalidationerror" */
|
|
8
10
|
EventNamingStyle["lowerCase"] = "lowerCase";
|
|
9
|
-
/** Event name showing all in lowercase but without the "on" prefix, so "onValidationError" would
|
|
11
|
+
/** Event name showing all in lowercase but without the "on" prefix, so "onValidationError" would be "validationerror" (i.e. Salesforce). */
|
|
10
12
|
EventNamingStyle["lowerCaseWithoutOnPrefix"] = "lowerCaseWithoutOnPrefix";
|
|
11
13
|
})(EventNamingStyle || (EventNamingStyle = {}));
|
|
12
14
|
//# sourceMappingURL=eventNamingStyle.enum.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eventNamingStyle.enum.js","sourceRoot":"","sources":["../../../src/types/eventNamingStyle.enum.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,
|
|
1
|
+
{"version":3,"file":"eventNamingStyle.enum.js","sourceRoot":"","sources":["../../../src/types/eventNamingStyle.enum.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,gBAeX;AAfD,WAAY,gBAAgB;IAC1B,gHAAgH;IAChH,2CAAuB,CAAA;IAEvB,kKAAkK;IAClK,6EAAyD,CAAA;IAEzD,2HAA2H;IAC3H,2CAAuB,CAAA;IAEvB,mGAAmG;IACnG,2CAAuB,CAAA;IAEvB,4IAA4I;IAC5I,yEAAqD,CAAA;AACvD,CAAC,EAfW,gBAAgB,KAAhB,gBAAgB,QAe3B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.6.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../utils/dist/types/models/interfaces.d.ts","../../utils/dist/types/models/types.d.ts","../../utils/dist/types/domUtils.d.ts","../../utils/dist/types/nodeExtend.d.ts","../../utils/dist/types/stripTagsUtil.d.ts","../../utils/dist/types/utils.d.ts","../../utils/dist/types/index.d.ts","../src/types/eventSubscription.interface.ts","../src/types/basePubSubService.interface.ts","../src/types/eventNamingStyle.enum.ts","../src/eventPubSub.service.ts","../src/index.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.19.6/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.7.7/node_modules/@types/node/ts5.6/index.d.ts"],"fileIdsList":[[68,108,111],[68,110,111],[68,111,116,146],[68,111,112,117,123,124,131,143,154],[68,111,112,113,123,131],[68,111],[63,64,65,68,111],[68,111,114,155],[68,111,115,116,124,132],[68,111,116,143,151],[68,111,117,119,123,131],[68,110,111,118],[68,111,119,120],[68,111,123],[68,111,121,123],[68,110,111,123],[68,111,123,124,125,143,154],[68,111,123,124,125,138,143,146],[68,106,111,159],[68,106,111,119,123,126,131,143,154],[68,111,123,124,126,127,131,143,151,154],[68,111,126,128,143,151,154],[68,111,123,129],[68,111,130,154,159],[68,111,119,123,131,143],[68,111,132],[68,111,133],[68,110,111,134],[68,108,109,110,111,112,113,114,115,116,117,118,119,120,121,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160],[68,111,136],[68,111,137],[68,111,123,138,139],[68,111,138,140,155,157],[68,111,123,143,144,145,146],[68,111,143,145],[68,111,143,144],[68,111,146],[68,111,147],[68,108,111,143],[68,111,123,149,150],[68,111,149,150],[68,111,116,131,143,151],[68,111,152],[111],[66,67,68,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160],[68,111,131,153],[68,111,126,137,154],[68,111,116,155],[68,111,143,156],[68,111,130,157],[68,111,158],[68,111,116,123,125,134,143,154,157,159],[68,111,143,160],[68,78,82,111,154],[68,78,111,143,154],[68,73,111],[68,75,78,111,151,154],[68,111,131,151],[68,111,161],[68,73,111,161],[68,75,78,111,131,154],[68,70,71,74,77,111,123,143,154],[68,78,85,111],[68,70,76,111],[68,78,99,100,111],[68,74,78,111,146,154,161],[68,99,111,161],[68,72,73,111,161],[68,78,111],[68,72,73,74,75,76,77,78,79,80,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,111],[68,78,93,111],[68,78,85,86,111],[68,76,78,86,87,111],[68,77,111],[68,70,73,78,111],[68,78,82,86,87,111],[68,82,111],[68,76,78,81,111,154],[68,70,75,78,85,111],[68,111,143],[68,73,78,99,111,159,161],[57,58,59,60,68,111],[58,59,60,61,68,111],[58,68,111],[51,52,68,111],[51,52,53,54,55,56,68,111],[52,68,111]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"03e026f9347b0725cdcce9ca95ffad1531c4817cef7232f8b46f91e818e2ac1c","504172f31e7616ece67ba012c54b6b33d3c4db9b2b812c9803caba1e9040e5c5","0127b9aafc00bf82cdcb6792b6f6acd5e4495e5caa691c658bea260fc139185d","f5d11e5550af01aecc9f000622eebf5057a6c80a89a541144d0a31f469cd57ca","3f55f6bb22c907b4e15d440a92363632b3f6553acdeec013f34d1b505ee6c9ed","c12bedbb16b2aabbbbb1ad0e595f22a1687052927b17b4c3e719e1c826464279","751af699ec3894dcd64e36726617167d300138d7000d1a628645c09add0a4970",{"version":"843c8ac23a2d77142ea46b0717183d19dfb551df57d1f0493435a12d57e12d88","signature":"c7fb83efb86b29016744244e65b37430afdd948e025d00aaf0e404dc08a65e02"},{"version":"eff54cef27131934a83c69b4aa984187eb2636b4ef8c6ef143a252813e7ae31b","signature":"53e84a3712dc205cd97d2a697c082aacd51a5efa235514815f73558bb8382ed9"},{"version":"c4daa7918c267d474e0d269925f655f78fc52a7e2e6c12c7f6a00edd60ca3fe4","signature":"9ab9f34f15c13915347496839012509429a40a6f2f1bac0758177ff0426f9deb"},{"version":"0dad80b465e5a046b06f0d1dcc3e349ac0556b5087175c28ca55ea3f77c77b07","signature":"518fd61680714fc20f05f2482929fb2e6afac758de65094695661a476130d2ad"},{"version":"53d46dfa983a087668207e92669ad5dd6ca8ce8d62ce9263bab29267e65ec783","signature":"7c26042cf702f41b11aec9f77047040f9f0d94f4cb2d6709ff2be144dd3710f4"},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"2d1319e6b5d0efd8c5eae07eb864a00102151e8b9afddd2d45db52e9aae002c4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"81184fe8e67d78ac4e5374650f0892d547d665d77da2b2f544b5d84729c4a15d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f6114eb1e8f70ec08816bdaa6ec740a0a7a01f25743e36f655f00157be394374","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0","impliedFormat":1},{"version":"53eac70430b30089a3a1959d8306b0f9cfaf0de75224b68ef25243e0b5ad1ca3","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"46e07db372dd75edc1a26e68f16d1b7ffb34b7ab3db5cdb3e391a3604ad7bb7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"24642567d3729bcc545bacb65ee7c0db423400c7f1ef757cab25d05650064f98","impliedFormat":1},{"version":"e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"875928df2f3e9a3aed4019539a15d04ff6140a06df6cd1b2feb836d22a81eaca","affectsGlobalScope":true,"impliedFormat":1},{"version":"20b97c3368b1a63d2156deea35d03b125bb07908906eb35e0438042a3bbb3e71","impliedFormat":1},{"version":"02e73584132025781e9ffa7beef9d58ee563954c592eb563dc724ebbfb7424eb","impliedFormat":1},{"version":"ad05f01340829d96e2d85506eaab585ca7a5b20d687448d35f97e2b0855399d8","impliedFormat":1},{"version":"fa56be9b96f747e93b895d8dc2aa4fb9f0816743e6e2abb9d60705e88d4743a2","impliedFormat":1},{"version":"8257c55ff6bff6169142a35fce6811b511d857b4ae4f522cdb6ce20fd2116b2c","impliedFormat":1},{"version":"6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6","impliedFormat":1},{"version":"3a9e5dddbd6ca9507d0c06a557535ba2224a94a2b0f3e146e8215f93b7e5b3a8","affectsGlobalScope":true,"impliedFormat":1},{"version":"94c4187083503a74f4544503b5a30e2bd7af0032dc739b0c9a7ce87f8bddc7b9","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"3c36ab47df4668254ccc170fc42e7d5116fd86a7e408d8dc220e559837cd2bbb","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f6abdaf8764ef01a552a958f45e795b5e79153b87ddad3af5264b86d2681b72","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","impliedFormat":1},{"version":"4de73e132bf47437c56b1e8416c60d9d517c8ba3822e7c623b54d4300834dd37","impliedFormat":1},{"version":"e432b0e3761ca9ba734bdd41e19a75fec1454ca8e9769bfdf8b31011854cf06a","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","impliedFormat":1},{"version":"a8f06c2382a30b7cb89ad2dfc48fc3b2b490f3dafcd839dadc008e4e5d57031d","impliedFormat":1},{"version":"553870e516f8c772b89f3820576152ebc70181d7994d96917bb943e37da7f8a7","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"745c4240220559bd340c8aeb6e3c5270a709d3565e934dc22a69c304703956bc","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"cca97c55398b8699fa3a96ef261b01d200ed2a44d2983586ab1a81d7d7b23cd9","affectsGlobalScope":true,"impliedFormat":1},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"f59493f68eade5200559e5016b5855f7d12e6381eb6cab9ad8a379af367b3b2d","impliedFormat":1},{"version":"125e3472965f529de239d2bc85b54579fed8e0b060d1d04de6576fb910a6ec7f","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"6512c499b32226c5a686ab98f5b33ae15bdebd6b9f3b60f80eeadd95e358f02c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a5c09990a37469b0311a92ce8feeb8682e83918723aedbd445bd7a0f510eaaa3","impliedFormat":1},{"version":"6b29aea17044029b257e5bd4e3e4f765cd72b8d3c11c753f363ab92cc3f9f947","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"d008cf1330c86b37a8128265c80795397c287cecff273bc3ce3a4883405f5112","affectsGlobalScope":true,"impliedFormat":1},{"version":"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539","impliedFormat":1},{"version":"171fd8807643c46a9d17e843959abdf10480d57d60d38d061fb44a4c8d4a8cc4","impliedFormat":1}],"root":[[58,62]],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationDir":"./types","declarationMap":true,"emitDecoratorMetadata":true,"experimentalDecorators":true,"importHelpers":true,"isolatedDeclarations":true,"module":99,"noEmitOnError":true,"noImplicitReturns":true,"outDir":"./esm","preserveConstEnums":true,"rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":8},"referencedMap":[[108,1],[109,1],[110,2],[111,3],[112,4],[113,5],[63,6],[66,7],[64,6],[65,6],[114,8],[115,9],[116,10],[117,11],[118,12],[119,13],[120,13],[122,14],[121,15],[123,16],[124,17],[125,18],[107,19],[126,20],[127,21],[128,22],[129,23],[130,24],[131,25],[132,26],[133,27],[134,28],[135,29],[136,30],[137,31],[138,32],[139,32],[140,33],[141,6],[142,6],[143,34],[145,35],[144,36],[146,37],[147,38],[148,39],[149,40],[150,41],[151,42],[152,43],[68,44],[67,6],[161,45],[153,46],[154,47],[155,48],[156,49],[157,50],[158,51],[159,52],[160,53],[69,6],[49,6],[50,6],[9,6],[11,6],[10,6],[2,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[18,6],[19,6],[3,6],[20,6],[4,6],[21,6],[25,6],[22,6],[23,6],[24,6],[26,6],[27,6],[28,6],[5,6],[29,6],[30,6],[31,6],[32,6],[6,6],[36,6],[33,6],[34,6],[35,6],[37,6],[7,6],[38,6],[43,6],[44,6],[39,6],[40,6],[41,6],[42,6],[8,6],[48,6],[45,6],[46,6],[47,6],[1,6],[85,54],[95,55],[84,54],[105,56],[76,57],[75,58],[104,59],[98,60],[103,61],[78,62],[92,63],[77,64],[101,65],[73,66],[72,59],[102,67],[74,68],[79,69],[80,6],[83,69],[70,6],[106,70],[96,71],[87,72],[88,73],[90,74],[86,75],[89,76],[99,59],[81,77],[82,78],[91,79],[71,80],[94,71],[93,69],[97,6],[100,81],[61,82],[62,83],[59,84],[60,6],[58,6],[53,85],[57,86],[51,6],[52,6],[54,6],[55,6],[56,87]],"latestChangedDtsFile":"./types/index.d.ts","version":"5.6.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../utils/dist/types/models/interfaces.d.ts","../../utils/dist/types/models/types.d.ts","../../utils/dist/types/domUtils.d.ts","../../utils/dist/types/nodeExtend.d.ts","../../utils/dist/types/stripTagsUtil.d.ts","../../utils/dist/types/utils.d.ts","../../utils/dist/types/index.d.ts","../src/types/eventSubscription.interface.ts","../src/types/basePubSubService.interface.ts","../src/types/eventNamingStyle.enum.ts","../src/eventPubSub.service.ts","../src/index.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.10.7/node_modules/@types/node/index.d.ts"],"fileIdsList":[[69,109,112],[69,111,112],[112],[69,112,117,147],[69,112,113,118,124,125,132,144,155],[69,112,113,114,124,132],[69,112],[64,65,66,69,112],[69,112,115,156],[69,112,116,117,125,133],[69,112,117,144,152],[69,112,118,120,124,132],[69,111,112,119],[69,112,120,121],[69,112,124],[69,112,122,124],[69,111,112,124],[69,112,124,125,126,144,155],[69,112,124,125,126,139,144,147],[69,107,112,160],[69,107,112,120,124,127,132,144,155],[69,112,124,125,127,128,132,144,152,155],[69,112,127,129,144,152,155],[67,68,69,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161],[69,112,124,130],[69,112,131,155,160],[69,112,120,124,132,144],[69,112,133],[69,112,134],[69,111,112,135],[69,109,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161],[69,112,137],[69,112,138],[69,112,124,139,140],[69,112,139,141,156,158],[69,112,124,144,145,146,147],[69,112,144,146],[69,112,144,145],[69,112,147],[69,112,148],[69,109,112,144],[69,112,124,150,151],[69,112,150,151],[69,112,117,132,144,152],[69,112,153],[69,112,132,154],[69,112,127,138,155],[69,112,117,156],[69,112,144,157],[69,112,131,158],[69,112,159],[69,112,117,124,126,135,144,155,158,160],[69,112,144,161],[69,79,83,112,155],[69,79,112,144,155],[69,74,112],[69,76,79,112,152,155],[69,112,132,152],[69,112,162],[69,74,112,162],[69,76,79,112,132,155],[69,71,72,75,78,112,124,144,155],[69,79,86,112],[69,71,77,112],[69,79,100,101,112],[69,75,79,112,147,155,162],[69,100,112,162],[69,73,74,112,162],[69,79,112],[69,73,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,101,102,103,104,105,106,112],[69,79,94,112],[69,79,86,87,112],[69,77,79,87,88,112],[69,78,112],[69,71,74,79,112],[69,79,83,87,88,112],[69,83,112],[69,77,79,82,112,155],[69,71,76,79,86,112],[69,112,144],[69,74,79,100,112,160,162],[58,59,60,61,69,112],[59,60,61,62,69,112],[59,69,112],[52,53,69,112],[52,53,54,55,56,57,69,112],[53,69,112]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"03e026f9347b0725cdcce9ca95ffad1531c4817cef7232f8b46f91e818e2ac1c","504172f31e7616ece67ba012c54b6b33d3c4db9b2b812c9803caba1e9040e5c5","0127b9aafc00bf82cdcb6792b6f6acd5e4495e5caa691c658bea260fc139185d","f5d11e5550af01aecc9f000622eebf5057a6c80a89a541144d0a31f469cd57ca","3f55f6bb22c907b4e15d440a92363632b3f6553acdeec013f34d1b505ee6c9ed","c12bedbb16b2aabbbbb1ad0e595f22a1687052927b17b4c3e719e1c826464279","751af699ec3894dcd64e36726617167d300138d7000d1a628645c09add0a4970",{"version":"843c8ac23a2d77142ea46b0717183d19dfb551df57d1f0493435a12d57e12d88","signature":"c7fb83efb86b29016744244e65b37430afdd948e025d00aaf0e404dc08a65e02"},{"version":"2b1d4acb608bf1b144a9bc04a97f1034d32e896f298f8d44529bfbf44f342486","signature":"5a43f2365b933aef239af9ef9650fac696def6a1fbdff70f011fa4d28eae9977"},{"version":"a6b80fcaf68f2a931b07805481b5ff66e98dc2ca082765b0031b5b40cbcc0b4f","signature":"def6550c1fed5eab90871c006c3e80c6220c174ca0f151ad7bee2d5ca88b98ba"},{"version":"6adeb0f4527cebd8af5c725651feb14cf468331c937287afb3e0e9ada6ebd999","signature":"518fd61680714fc20f05f2482929fb2e6afac758de65094695661a476130d2ad"},"7c26042cf702f41b11aec9f77047040f9f0d94f4cb2d6709ff2be144dd3710f4",{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fd06258805d26c72f5997e07a23155d322d5f05387adb3744a791fe6a0b042d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"ba97261afafe85aafe76d988e65e531da8e8cf791c49caf0531f5dd1689bd91b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f52e8dacc97d71dcc96af29e49584353f9c54cb916d132e3e768d8b8129c928d","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0","impliedFormat":1},{"version":"53eac70430b30089a3a1959d8306b0f9cfaf0de75224b68ef25243e0b5ad1ca3","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"86956cc2eb9dd371d6fab493d326a574afedebf76eef3fa7833b8e0d9b52d6f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"24642567d3729bcc545bacb65ee7c0db423400c7f1ef757cab25d05650064f98","impliedFormat":1},{"version":"e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"e9ad08a376ac84948fcca0013d6f1d4ae4f9522e26b91f87945b97c99d7cc30b","impliedFormat":1},{"version":"eaf9ee1d90a35d56264f0bf39842282c58b9219e112ac7d0c1bce98c6c5da672","impliedFormat":1},{"version":"c15c4427ae7fd1dcd7f312a8a447ac93581b0d4664ddf151ecd07de4bf2bb9d7","impliedFormat":1},{"version":"5135bdd72cc05a8192bd2e92f0914d7fc43ee077d1293dc622a049b7035a0afb","impliedFormat":1},{"version":"4f80de3a11c0d2f1329a72e92c7416b2f7eab14f67e92cac63bb4e8d01c6edc8","impliedFormat":1},{"version":"6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6","impliedFormat":1},{"version":"aeac7c51bde4658c192bc45819344eb20fc64743264b0465be6025201220a6b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4047ed87e765bd3bcc316a0c4c4c8b0061628460d8a5412d1c4b53a4658665a","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"3eb62baae4df08c9173e6903d3ca45942ccec8c3659b0565684a75f3292cffbb","affectsGlobalScope":true,"impliedFormat":1},{"version":"42aaa94addeed66a04b61e433c14e829c43d1efd653cf2fda480c5fb3d722ed8","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","impliedFormat":1},{"version":"fab29e6d649aa074a6b91e3bdf2bff484934a46067f6ee97a30fcd9762ae2213","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","impliedFormat":1},{"version":"58832ded29e0094047596544ac391d68c799d7bd7d35936f47221857141628f1","impliedFormat":1},{"version":"553870e516f8c772b89f3820576152ebc70181d7994d96917bb943e37da7f8a7","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"745c4240220559bd340c8aeb6e3c5270a709d3565e934dc22a69c304703956bc","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"9212c6e9d80cb45441a3614e95afd7235a55a18584c2ed32d6c1aca5a0c53d93","affectsGlobalScope":true,"impliedFormat":1},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"282fd2a1268a25345b830497b4b7bf5037a5e04f6a9c44c840cb605e19fea841","impliedFormat":1},{"version":"5360a27d3ebca11b224d7d3e38e3e2c63f8290cb1fcf6c3610401898f8e68bc3","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"6bd91a2a356600dee28eb0438082d0799a18a974a6537c4410a796bab749813c","affectsGlobalScope":true,"impliedFormat":1},{"version":"f689c4237b70ae6be5f0e4180e8833f34ace40529d1acc0676ab8fb8f70457d7","impliedFormat":1},{"version":"ae25afbbf1ed5df63a177d67b9048bf7481067f1b8dc9c39212e59db94fc9fc6","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"52a8e7e8a1454b6d1b5ad428efae3870ffc56f2c02d923467f2940c454aa9aec","affectsGlobalScope":true,"impliedFormat":1},{"version":"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1}],"root":[[59,63]],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationDir":"./types","declarationMap":true,"emitDecoratorMetadata":true,"experimentalDecorators":true,"importHelpers":true,"isolatedDeclarations":true,"module":99,"noEmitOnError":true,"noImplicitReturns":true,"outDir":"./esm","preserveConstEnums":true,"rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":8,"verbatimModuleSyntax":true},"referencedMap":[[109,1],[110,1],[111,2],[69,3],[112,4],[113,5],[114,6],[64,7],[67,8],[65,7],[66,7],[115,9],[116,10],[117,11],[118,12],[119,13],[120,14],[121,14],[123,15],[122,16],[124,17],[125,18],[126,19],[108,20],[68,7],[127,21],[128,22],[129,23],[162,24],[130,25],[131,26],[132,27],[133,28],[134,29],[135,30],[136,31],[137,32],[138,33],[139,34],[140,34],[141,35],[142,7],[143,7],[144,36],[146,37],[145,38],[147,39],[148,40],[149,41],[150,42],[151,43],[152,44],[153,45],[154,46],[155,47],[156,48],[157,49],[158,50],[159,51],[160,52],[161,53],[70,7],[50,7],[51,7],[9,7],[11,7],[10,7],[2,7],[12,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[19,7],[3,7],[20,7],[21,7],[4,7],[22,7],[26,7],[23,7],[24,7],[25,7],[27,7],[28,7],[29,7],[5,7],[30,7],[31,7],[32,7],[33,7],[6,7],[37,7],[34,7],[35,7],[36,7],[38,7],[7,7],[39,7],[44,7],[45,7],[40,7],[41,7],[42,7],[43,7],[8,7],[49,7],[46,7],[47,7],[48,7],[1,7],[86,54],[96,55],[85,54],[106,56],[77,57],[76,58],[105,59],[99,60],[104,61],[79,62],[93,63],[78,64],[102,65],[74,66],[73,59],[103,67],[75,68],[80,69],[81,7],[84,69],[71,7],[107,70],[97,71],[88,72],[89,73],[91,74],[87,75],[90,76],[100,59],[82,77],[83,78],[92,79],[72,80],[95,71],[94,69],[98,7],[101,81],[62,82],[63,83],[60,84],[61,7],[59,7],[54,85],[58,86],[52,7],[53,7],[55,7],[56,7],[57,87]],"latestChangedDtsFile":"./types/index.d.ts","version":"5.7.3"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eventPubSub.service.d.ts","sourceRoot":"","sources":["../../src/eventPubSub.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAChF,OAAO,EAAE,gBAAgB,EAAE,MAAM,kCAAkC,CAAC;AACpE,OAAO,EAAE,KAAK,iBAAiB,EAAE,KAAK,YAAY,
|
|
1
|
+
{"version":3,"file":"eventPubSub.service.d.ts","sourceRoot":"","sources":["../../src/eventPubSub.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAChF,OAAO,EAAE,gBAAgB,EAAE,MAAM,kCAAkC,CAAC;AACpE,OAAO,EAAE,KAAK,iBAAiB,EAAE,KAAK,YAAY,EAAE,MAAM,wCAAwC,CAAC;AAEnG,MAAM,WAAW,WAAW,CAAC,CAAC,GAAG,GAAG;IAClC,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAC,GAAG,eAAe,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;CACnD;AAED,qBAAa,kBAAmB,YAAW,iBAAiB;IAC1D,SAAS,CAAC,cAAc,EAAE,OAAO,CAAC;IAClC,SAAS,CAAC,iBAAiB,EAAE,WAAW,EAAE,CAAM;IAChD,SAAS,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAE1B,gBAAgB,EAAE,gBAAgB,CAA8B;IAEhE,IAAI,aAAa,IAAI,OAAO,CAE3B;IACD,IAAI,aAAa,CAAC,OAAO,EAAE,OAAO,EAEjC;IAED,IAAI,gBAAgB,IAAI,WAAW,EAAE,CAEpC;IAED,IAAI,oBAAoB,IAAI,MAAM,EAAE,CAEnC;gBAEW,aAAa,CAAC,EAAE,OAAO;IAMnC,OAAO,IAAI,IAAI;IAQf;;;;;;;;OAQG;IACH,mBAAmB,CAAC,CAAC,GAAG,GAAG,EACzB,SAAS,EAAE,MAAM,EACjB,IAAI,CAAC,EAAE,CAAC,EACR,UAAU,UAAO,EACjB,YAAY,UAAO,EACnB,wBAAwB,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,KAAK,IAAI,GAC5C,OAAO;IAYV;;;;;OAKG;IACH,8BAA8B,CAAC,cAAc,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,GAAG,MAAM;IAuBvF;;;;;;;;;;;OAWG;IACH,OAAO,CAAC,CAAC,GAAG,GAAG,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,MAAM,EAAE,wBAAwB,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,KAAK,IAAI,GAAG,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;IAgBxI;;;;;OAKG;IACH,SAAS,CAAC,CAAC,GAAG,GAAG,EAAE,UAAU,EAAE,MAAM,GAAG,MAAM,EAAE,EAAE,QAAQ,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,IAAI,GAAG,YAAY;IAoB5F;;;;;;OAMG;IACH,cAAc,CAAC,CAAC,GAAG,GAAG,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,KAAK,EAAE,eAAe,CAAC,CAAC,CAAC,KAAK,IAAI,GAAG,YAAY;IAWvG;;;;;;OAMG;IACH,WAAW,CAAC,CAAC,GAAG,GAAG,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAC,GAAG,eAAe,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE,yBAAyB,UAAO,GAAG,IAAI;IAQlI,kEAAkE;IAClE,cAAc,CAAC,aAAa,CAAC,EAAE,iBAAiB,EAAE,GAAG,IAAI;IAwBzD,SAAS,CAAC,8BAA8B,CAAC,CAAC,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAC,GAAG,eAAe,CAAC,CAAC,CAAC,KAAK,IAAI,GAAG,IAAI;CAMxH"}
|
|
@@ -24,10 +24,10 @@ export interface BasePubSubService {
|
|
|
24
24
|
*/
|
|
25
25
|
subscribeEvent?<T = any>(_eventName: string | Function, _callback: (event: CustomEventInit<T>) => void): EventSubscription | any;
|
|
26
26
|
/**
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
* Unsubscribes a message name
|
|
28
|
+
* @param event The event name
|
|
29
|
+
* @return possibly a Subscription
|
|
30
|
+
*/
|
|
31
31
|
unsubscribe(_eventName: string, _callback: (event: CustomEventInit) => void): void;
|
|
32
32
|
/** Unsubscribes all subscriptions that currently exists */
|
|
33
33
|
unsubscribeAll(_subscriptions?: EventSubscription[]): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"basePubSubService.interface.d.ts","sourceRoot":"","sources":["../../../src/types/basePubSubService.interface.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AAE1E,MAAM,WAAW,iBAAiB;IAChC;;;;;;OAMG;IACH,OAAO,CAAC,CAAC,GAAG,GAAG,
|
|
1
|
+
{"version":3,"file":"basePubSubService.interface.d.ts","sourceRoot":"","sources":["../../../src/types/basePubSubService.interface.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AAE1E,MAAM,WAAW,iBAAiB;IAChC;;;;;;OAMG;IACH,OAAO,CAAC,CAAC,GAAG,GAAG,EACb,UAAU,EAAE,MAAM,GAAG,GAAG,EACxB,KAAK,CAAC,EAAE,CAAC,EACT,MAAM,CAAC,EAAE,MAAM,EACf,wBAAwB,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,KAAK,IAAI,GAC5C,IAAI,GAAG,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAErC;;;;;OAKG;IACH,SAAS,CAAC,CAAC,GAAG,GAAG,EAAE,UAAU,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,QAAQ,EAAE,SAAS,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,IAAI,GAAG,iBAAiB,GAAG,GAAG,CAAC;IAEpH;;;;;;OAMG;IACH,cAAc,CAAC,CAAC,CAAC,GAAG,GAAG,EAAE,UAAU,EAAE,MAAM,GAAG,QAAQ,EAAE,SAAS,EAAE,CAAC,KAAK,EAAE,eAAe,CAAC,CAAC,CAAC,KAAK,IAAI,GAAG,iBAAiB,GAAG,GAAG,CAAC;IAEjI;;;;OAIG;IACH,WAAW,CAAC,UAAU,EAAE,MAAM,EAAE,SAAS,EAAE,CAAC,KAAK,EAAE,eAAe,KAAK,IAAI,GAAG,IAAI,CAAC;IAEnF,2DAA2D;IAC3D,cAAc,CAAC,cAAc,CAAC,EAAE,iBAAiB,EAAE,GAAG,IAAI,CAAC;CAC5D"}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
export declare enum EventNamingStyle {
|
|
2
|
-
/** Event name showing in Camel Case, so "onValidationError" would stay as "onValidationError" */
|
|
2
|
+
/** Event name showing in Camel Case, so "onValidationError" would stay as "onValidationError" (i.e. Angular) */
|
|
3
3
|
camelCase = "camelCase",
|
|
4
|
-
/** Event name showing in
|
|
4
|
+
/** Event name showing in Camel Case but with an extra (duplicate) "on" prefix, so "onValidationError" would become "onOnValidationError" (i.e. Slickgrid-Vue). */
|
|
5
|
+
camelCaseWithExtraOnPrefix = "camelCaseWithExtraOnPrefix",
|
|
6
|
+
/** Event name showing in Kebab Case, so "onValidationError" would become "on-validation-error" (i.e. Aurelia-Slickgrid) */
|
|
5
7
|
kebabCase = "kebabCase",
|
|
6
8
|
/** Event name showing all in lowercase, so "onValidationError" would become "onvalidationerror" */
|
|
7
9
|
lowerCase = "lowerCase",
|
|
8
|
-
/** Event name showing all in lowercase but without the "on" prefix, so "onValidationError" would
|
|
10
|
+
/** Event name showing all in lowercase but without the "on" prefix, so "onValidationError" would be "validationerror" (i.e. Salesforce). */
|
|
9
11
|
lowerCaseWithoutOnPrefix = "lowerCaseWithoutOnPrefix"
|
|
10
12
|
}
|
|
11
13
|
//# sourceMappingURL=eventNamingStyle.enum.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eventNamingStyle.enum.d.ts","sourceRoot":"","sources":["../../../src/types/eventNamingStyle.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,gBAAgB;IAC1B,
|
|
1
|
+
{"version":3,"file":"eventNamingStyle.enum.d.ts","sourceRoot":"","sources":["../../../src/types/eventNamingStyle.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,gBAAgB;IAC1B,gHAAgH;IAChH,SAAS,cAAc;IAEvB,kKAAkK;IAClK,0BAA0B,+BAA+B;IAEzD,2HAA2H;IAC3H,SAAS,cAAc;IAEvB,mGAAmG;IACnG,SAAS,cAAc;IAEvB,4IAA4I;IAC5I,wBAAwB,6BAA6B;CACtD"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slickgrid-universal/event-pub-sub",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.12.0",
|
|
4
4
|
"description": "Simple Vanilla Implementation of an Event PubSub Service to do simply publish/subscribe inter-communication while optionally providing data in the event",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"types": "./dist/types/index.d.ts",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"homepage": "https://github.com/ghiscoding/slickgrid-universal",
|
|
27
27
|
"repository": {
|
|
28
28
|
"type": "git",
|
|
29
|
-
"url": "https://github.com/ghiscoding/slickgrid-universal.git",
|
|
29
|
+
"url": "git+https://github.com/ghiscoding/slickgrid-universal.git",
|
|
30
30
|
"directory": "packages/event-pub-sub"
|
|
31
31
|
},
|
|
32
32
|
"bugs": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"not dead"
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@slickgrid-universal/utils": "~5.
|
|
41
|
+
"@slickgrid-universal/utils": "~5.12.0"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "d7e892ebc1727d7c83cc1e5cc80db8302eef4f63"
|
|
44
44
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { titleCase, toKebabCase } from '@slickgrid-universal/utils';
|
|
2
2
|
import { type BasePubSubService } from './types/basePubSubService.interface.js';
|
|
3
3
|
import { EventNamingStyle } from './types/eventNamingStyle.enum.js';
|
|
4
|
-
import { type EventSubscription, type Subscription
|
|
4
|
+
import { type EventSubscription, type Subscription } from './types/eventSubscription.interface.js';
|
|
5
5
|
|
|
6
6
|
export interface PubSubEvent<T = any> {
|
|
7
7
|
name: string;
|
|
@@ -53,7 +53,13 @@ export class EventPubSubService implements BasePubSubService {
|
|
|
53
53
|
* @param {Function} externalizeEventCallback - user can optionally retrieve the CustomEvent used in the PubSub for its own usage via a callback (called just before the event dispatch)
|
|
54
54
|
* @returns {Boolean} returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
|
|
55
55
|
*/
|
|
56
|
-
dispatchCustomEvent<T = any>(
|
|
56
|
+
dispatchCustomEvent<T = any>(
|
|
57
|
+
eventName: string,
|
|
58
|
+
data?: T,
|
|
59
|
+
isBubbling = true,
|
|
60
|
+
isCancelable = true,
|
|
61
|
+
externalizeEventCallback?: (e: Event) => void
|
|
62
|
+
): boolean {
|
|
57
63
|
const eventInit: CustomEventInit<T> = { bubbles: isBubbling, cancelable: isCancelable };
|
|
58
64
|
if (data) {
|
|
59
65
|
eventInit.detail = data;
|
|
@@ -74,19 +80,22 @@ export class EventPubSubService implements BasePubSubService {
|
|
|
74
80
|
getEventNameByNamingConvention(inputEventName: string, eventNamePrefix: string): string {
|
|
75
81
|
let outputEventName = '';
|
|
76
82
|
|
|
83
|
+
if (this.eventNamingStyle === EventNamingStyle.lowerCaseWithoutOnPrefix) {
|
|
84
|
+
outputEventName = `${eventNamePrefix}${inputEventName.replace(/^on/, '')}`;
|
|
85
|
+
} else if (this.eventNamingStyle === EventNamingStyle.camelCaseWithExtraOnPrefix) {
|
|
86
|
+
outputEventName = `${eventNamePrefix}${inputEventName.replace(/^on/, 'onOn')}`;
|
|
87
|
+
}
|
|
88
|
+
|
|
77
89
|
switch (this.eventNamingStyle) {
|
|
78
90
|
case EventNamingStyle.camelCase:
|
|
79
|
-
outputEventName =
|
|
91
|
+
outputEventName = eventNamePrefix !== '' ? `${eventNamePrefix}${titleCase(inputEventName)}` : inputEventName;
|
|
80
92
|
break;
|
|
81
93
|
case EventNamingStyle.kebabCase:
|
|
82
|
-
outputEventName =
|
|
94
|
+
outputEventName = eventNamePrefix !== '' ? `${eventNamePrefix}-${toKebabCase(inputEventName)}` : toKebabCase(inputEventName);
|
|
83
95
|
break;
|
|
84
96
|
case EventNamingStyle.lowerCase:
|
|
85
97
|
outputEventName = `${eventNamePrefix}${inputEventName}`.toLowerCase();
|
|
86
98
|
break;
|
|
87
|
-
case EventNamingStyle.lowerCaseWithoutOnPrefix:
|
|
88
|
-
outputEventName = `${eventNamePrefix}${inputEventName.replace(/^on/, '')}`.toLowerCase();
|
|
89
|
-
break;
|
|
90
99
|
}
|
|
91
100
|
return outputEventName;
|
|
92
101
|
}
|
|
@@ -107,9 +116,12 @@ export class EventPubSubService implements BasePubSubService {
|
|
|
107
116
|
const eventNameByConvention = this.getEventNameByNamingConvention(eventName, '');
|
|
108
117
|
|
|
109
118
|
if (delay) {
|
|
110
|
-
return new Promise(resolve => {
|
|
119
|
+
return new Promise((resolve) => {
|
|
111
120
|
window.clearTimeout(this._timer);
|
|
112
|
-
this._timer = window.setTimeout(
|
|
121
|
+
this._timer = window.setTimeout(
|
|
122
|
+
() => resolve(this.dispatchCustomEvent<T>(eventNameByConvention, data, true, true, externalizeEventCallback)),
|
|
123
|
+
delay
|
|
124
|
+
);
|
|
113
125
|
});
|
|
114
126
|
} else {
|
|
115
127
|
return this.dispatchCustomEvent<T>(eventNameByConvention, data, true, true, externalizeEventCallback);
|
|
@@ -126,7 +138,7 @@ export class EventPubSubService implements BasePubSubService {
|
|
|
126
138
|
eventNames = Array.isArray(eventNames) ? eventNames : [eventNames];
|
|
127
139
|
const subscriptions: Array<() => void> = [];
|
|
128
140
|
|
|
129
|
-
eventNames.forEach(eventName => {
|
|
141
|
+
eventNames.forEach((eventName) => {
|
|
130
142
|
const eventNameByConvention = this.getEventNameByNamingConvention(eventName, '');
|
|
131
143
|
|
|
132
144
|
// the event listener will return the data in the "event.detail", so we need to return its content to the final callback
|
|
@@ -138,7 +150,7 @@ export class EventPubSubService implements BasePubSubService {
|
|
|
138
150
|
|
|
139
151
|
// return a subscription(s) that we can later unsubscribe
|
|
140
152
|
return {
|
|
141
|
-
unsubscribe: () => subscriptions.forEach(unsub => unsub())
|
|
153
|
+
unsubscribe: () => subscriptions.forEach((unsub) => unsub()),
|
|
142
154
|
};
|
|
143
155
|
}
|
|
144
156
|
|
|
@@ -156,7 +168,7 @@ export class EventPubSubService implements BasePubSubService {
|
|
|
156
168
|
|
|
157
169
|
// return a subscription that we can later unsubscribe
|
|
158
170
|
return {
|
|
159
|
-
unsubscribe: () => this.unsubscribe(eventNameByConvention, listener as never)
|
|
171
|
+
unsubscribe: () => this.unsubscribe(eventNameByConvention, listener as never),
|
|
160
172
|
};
|
|
161
173
|
}
|
|
162
174
|
|
|
@@ -201,7 +213,7 @@ export class EventPubSubService implements BasePubSubService {
|
|
|
201
213
|
// --------------------
|
|
202
214
|
|
|
203
215
|
protected removeSubscribedEventWhenFound<T>(eventName: string, listener: (event: T | CustomEventInit<T>) => void): void {
|
|
204
|
-
const eventIdx = this._subscribedEvents.findIndex(evt => evt.name === eventName && evt.listener === listener);
|
|
216
|
+
const eventIdx = this._subscribedEvents.findIndex((evt) => evt.name === eventName && evt.listener === listener);
|
|
205
217
|
if (eventIdx >= 0) {
|
|
206
218
|
this._subscribedEvents.splice(eventIdx, 1);
|
|
207
219
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export * from './eventPubSub.service.js';
|
|
2
2
|
export type * from './types/basePubSubService.interface.js';
|
|
3
3
|
export * from './types/eventNamingStyle.enum.js';
|
|
4
|
-
export type * from './types/eventSubscription.interface.js';
|
|
4
|
+
export type * from './types/eventSubscription.interface.js';
|
|
@@ -8,7 +8,12 @@ export interface BasePubSubService {
|
|
|
8
8
|
* @param {Number} delay - optional argument to delay the publish event
|
|
9
9
|
* @param {Function} externalizeEventCallback - user can optionally retrieve the CustomEvent used in the PubSub for its own usage via a callback (called just before the event dispatch)
|
|
10
10
|
*/
|
|
11
|
-
publish<T = any>(
|
|
11
|
+
publish<T = any>(
|
|
12
|
+
_eventName: string | any,
|
|
13
|
+
_data?: T,
|
|
14
|
+
_delay?: number,
|
|
15
|
+
externalizeEventCallback?: (e: Event) => void
|
|
16
|
+
): void | boolean | Promise<boolean>;
|
|
12
17
|
|
|
13
18
|
/**
|
|
14
19
|
* Subscribes to a message channel or message type.
|
|
@@ -28,10 +33,10 @@ export interface BasePubSubService {
|
|
|
28
33
|
subscribeEvent?<T = any>(_eventName: string | Function, _callback: (event: CustomEventInit<T>) => void): EventSubscription | any;
|
|
29
34
|
|
|
30
35
|
/**
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
36
|
+
* Unsubscribes a message name
|
|
37
|
+
* @param event The event name
|
|
38
|
+
* @return possibly a Subscription
|
|
39
|
+
*/
|
|
35
40
|
unsubscribe(_eventName: string, _callback: (event: CustomEventInit) => void): void;
|
|
36
41
|
|
|
37
42
|
/** Unsubscribes all subscriptions that currently exists */
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
export enum EventNamingStyle {
|
|
2
|
-
/** Event name showing in Camel Case, so "onValidationError" would stay as "onValidationError" */
|
|
2
|
+
/** Event name showing in Camel Case, so "onValidationError" would stay as "onValidationError" (i.e. Angular) */
|
|
3
3
|
camelCase = 'camelCase',
|
|
4
4
|
|
|
5
|
-
/** Event name showing in
|
|
5
|
+
/** Event name showing in Camel Case but with an extra (duplicate) "on" prefix, so "onValidationError" would become "onOnValidationError" (i.e. Slickgrid-Vue). */
|
|
6
|
+
camelCaseWithExtraOnPrefix = 'camelCaseWithExtraOnPrefix',
|
|
7
|
+
|
|
8
|
+
/** Event name showing in Kebab Case, so "onValidationError" would become "on-validation-error" (i.e. Aurelia-Slickgrid) */
|
|
6
9
|
kebabCase = 'kebabCase',
|
|
7
10
|
|
|
8
11
|
/** Event name showing all in lowercase, so "onValidationError" would become "onvalidationerror" */
|
|
9
12
|
lowerCase = 'lowerCase',
|
|
10
13
|
|
|
11
|
-
/** Event name showing all in lowercase but without the "on" prefix, so "onValidationError" would
|
|
14
|
+
/** Event name showing all in lowercase but without the "on" prefix, so "onValidationError" would be "validationerror" (i.e. Salesforce). */
|
|
12
15
|
lowerCaseWithoutOnPrefix = 'lowerCaseWithoutOnPrefix',
|
|
13
16
|
}
|