epg-grabber 0.42.0 → 0.42.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { n as name, v as version, d as description, p as parseNumber, L as Logger, E as EPGGrabber, g as getUTCDate, a as generateXMLTV } from './index-
|
|
2
|
+
import { n as name, v as version, d as description, p as parseNumber, L as Logger, E as EPGGrabber, g as getUTCDate, a as generateXMLTV } from './index-o305OLdP.js';
|
|
3
3
|
import { Template, Collection } from '@freearhey/core';
|
|
4
4
|
import { Command, Option } from 'commander';
|
|
5
5
|
import { SocksProxyAgent } from 'socks-proxy-agent';
|
|
@@ -94,7 +94,7 @@ class Channel {
|
|
|
94
94
|
lcn;
|
|
95
95
|
index;
|
|
96
96
|
constructor(data) {
|
|
97
|
-
this.xmltv_id = data.xmltv_id
|
|
97
|
+
this.xmltv_id = data.xmltv_id;
|
|
98
98
|
this.name = data.name;
|
|
99
99
|
this.site = data.site;
|
|
100
100
|
this.site_id = data.site_id;
|
|
@@ -709,7 +709,7 @@ class ChannelList {
|
|
|
709
709
|
}
|
|
710
710
|
|
|
711
711
|
var name = "epg-grabber";
|
|
712
|
-
var version = "0.
|
|
712
|
+
var version = "0.42.1";
|
|
713
713
|
var description = "Node.js CLI tool for grabbing EPG from different sites";
|
|
714
714
|
var homepage = "https://github.com/freearhey/epg-grabber";
|
|
715
715
|
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
export { C as Channel, E as EPGGrabber, P as Program, a as generateXMLTV, b as parseChannels, c as parsePrograms } from './index-
|
|
2
|
+
export { C as Channel, E as EPGGrabber, P as Program, a as generateXMLTV, b as parseChannels, c as parsePrograms } from './index-o305OLdP.js';
|
|
3
3
|
import '@freearhey/core';
|
|
4
4
|
import 'dayjs';
|
|
5
5
|
import 'dayjs/plugin/utc.js';
|
package/package.json
CHANGED
package/src/models/channel.ts
CHANGED