@libp2p/tcp 1.0.0 → 1.0.4
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 +3 -1
- package/README.md +18 -2
- package/dist/src/index.d.ts +4 -5
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +6 -6
- package/dist/src/index.js.map +1 -1
- package/dist/src/listener.d.ts +17 -2
- package/dist/src/listener.d.ts.map +1 -1
- package/dist/src/listener.js +120 -106
- package/dist/src/listener.js.map +1 -1
- package/dist/src/socket-to-conn.d.ts +1 -1
- package/dist/src/socket-to-conn.d.ts.map +1 -1
- package/dist/src/socket-to-conn.js +6 -8
- package/dist/src/socket-to-conn.js.map +1 -1
- package/dist/src/utils.d.ts +1 -6
- package/dist/src/utils.d.ts.map +1 -1
- package/package.json +130 -61
- package/src/index.ts +8 -9
- package/src/listener.ts +137 -121
- package/src/socket-to-conn.ts +6 -10
- package/.aegir.cjs +0 -8
- package/.github/workflows/main.yml +0 -125
- package/CHANGELOG.md +0 -453
- package/LICENSE-APACHE +0 -5
- package/LICENSE-MIT +0 -19
- package/dist/tsconfig.tsbuildinfo +0 -1
- package/tsconfig.json +0 -12
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
name: test & maybe release
|
|
2
|
-
on:
|
|
3
|
-
push:
|
|
4
|
-
branches:
|
|
5
|
-
- master
|
|
6
|
-
pull_request:
|
|
7
|
-
branches:
|
|
8
|
-
- master
|
|
9
|
-
|
|
10
|
-
jobs:
|
|
11
|
-
|
|
12
|
-
check:
|
|
13
|
-
runs-on: ubuntu-latest
|
|
14
|
-
steps:
|
|
15
|
-
- uses: actions/checkout@v2
|
|
16
|
-
- uses: actions/setup-node@v2
|
|
17
|
-
with:
|
|
18
|
-
node-version: lts/*
|
|
19
|
-
- uses: ipfs/aegir/actions/cache-node-modules@master
|
|
20
|
-
- run: npm run --if-present lint
|
|
21
|
-
- run: npm run --if-present dep-check
|
|
22
|
-
|
|
23
|
-
test-node:
|
|
24
|
-
needs: check
|
|
25
|
-
runs-on: ${{ matrix.os }}
|
|
26
|
-
strategy:
|
|
27
|
-
matrix:
|
|
28
|
-
os: [windows-latest, ubuntu-latest, macos-latest]
|
|
29
|
-
node: [16]
|
|
30
|
-
fail-fast: true
|
|
31
|
-
steps:
|
|
32
|
-
- uses: actions/checkout@v2
|
|
33
|
-
- uses: actions/setup-node@v2
|
|
34
|
-
with:
|
|
35
|
-
node-version: ${{ matrix.node }}
|
|
36
|
-
- uses: ipfs/aegir/actions/cache-node-modules@master
|
|
37
|
-
- run: npm run --if-present test:node
|
|
38
|
-
- uses: codecov/codecov-action@v1
|
|
39
|
-
|
|
40
|
-
test-chrome:
|
|
41
|
-
needs: check
|
|
42
|
-
runs-on: ubuntu-latest
|
|
43
|
-
steps:
|
|
44
|
-
- uses: actions/checkout@v2
|
|
45
|
-
- uses: actions/setup-node@v2
|
|
46
|
-
with:
|
|
47
|
-
node-version: lts/*
|
|
48
|
-
- uses: ipfs/aegir/actions/cache-node-modules@master
|
|
49
|
-
- run: npm run --if-present test:chrome
|
|
50
|
-
|
|
51
|
-
test-chrome-webworker:
|
|
52
|
-
needs: check
|
|
53
|
-
runs-on: ubuntu-latest
|
|
54
|
-
steps:
|
|
55
|
-
- uses: actions/checkout@v2
|
|
56
|
-
- uses: actions/setup-node@v2
|
|
57
|
-
with:
|
|
58
|
-
node-version: lts/*
|
|
59
|
-
- uses: ipfs/aegir/actions/cache-node-modules@master
|
|
60
|
-
- run: npm run --if-present test:chrome-webworker
|
|
61
|
-
|
|
62
|
-
test-firefox:
|
|
63
|
-
needs: check
|
|
64
|
-
runs-on: ubuntu-latest
|
|
65
|
-
steps:
|
|
66
|
-
- uses: actions/checkout@v2
|
|
67
|
-
- uses: actions/setup-node@v2
|
|
68
|
-
with:
|
|
69
|
-
node-version: lts/*
|
|
70
|
-
- uses: ipfs/aegir/actions/cache-node-modules@master
|
|
71
|
-
- run: npm run --if-present test:firefox
|
|
72
|
-
|
|
73
|
-
test-firefox-webworker:
|
|
74
|
-
needs: check
|
|
75
|
-
runs-on: ubuntu-latest
|
|
76
|
-
steps:
|
|
77
|
-
- uses: actions/checkout@v2
|
|
78
|
-
- uses: actions/setup-node@v2
|
|
79
|
-
with:
|
|
80
|
-
node-version: lts/*
|
|
81
|
-
- uses: ipfs/aegir/actions/cache-node-modules@master
|
|
82
|
-
- run: npm run --if-present test:firefox-webworker
|
|
83
|
-
|
|
84
|
-
test-electron-main:
|
|
85
|
-
needs: check
|
|
86
|
-
runs-on: ubuntu-latest
|
|
87
|
-
steps:
|
|
88
|
-
- uses: actions/checkout@v2
|
|
89
|
-
- uses: actions/setup-node@v2
|
|
90
|
-
with:
|
|
91
|
-
node-version: lts/*
|
|
92
|
-
- uses: ipfs/aegir/actions/cache-node-modules@master
|
|
93
|
-
- run: npx xvfb-maybe npm run --if-present test:electron-main
|
|
94
|
-
|
|
95
|
-
test-electron-renderer:
|
|
96
|
-
needs: check
|
|
97
|
-
runs-on: ubuntu-latest
|
|
98
|
-
steps:
|
|
99
|
-
- uses: actions/checkout@v2
|
|
100
|
-
- uses: actions/setup-node@v2
|
|
101
|
-
with:
|
|
102
|
-
node-version: lts/*
|
|
103
|
-
- uses: ipfs/aegir/actions/cache-node-modules@master
|
|
104
|
-
- run: npx xvfb-maybe npm run --if-present test:electron-renderer
|
|
105
|
-
|
|
106
|
-
release:
|
|
107
|
-
needs: [test-node, test-chrome, test-chrome-webworker, test-firefox, test-firefox-webworker, test-electron-main, test-electron-renderer]
|
|
108
|
-
runs-on: ubuntu-latest
|
|
109
|
-
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|
|
110
|
-
steps:
|
|
111
|
-
- uses: actions/checkout@v2.4.0
|
|
112
|
-
with:
|
|
113
|
-
fetch-depth: 0
|
|
114
|
-
- uses: actions/setup-node@v2
|
|
115
|
-
with:
|
|
116
|
-
node-version: lts/*
|
|
117
|
-
- uses: ipfs/aegir/actions/cache-node-modules@master
|
|
118
|
-
- uses: ipfs/aegir/actions/docker-login@master
|
|
119
|
-
with:
|
|
120
|
-
docker-token: ${{ secrets.DOCKER_USERNAME }}
|
|
121
|
-
docker-username: ${{ secrets.DOCKER_USERNAME }}
|
|
122
|
-
- run: npm run --if-present release
|
|
123
|
-
env:
|
|
124
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
125
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/CHANGELOG.md
DELETED
|
@@ -1,453 +0,0 @@
|
|
|
1
|
-
## [0.17.2](https://github.com/libp2p/js-libp2p-tcp/compare/v0.17.1...v0.17.2) (2021-09-03)
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Bug Fixes
|
|
5
|
-
|
|
6
|
-
* ts declaration export ([#150](https://github.com/libp2p/js-libp2p-tcp/issues/150)) ([d165fe5](https://github.com/libp2p/js-libp2p-tcp/commit/d165fe57960e2bb4a5324c372ef459c31dee1cf5))
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
## [0.17.1](https://github.com/libp2p/js-libp2p-tcp/compare/v0.17.0...v0.17.1) (2021-07-08)
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
# [0.17.0](https://github.com/libp2p/js-libp2p-tcp/compare/v0.16.0...v0.17.0) (2021-07-07)
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
### chore
|
|
18
|
-
|
|
19
|
-
* update deps ([#147](https://github.com/libp2p/js-libp2p-tcp/issues/147)) ([b3e315a](https://github.com/libp2p/js-libp2p-tcp/commit/b3e315a6988cd4be7978e8922f275e525463bc0c))
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
### BREAKING CHANGES
|
|
23
|
-
|
|
24
|
-
* uses new majors of multiaddr and mafmt
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
# [0.16.0](https://github.com/libp2p/js-libp2p-tcp/compare/v0.15.4...v0.16.0) (2021-06-10)
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
### Features
|
|
32
|
-
|
|
33
|
-
* add types ([#145](https://github.com/libp2p/js-libp2p-tcp/issues/145)) ([3249e02](https://github.com/libp2p/js-libp2p-tcp/commit/3249e0292b2ef5d818fe428ce61f689b25060d85))
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
## [0.15.4](https://github.com/libp2p/js-libp2p-tcp/compare/v0.15.2...v0.15.4) (2021-04-12)
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
### Bug Fixes
|
|
41
|
-
|
|
42
|
-
* hanging close promise ([#140](https://github.com/libp2p/js-libp2p-tcp/issues/140)) ([3813100](https://github.com/libp2p/js-libp2p-tcp/commit/381310043852a9213f1abb62f5f0a7046d806286))
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
<a name="0.15.3"></a>
|
|
47
|
-
## [0.15.3](https://github.com/libp2p/js-libp2p-tcp/compare/v0.15.2...v0.15.3) (2021-02-03)
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
### Bug Fixes
|
|
51
|
-
|
|
52
|
-
* hanging close promise ([#140](https://github.com/libp2p/js-libp2p-tcp/issues/140)) ([3813100](https://github.com/libp2p/js-libp2p-tcp/commit/3813100))
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
<a name="0.15.2"></a>
|
|
57
|
-
## [0.15.2](https://github.com/libp2p/js-libp2p-tcp/compare/v0.14.2...v0.15.2) (2020-12-28)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
### Bug Fixes
|
|
61
|
-
|
|
62
|
-
* catch error from maConn.close ([#128](https://github.com/libp2p/js-libp2p-tcp/issues/128)) ([0fe0815](https://github.com/libp2p/js-libp2p-tcp/commit/0fe0815))
|
|
63
|
-
* catch thrown maConn errors in listener ([#122](https://github.com/libp2p/js-libp2p-tcp/issues/122)) ([86db568](https://github.com/libp2p/js-libp2p-tcp/commit/86db568)), closes [#121](https://github.com/libp2p/js-libp2p-tcp/issues/121)
|
|
64
|
-
* intermittent error when asking for interfaces ([#137](https://github.com/libp2p/js-libp2p-tcp/issues/137)) ([af9804e](https://github.com/libp2p/js-libp2p-tcp/commit/af9804e))
|
|
65
|
-
* remove use of assert module ([#123](https://github.com/libp2p/js-libp2p-tcp/issues/123)) ([6272876](https://github.com/libp2p/js-libp2p-tcp/commit/6272876))
|
|
66
|
-
* transport should not handle connection if upgradeInbound throws ([#119](https://github.com/libp2p/js-libp2p-tcp/issues/119)) ([21f8747](https://github.com/libp2p/js-libp2p-tcp/commit/21f8747))
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
### Chores
|
|
70
|
-
|
|
71
|
-
* update deps ([#134](https://github.com/libp2p/js-libp2p-tcp/issues/134)) ([d9f9912](https://github.com/libp2p/js-libp2p-tcp/commit/d9f9912))
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
### BREAKING CHANGES
|
|
75
|
-
|
|
76
|
-
* - The multiaddr dep used by this module returns Uint8Arrays and may
|
|
77
|
-
not be compatible with previous versions
|
|
78
|
-
|
|
79
|
-
* chore: update utils
|
|
80
|
-
|
|
81
|
-
* chore: remove gh dep url
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
<a name="0.15.1"></a>
|
|
86
|
-
## [0.15.1](https://github.com/libp2p/js-libp2p-tcp/compare/v0.15.0...v0.15.1) (2020-08-11)
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
<a name="0.15.0"></a>
|
|
91
|
-
# [0.15.0](https://github.com/libp2p/js-libp2p-tcp/compare/v0.14.6...v0.15.0) (2020-08-07)
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
### Chores
|
|
95
|
-
|
|
96
|
-
* update deps ([#134](https://github.com/libp2p/js-libp2p-tcp/issues/134)) ([d9f9912](https://github.com/libp2p/js-libp2p-tcp/commit/d9f9912))
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
### BREAKING CHANGES
|
|
100
|
-
|
|
101
|
-
* - The multiaddr dep used by this module returns Uint8Arrays and may
|
|
102
|
-
not be compatible with previous versions
|
|
103
|
-
|
|
104
|
-
* chore: update utils
|
|
105
|
-
|
|
106
|
-
* chore: remove gh dep url
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
<a name="0.14.6"></a>
|
|
111
|
-
## [0.14.6](https://github.com/libp2p/js-libp2p-tcp/compare/v0.14.5...v0.14.6) (2020-07-17)
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
<a name="0.14.5"></a>
|
|
116
|
-
## [0.14.5](https://github.com/libp2p/js-libp2p-tcp/compare/v0.14.4...v0.14.5) (2020-04-28)
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
### Bug Fixes
|
|
120
|
-
|
|
121
|
-
* catch error from maConn.close ([#128](https://github.com/libp2p/js-libp2p-tcp/issues/128)) ([0fe0815](https://github.com/libp2p/js-libp2p-tcp/commit/0fe0815))
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
<a name="0.14.4"></a>
|
|
126
|
-
## [0.14.4](https://github.com/libp2p/js-libp2p-tcp/compare/v0.14.3...v0.14.4) (2020-02-24)
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
### Bug Fixes
|
|
130
|
-
|
|
131
|
-
* catch thrown maConn errors in listener ([#122](https://github.com/libp2p/js-libp2p-tcp/issues/122)) ([86db568](https://github.com/libp2p/js-libp2p-tcp/commit/86db568)), closes [#121](https://github.com/libp2p/js-libp2p-tcp/issues/121)
|
|
132
|
-
* remove use of assert module ([#123](https://github.com/libp2p/js-libp2p-tcp/issues/123)) ([6272876](https://github.com/libp2p/js-libp2p-tcp/commit/6272876))
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
<a name="0.14.3"></a>
|
|
137
|
-
## [0.14.3](https://github.com/libp2p/js-libp2p-tcp/compare/v0.14.2...v0.14.3) (2019-12-20)
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
### Bug Fixes
|
|
141
|
-
|
|
142
|
-
* transport should not handle connection if upgradeInbound throws ([#119](https://github.com/libp2p/js-libp2p-tcp/issues/119)) ([21f8747](https://github.com/libp2p/js-libp2p-tcp/commit/21f8747))
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
<a name="0.14.2"></a>
|
|
147
|
-
## [0.14.2](https://github.com/libp2p/js-libp2p-tcp/compare/v0.14.1...v0.14.2) (2019-12-06)
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
### Bug Fixes
|
|
151
|
-
|
|
152
|
-
* **log:** log the bound port and host ([#117](https://github.com/libp2p/js-libp2p-tcp/issues/117)) ([7702646](https://github.com/libp2p/js-libp2p-tcp/commit/7702646))
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
### Features
|
|
156
|
-
|
|
157
|
-
* add path multiaddr support ([#118](https://github.com/libp2p/js-libp2p-tcp/issues/118)) ([d76a1f2](https://github.com/libp2p/js-libp2p-tcp/commit/d76a1f2))
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
<a name="0.14.1"></a>
|
|
162
|
-
## [0.14.1](https://github.com/libp2p/js-libp2p-tcp/compare/v0.14.0...v0.14.1) (2019-09-20)
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
### Bug Fixes
|
|
166
|
-
|
|
167
|
-
* ensure timeline.close is set ([#113](https://github.com/libp2p/js-libp2p-tcp/issues/113)) ([605ee27](https://github.com/libp2p/js-libp2p-tcp/commit/605ee27))
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
<a name="0.14.0"></a>
|
|
172
|
-
# [0.14.0](https://github.com/libp2p/js-libp2p-tcp/compare/v0.13.1...v0.14.0) (2019-09-16)
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
### Features
|
|
176
|
-
|
|
177
|
-
* change api to async / await ([#112](https://github.com/libp2p/js-libp2p-tcp/issues/112)) ([cf7d1b8](https://github.com/libp2p/js-libp2p-tcp/commit/cf7d1b8))
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
### BREAKING CHANGES
|
|
181
|
-
|
|
182
|
-
* All places in the API that used callbacks are now replaced with async/await. The API has also been updated according to the latest `interface-transport` version, https://github.com/libp2p/interface-transport/tree/v0.6.0#api.
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
<a name="0.13.1"></a>
|
|
187
|
-
## [0.13.1](https://github.com/libp2p/js-libp2p-tcp/compare/v0.13.0...v0.13.1) (2019-08-08)
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
<a name="0.13.0"></a>
|
|
192
|
-
# [0.13.0](https://github.com/libp2p/js-libp2p-tcp/compare/v0.12.1...v0.13.0) (2018-09-12)
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
### Features
|
|
196
|
-
|
|
197
|
-
* add support for dialing over dns ([eba0b48](https://github.com/libp2p/js-libp2p-tcp/commit/eba0b48))
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
<a name="0.12.1"></a>
|
|
202
|
-
## [0.12.1](https://github.com/libp2p/js-libp2p-tcp/compare/v0.12.0...v0.12.1) (2018-07-31)
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
### Bug Fixes
|
|
206
|
-
|
|
207
|
-
* invalid ip address and daemon can be crashed by remote user ([4b04b17](https://github.com/libp2p/js-libp2p-tcp/commit/4b04b17))
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
<a name="0.12.0"></a>
|
|
212
|
-
# [0.12.0](https://github.com/libp2p/js-libp2p-tcp/compare/v0.11.6...v0.12.0) (2018-04-05)
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
### Features
|
|
216
|
-
|
|
217
|
-
* add class-is module ([ded1f68](https://github.com/libp2p/js-libp2p-tcp/commit/ded1f68))
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
<a name="0.11.6"></a>
|
|
222
|
-
## [0.11.6](https://github.com/libp2p/js-libp2p-tcp/compare/v0.11.5...v0.11.6) (2018-02-20)
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
<a name="0.11.5"></a>
|
|
227
|
-
## [0.11.5](https://github.com/libp2p/js-libp2p-tcp/compare/v0.11.4...v0.11.5) (2018-02-07)
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
<a name="0.11.4"></a>
|
|
232
|
-
## [0.11.4](https://github.com/libp2p/js-libp2p-tcp/compare/v0.11.3...v0.11.4) (2018-02-07)
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
<a name="0.11.3"></a>
|
|
237
|
-
## [0.11.3](https://github.com/libp2p/js-libp2p-tcp/compare/v0.11.2...v0.11.3) (2018-02-07)
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
### Bug Fixes
|
|
241
|
-
|
|
242
|
-
* clearing timeout when closes ([#87](https://github.com/libp2p/js-libp2p-tcp/issues/87)) ([f8f5266](https://github.com/libp2p/js-libp2p-tcp/commit/f8f5266))
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
<a name="0.11.2"></a>
|
|
247
|
-
## [0.11.2](https://github.com/libp2p/js-libp2p-tcp/compare/v0.11.1...v0.11.2) (2018-01-12)
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
### Bug Fixes
|
|
251
|
-
|
|
252
|
-
* missing dependency debug, fixes [#84](https://github.com/libp2p/js-libp2p-tcp/issues/84) ([74a88f6](https://github.com/libp2p/js-libp2p-tcp/commit/74a88f6))
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
<a name="0.11.1"></a>
|
|
257
|
-
## [0.11.1](https://github.com/libp2p/js-libp2p-tcp/compare/v0.11.0...v0.11.1) (2017-10-13)
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
### Features
|
|
261
|
-
|
|
262
|
-
* relay filtering ([11c4f45](https://github.com/libp2p/js-libp2p-tcp/commit/11c4f45))
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
<a name="0.11.0"></a>
|
|
267
|
-
# [0.11.0](https://github.com/libp2p/js-libp2p-tcp/compare/v0.10.2...v0.11.0) (2017-09-03)
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
### Features
|
|
271
|
-
|
|
272
|
-
* p2p addrs situation ([#82](https://github.com/libp2p/js-libp2p-tcp/issues/82)) ([a54bb83](https://github.com/libp2p/js-libp2p-tcp/commit/a54bb83))
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
<a name="0.10.2"></a>
|
|
277
|
-
## [0.10.2](https://github.com/libp2p/js-libp2p-tcp/compare/v0.10.1...v0.10.2) (2017-07-22)
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
<a name="0.10.1"></a>
|
|
282
|
-
## [0.10.1](https://github.com/libp2p/js-libp2p-tcp/compare/v0.10.0...v0.10.1) (2017-04-13)
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
### Bug Fixes
|
|
286
|
-
|
|
287
|
-
* catch errors on incomming sockets ([e204517](https://github.com/libp2p/js-libp2p-tcp/commit/e204517))
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
<a name="0.10.0"></a>
|
|
292
|
-
# [0.10.0](https://github.com/libp2p/js-libp2p-tcp/compare/v0.9.4...v0.10.0) (2017-03-27)
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
### Bug Fixes
|
|
296
|
-
|
|
297
|
-
* **dial:** proper error handling on dial ([#77](https://github.com/libp2p/js-libp2p-tcp/issues/77)) ([4d4f295](https://github.com/libp2p/js-libp2p-tcp/commit/4d4f295))
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
<a name="0.9.4"></a>
|
|
302
|
-
## [0.9.4](https://github.com/libp2p/js-libp2p-tcp/compare/v0.9.3...v0.9.4) (2017-03-21)
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
<a name="0.9.3"></a>
|
|
307
|
-
## [0.9.3](https://github.com/libp2p/js-libp2p-tcp/compare/v0.9.2...v0.9.3) (2017-02-09)
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
<a name="0.9.2"></a>
|
|
312
|
-
## [0.9.2](https://github.com/libp2p/js-libp2p-tcp/compare/v0.9.1...v0.9.2) (2017-02-09)
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
<a name="0.9.1"></a>
|
|
317
|
-
## [0.9.1](https://github.com/libp2p/js-libp2p-tcp/compare/v0.9.0...v0.9.1) (2016-11-03)
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
<a name="0.9.0"></a>
|
|
322
|
-
# [0.9.0](https://github.com/libp2p/js-libp2p-tcp/compare/v0.8.1...v0.9.0) (2016-11-03)
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
### Bug Fixes
|
|
326
|
-
|
|
327
|
-
* **deps:** remove unused pull dep ([06689e3](https://github.com/libp2p/js-libp2p-tcp/commit/06689e3))
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
<a name="0.8.1"></a>
|
|
332
|
-
## [0.8.1](https://github.com/libp2p/js-libp2p-tcp/compare/v0.8.0...v0.8.1) (2016-09-06)
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
<a name="0.8.0"></a>
|
|
337
|
-
# [0.8.0](https://github.com/libp2p/js-libp2p-tcp/compare/v0.7.4...v0.8.0) (2016-09-06)
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
### Features
|
|
341
|
-
|
|
342
|
-
* **deps:** update to published deps ([da8ee21](https://github.com/libp2p/js-libp2p-tcp/commit/da8ee21))
|
|
343
|
-
* **pull:** migration to pull-streams ([5e89a26](https://github.com/libp2p/js-libp2p-tcp/commit/5e89a26))
|
|
344
|
-
* **readme:** add pull-streams documentation ([d9f65e0](https://github.com/libp2p/js-libp2p-tcp/commit/d9f65e0))
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
<a name="0.7.4"></a>
|
|
349
|
-
## [0.7.4](https://github.com/libp2p/js-libp2p-tcp/compare/v0.7.3...v0.7.4) (2016-08-03)
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
<a name="0.7.3"></a>
|
|
354
|
-
## [0.7.3](https://github.com/libp2p/js-libp2p-tcp/compare/v0.7.2...v0.7.3) (2016-06-26)
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
<a name="0.7.2"></a>
|
|
359
|
-
## [0.7.2](https://github.com/libp2p/js-libp2p-tcp/compare/v0.7.1...v0.7.2) (2016-06-23)
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
<a name="0.7.1"></a>
|
|
364
|
-
## [0.7.1](https://github.com/libp2p/js-libp2p-tcp/compare/v0.7.0...v0.7.1) (2016-06-23)
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
### Bug Fixes
|
|
368
|
-
|
|
369
|
-
* error was passed in duplicate ([9ac5cca](https://github.com/libp2p/js-libp2p-tcp/commit/9ac5cca))
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
<a name="0.7.0"></a>
|
|
374
|
-
# [0.7.0](https://github.com/libp2p/js-libp2p-tcp/compare/v0.6.2...v0.7.0) (2016-06-22)
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
<a name="0.6.2"></a>
|
|
379
|
-
## [0.6.2](https://github.com/libp2p/js-libp2p-tcp/compare/v0.6.1...v0.6.2) (2016-06-01)
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
### Bug Fixes
|
|
383
|
-
|
|
384
|
-
* address cr ([2ed01e8](https://github.com/libp2p/js-libp2p-tcp/commit/2ed01e8))
|
|
385
|
-
* destroy hanging connections after timeout ([4a12169](https://github.com/libp2p/js-libp2p-tcp/commit/4a12169))
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
<a name="0.6.1"></a>
|
|
390
|
-
## [0.6.1](https://github.com/libp2p/js-libp2p-tcp/compare/v0.6.0...v0.6.1) (2016-05-29)
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
<a name="0.6.0"></a>
|
|
395
|
-
# [0.6.0](https://github.com/libp2p/js-libp2p-tcp/compare/v0.5.3...v0.6.0) (2016-05-22)
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
<a name="0.5.3"></a>
|
|
400
|
-
## [0.5.3](https://github.com/libp2p/js-libp2p-tcp/compare/v0.5.2...v0.5.3) (2016-05-22)
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
<a name="0.5.2"></a>
|
|
405
|
-
## [0.5.2](https://github.com/libp2p/js-libp2p-tcp/compare/v0.5.1...v0.5.2) (2016-05-09)
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
<a name="0.5.1"></a>
|
|
410
|
-
## [0.5.1](https://github.com/libp2p/js-libp2p-tcp/compare/v0.5.0...v0.5.1) (2016-05-08)
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
<a name="0.5.0"></a>
|
|
415
|
-
# [0.5.0](https://github.com/libp2p/js-libp2p-tcp/compare/v0.4.0...v0.5.0) (2016-04-25)
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
<a name="0.4.0"></a>
|
|
420
|
-
# [0.4.0](https://github.com/libp2p/js-libp2p-tcp/compare/v0.3.0...v0.4.0) (2016-03-14)
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
<a name="0.3.0"></a>
|
|
425
|
-
# [0.3.0](https://github.com/libp2p/js-libp2p-tcp/compare/v0.2.1...v0.3.0) (2016-03-10)
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
<a name="0.2.1"></a>
|
|
430
|
-
## [0.2.1](https://github.com/libp2p/js-libp2p-tcp/compare/v0.2.0...v0.2.1) (2016-03-04)
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
<a name="0.2.0"></a>
|
|
435
|
-
# [0.2.0](https://github.com/libp2p/js-libp2p-tcp/compare/v0.1.2...v0.2.0) (2016-03-04)
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
<a name="0.1.2"></a>
|
|
440
|
-
## [0.1.2](https://github.com/libp2p/js-libp2p-tcp/compare/v0.1.1...v0.1.2) (2015-10-29)
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
<a name="0.1.1"></a>
|
|
445
|
-
## [0.1.1](https://github.com/libp2p/js-libp2p-tcp/compare/v0.1.0...v0.1.1) (2015-09-17)
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
<a name="0.1.0"></a>
|
|
450
|
-
# 0.1.0 (2015-09-16)
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
package/LICENSE-APACHE
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
|
|
2
|
-
|
|
3
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
4
|
-
|
|
5
|
-
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
package/LICENSE-MIT
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
The MIT License (MIT)
|
|
2
|
-
|
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
5
|
-
in the Software without restriction, including without limitation the rights
|
|
6
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
8
|
-
furnished to do so, subject to the following conditions:
|
|
9
|
-
|
|
10
|
-
The above copyright notice and this permission notice shall be included in
|
|
11
|
-
all copies or substantial portions of the Software.
|
|
12
|
-
|
|
13
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
19
|
-
THE SOFTWARE.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/constants.ts","../node_modules/@multiformats/multiaddr/dist/src/protocols-table.d.ts","../node_modules/@multiformats/multiaddr/dist/src/index.d.ts","../node_modules/@multiformats/mafmt/dist/src/index.d.ts","../node_modules/err-code/dist/index.d.ts","../node_modules/@types/ms/index.d.ts","../node_modules/@types/debug/index.d.ts","../node_modules/abortable-iterator/index.d.ts","../node_modules/@libp2p/utils/dist/src/ip-port-to-multiaddr.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/multiformats/types/bases/interface.d.ts","../node_modules/multiformats/types/hashes/interface.d.ts","../node_modules/multiformats/types/cid.d.ts","../node_modules/@libp2p/interfaces/dist/src/peer-id/index.d.ts","../node_modules/@libp2p/interfaces/dist/src/stream-muxer/index.d.ts","../node_modules/@libp2p/interfaces/dist/src/connection/status.d.ts","../node_modules/@libp2p/interfaces/dist/src/connection/index.d.ts","../node_modules/@libp2p/interfaces/dist/src/index.d.ts","../node_modules/@libp2p/interfaces/dist/src/transport/index.d.ts","../src/socket-to-conn.ts","../src/utils.ts","../src/listener.ts","../src/index.ts","../node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../node_modules/@types/sinon/index.d.ts","../node_modules/@libp2p/interface-compliance-tests/dist/src/index.d.ts","../node_modules/@libp2p/interface-compliance-tests/dist/src/transport/index.d.ts","../test/compliance.spec.ts","../node_modules/@types/chai/index.d.ts","../node_modules/@types/chai-as-promised/index.d.ts","../node_modules/chai-parentheses/index.d.ts","../node_modules/@types/chai-subset/index.d.ts","../node_modules/chai-bites/index.d.ts","../node_modules/@types/chai-string/index.d.ts","../node_modules/aegir/dist/utils/chai.d.ts","../node_modules/@libp2p/interface-compliance-tests/dist/src/transport/utils/index.d.ts","../test/connection.spec.ts","../test/filter.spec.ts","../node_modules/it-pipe/index.d.ts","../node_modules/streaming-iterables/dist/index.d.ts","../test/listen-dial.spec.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/json5/index.d.ts","../node_modules/@types/long/index.d.ts","../node_modules/@types/minimatch/index.d.ts","../node_modules/@types/minimist/index.d.ts","../node_modules/@types/mocha/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts","../node_modules/@types/parse-json/index.d.ts","../node_modules/@types/retry/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts","../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"e34eb9339171ec45da2801c1967e4d378bd61a1dceaa1b1b4e1b6d28cb9ca962","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"9726f71eafa561120b0b8510f0a7561ffb6de67c1f3e3d1621b4689a7cfb5739","dcaaf86cdcf77baf88172a23d27df51c284afd72935bd1d57c7a9edd2f4f6007","6a30d3048a516174263bd3b4d916ed87cd418a67226d08f5cb4e128819d047f4","755a8200628faa558e2586c51d29724e972772cc1ef39f7862f07d680952524a","a02a19deaa2c497d36c136459dd2561b57ebb22075ac0d6aad176430a8639aa1","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","f1304f38533801f935674f1f096ccd8d12e98e1daeb7ad7582103e5d704c0a42","78ef5cd8d627b2c816922af04603cae53caaf31d70de765871299a7748e9cfa2","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","b9b963043551b034abd9e7c6d859f7a81d99479fde938d983114d167d0644a78","160cc6e3d06938535bc887754afe5798c22d81ce83a9792ebfe2371a70f2ffc2","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"eecd493fc62c4dba3d988e2d7dff63299bf12ab49f5c9021dfef8dcc1ff2089e","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","945a841f9a591197154c85386bc5a1467d42d325104bb36db51bc566bbb240be","10c39ce1df102994b47d4bc0c71aa9a6aea76f4651a5ec51914431f50bc883a1",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a7971f9fb2a32ec7788ec6cda9d7a33c02023dfe9a62db2030ad1359649d8050","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"1cdb8f094b969dcc183745dc88404e2d8fcf2a858c6e7cc2441011476573238e","930446bf32192f698b78f8ea4b309d8c2cfe02ab5ad78e4db907417405ebf5e7","a5de53bdfcdca7af39e735be7bbd736c38b1e34eeec36bd6a835a0e37ba23705","ef706b4970dd8bf7ab414bb981993d4f379845f3592622237bad1b3332fde794","254c3d289f204ba745b8353d4530566df1adcf7666ba29294f733a2e1b3cdf77","5fb8b088382f73d2ff63558d14494c5defd5fa783adbff4b72f3cfb02ee9fba6","6666d48a46dbfd565490e7f8789093e2392c5bdcc3a380dfdd91c77237e43101","ecbf5c1c87fe17bc253621fee49d2378b947c1a5d6aaa726efebf9df099e0da5","ce76ac1c5c57e5c082967bd7734e32b4c30efd28c5ea828da241ad8059cef072","3d4abadc850c4e1c56b345c1c44d434134888c7cdd1b496e1d5c5bfbe5321356","d4694a1562bc15a6fddfe69b1be361b6d8f1300cbf72a691679fe6a2d9880ce3","833f7af32638188a31eba3202cb8cf9d1999e9f10e3d28458350e72f68ec2682","5a12a1331531cd0f97024b7670f72e0a0d707d16bf36c6ea06e0a5dcb03c14a1","70b1774a7c4bd1ab37744878a763d3aa1d86fcf5d257e3bbd86a70900ed419d4","6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","50a5b297e6c91df4f6068d98467a5e7ba4eeb888b9376757734dd4b1dfcdacd4","9f1489f84adf8947a8ec1c8cd4ac71623ca56845fd440cc3a8b562b8be662bd3","937b7451b6161a45c581d4127ca105f5802a815d48b2a45ccf6e9a695e10b521","a88d6fa89961508357e6bbadb83f4045d948899fbe824586b7b0de4d60cf5928",{"version":"c8747693e5872ad5ef3aa016731a06915e1c34dae987829d9aa5bd40c7a2c54b","affectsGlobalScope":true},{"version":"f6ae17283c6912c202004178339d6d22f8c9edfe4e335f9f11b555c631633daf","affectsGlobalScope":true},{"version":"c1f79c6d85cd84518fd7349588b3c61bdc189f58e3866f925cbf4631c81e31f9","affectsGlobalScope":true},{"version":"f4c0db3a49cea9babd5d224ba14243a6a6119bf65a65198994033aaea3a60a71","affectsGlobalScope":true},{"version":"42f28f4cfca4a70bd89c1d55d76c7978275030b894f6793f36890265c11a83a4","affectsGlobalScope":true},{"version":"41071d2f1a39386d10bf36d1ba4712ad42a900047f16a109936df9e48f13673e","affectsGlobalScope":true},"61f705a779045717e1a18c75456c2a7ca52eb50e0694a3da86fddfe67503bff6","d0c03fc361cffc2c598548d4946ddc36a54dd066860706dd367065ae6b412fb9","68b2cfd3fad9494b84088079e906178be03ab9f44a1480c15000387953c144e1","0ae765509269c1b8af1ecde9315ec9167e8f851ecc813717cd57fc1198296ed9","b413b4ac5cc2c9ffeb8d6b9141abf53568e79751f705886a8c34a6ecf1814da1","58749b35899549ee2e69d3d41c1fc31d878deef7a70520ec1cee312c24d1c57f","9908868bbedef040a021a24a5b3a61ad7e7526f4d0da8b8452e719fae6111e30","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","e8465811693dfe4e96ef2b3dffda539d6edfe896961b7af37b44db2c0e48532b","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"e8bf92aabac2b11e1bf60a0161039cd6f5f0cd9713863ca2289dd7b10eddece8","affectsGlobalScope":true},"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","45627c7d24633686b0274d9402652930ba2e4fe74df04f114393ae121d1e8afe","b2d70a269840a9528db473ac7565442434333a05c1f66801a7a672e82beb903e"],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":false,"esModuleInterop":true,"importsNotUsedAsValues":2,"module":6,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitReturns":false,"noUnusedLocals":true,"noUnusedParameters":false,"outDir":"./","removeComments":false,"skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":7},"fileIdsList":[[93],[43,93,109,116],[93,109],[43,93,104,105,106],[93,101,102,103],[43,65,93,100,107,108],[43,93],[42,93],[93,119],[46,93],[50,93],[53,93],[54,59,93],[55,65,66,73,82,92,93],[55,56,65,73,93],[57,93],[58,59,66,74,93],[59,82,89,93],[60,62,65,73,93],[61,93],[62,63,93],[64,65,93],[65,93],[65,66,67,82,92,93],[65,66,67,82,93],[68,73,82,92,93],[65,66,68,69,73,82,89,92,93],[68,70,82,89,92,93],[50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99],[65,71,93],[72,92,93],[62,65,73,82,93],[74,93],[75,93],[53,76,93],[77,91,93,97],[78,93],[79,93],[65,80,93],[80,81,93,95],[65,82,83,84,93],[82,84,93],[82,83,93],[85,93],[86,93],[65,87,88,93],[87,88,93],[59,73,89,93],[90,93],[73,91,93],[54,68,79,92,93],[59,93],[82,93,94],[93,95],[93,96],[54,59,65,67,76,82,92,93,95,97],[82,93,98],[93,114],[93,142],[65,82,93,100],[93,119,120,121,122,123,124],[93,119,120],[93,101,102],[41,43,44,45,47,48,73,93,107,109,110,111,112],[41,43,47,65,73,93,107,109,110,111],[41,43,47,48,49,73,93,109],[43,74,93],[43,73,93,113,115,117],[43,93,107,113,125,126],[43,93,113,125,126],[43,74,75,93,113,125,126,129,130]],"referencedMap":[[116,1],[117,2],[126,3],[107,4],[106,1],[108,1],[104,5],[105,1],[109,6],[49,7],[44,7],[43,8],[42,1],[114,1],[120,9],[124,9],[122,9],[119,1],[47,10],[132,1],[133,1],[134,1],[135,1],[136,1],[137,1],[138,1],[46,1],[50,11],[51,11],[53,12],[54,13],[55,14],[56,15],[57,16],[58,17],[59,18],[60,19],[61,20],[62,21],[63,21],[64,22],[65,23],[66,24],[67,25],[52,1],[99,1],[68,26],[69,27],[70,28],[100,29],[71,30],[72,31],[73,32],[74,33],[75,34],[76,35],[77,36],[78,37],[79,38],[80,39],[81,40],[82,41],[84,42],[83,43],[85,44],[86,45],[87,46],[88,47],[89,48],[90,49],[91,50],[92,51],[93,52],[94,53],[95,54],[96,55],[97,56],[98,57],[139,1],[140,1],[141,1],[115,58],[142,1],[143,59],[144,60],[48,1],[125,61],[123,9],[121,62],[45,1],[129,1],[101,1],[103,63],[102,1],[130,1],[8,1],[9,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[4,1],[23,1],[20,1],[21,1],[22,1],[24,1],[25,1],[26,1],[5,1],[27,1],[28,1],[29,1],[30,1],[6,1],[31,1],[32,1],[33,1],[34,1],[7,1],[39,1],[35,1],[36,1],[37,1],[38,1],[1,1],[40,1],[41,1],[113,64],[112,65],[110,66],[111,67],[118,68],[127,69],[128,70],[131,71]],"exportedModulesMap":[[116,1],[117,2],[126,3],[107,4],[106,1],[108,1],[104,5],[105,1],[109,6],[49,7],[44,7],[43,8],[42,1],[114,1],[120,9],[124,9],[122,9],[119,1],[47,10],[132,1],[133,1],[134,1],[135,1],[136,1],[137,1],[138,1],[46,1],[50,11],[51,11],[53,12],[54,13],[55,14],[56,15],[57,16],[58,17],[59,18],[60,19],[61,20],[62,21],[63,21],[64,22],[65,23],[66,24],[67,25],[52,1],[99,1],[68,26],[69,27],[70,28],[100,29],[71,30],[72,31],[73,32],[74,33],[75,34],[76,35],[77,36],[78,37],[79,38],[80,39],[81,40],[82,41],[84,42],[83,43],[85,44],[86,45],[87,46],[88,47],[89,48],[90,49],[91,50],[92,51],[93,52],[94,53],[95,54],[96,55],[97,56],[98,57],[139,1],[140,1],[141,1],[115,58],[142,1],[143,59],[144,60],[48,1],[125,61],[123,9],[121,62],[45,1],[129,1],[101,1],[103,63],[102,1],[130,1],[8,1],[9,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[4,1],[23,1],[20,1],[21,1],[22,1],[24,1],[25,1],[26,1],[5,1],[27,1],[28,1],[29,1],[30,1],[6,1],[31,1],[32,1],[33,1],[34,1],[7,1],[39,1],[35,1],[36,1],[37,1],[38,1],[1,1],[40,1],[41,1],[113,64],[112,65],[110,66],[111,67],[118,68],[127,69],[128,70],[131,71]],"semanticDiagnosticsPerFile":[116,117,126,107,106,108,104,105,109,49,44,43,42,114,120,124,122,119,47,132,133,134,135,136,137,138,46,50,51,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,52,99,68,69,70,100,71,72,73,74,75,76,77,78,79,80,81,82,84,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,139,140,141,115,142,143,144,48,125,123,121,45,129,101,103,102,130,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,31,32,33,34,7,39,35,36,37,38,1,40,41,113,112,110,111,118,127,128,131]},"version":"4.4.4"}
|