altair-graphql-core 4.4.1 → 4.4.2
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.
|
@@ -3,6 +3,7 @@ import { Observable } from 'rxjs';
|
|
|
3
3
|
import { Client } from 'graphql-ws';
|
|
4
4
|
export declare class GraphQLWsSubscriptionProvider extends SubscriptionProvider {
|
|
5
5
|
client?: Client;
|
|
6
|
+
cleanup?: () => void;
|
|
6
7
|
createClient(): void;
|
|
7
8
|
execute(options: SubscriptionProviderExecuteOptions): Observable<unknown>;
|
|
8
9
|
close(): void;
|
|
@@ -22,7 +22,7 @@ export class GraphQLWsSubscriptionProvider extends SubscriptionProvider {
|
|
|
22
22
|
throw new Error('Could not create subscription client!');
|
|
23
23
|
}
|
|
24
24
|
return new Observable((subscriber) => {
|
|
25
|
-
|
|
25
|
+
this.cleanup = this.client.subscribe({
|
|
26
26
|
query: options.query,
|
|
27
27
|
variables: options.variables,
|
|
28
28
|
operationName: options.operationName,
|
|
@@ -34,6 +34,8 @@ export class GraphQLWsSubscriptionProvider extends SubscriptionProvider {
|
|
|
34
34
|
});
|
|
35
35
|
}
|
|
36
36
|
close() {
|
|
37
|
+
this.cleanup?.();
|
|
38
|
+
this.cleanup = undefined;
|
|
37
39
|
this.client?.dispose();
|
|
38
40
|
this.client = undefined;
|
|
39
41
|
}
|
|
@@ -3,6 +3,7 @@ import { SubscriptionClient } from 'subscriptions-transport-ws';
|
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
export declare class WebsocketSubscriptionProvider extends SubscriptionProvider {
|
|
5
5
|
client?: SubscriptionClient;
|
|
6
|
+
cleanup?: () => void;
|
|
6
7
|
createClient(): void;
|
|
7
8
|
execute(options: SubscriptionProviderExecuteOptions): Observable<unknown>;
|
|
8
9
|
close(): void;
|
|
@@ -15,7 +15,7 @@ export class WebsocketSubscriptionProvider extends SubscriptionProvider {
|
|
|
15
15
|
throw new Error('Could not create subscription client!');
|
|
16
16
|
}
|
|
17
17
|
return new Observable((subscriber) => {
|
|
18
|
-
|
|
18
|
+
const res = this.client.request({
|
|
19
19
|
query: options.query,
|
|
20
20
|
variables: options.variables,
|
|
21
21
|
operationName: options.operationName,
|
|
@@ -24,9 +24,12 @@ export class WebsocketSubscriptionProvider extends SubscriptionProvider {
|
|
|
24
24
|
error: (...args) => subscriber.error(...args),
|
|
25
25
|
complete: () => subscriber.complete(),
|
|
26
26
|
});
|
|
27
|
+
this.cleanup = res.unsubscribe;
|
|
27
28
|
});
|
|
28
29
|
}
|
|
29
30
|
close() {
|
|
31
|
+
this.cleanup?.();
|
|
32
|
+
this.cleanup = undefined;
|
|
30
33
|
this.client?.unsubscribeAll();
|
|
31
34
|
this.client?.close();
|
|
32
35
|
this.client = undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "altair-graphql-core",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.2",
|
|
4
4
|
"description": "Several of the core logic for altair graphql client",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"types": "./build/index.d.ts",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"util": "^0.12.4",
|
|
62
62
|
"uuid": "^8.3.2"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "44bf6dbb486b9afb51be1cb56228903346f515d4"
|
|
65
65
|
}
|
package/yarn-error.log
DELETED
|
@@ -1,1256 +0,0 @@
|
|
|
1
|
-
Arguments:
|
|
2
|
-
/Users/samuel/.nvm/versions/node/v14.17.6/bin/node /usr/local/Cellar/yarn/1.22.10/libexec/bin/yarn.js add --dev @types/convert-css-color-name-to-hex
|
|
3
|
-
|
|
4
|
-
PATH:
|
|
5
|
-
/Users/samuel/.rbenv/shims:/Users/samuel/google-cloud-sdk/bin:/usr/local/Cellar/pyenv-virtualenv/1.1.5/shims:/Users/samuel/.pyenv/shims:/Users/samuel/.rbenv/shims:/Users/samuel/go/bin:/Users/samuel/.nvm/versions/node/v14.17.6/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/MacGPG2/bin:/Library/Apple/usr/bin:/Users/samuel/Library/Android/sdk/tools:/Users/samuel/Library/Android/sdk/platform-tools
|
|
6
|
-
|
|
7
|
-
Yarn version:
|
|
8
|
-
1.22.10
|
|
9
|
-
|
|
10
|
-
Node version:
|
|
11
|
-
14.17.6
|
|
12
|
-
|
|
13
|
-
Platform:
|
|
14
|
-
darwin x64
|
|
15
|
-
|
|
16
|
-
Trace:
|
|
17
|
-
Error: https://registry.yarnpkg.com/@types%2fconvert-css-color-name-to-hex: Not found
|
|
18
|
-
at Request.params.callback [as _callback] (/usr/local/Cellar/yarn/1.22.10/libexec/lib/cli.js:66988:18)
|
|
19
|
-
at Request.self.callback (/usr/local/Cellar/yarn/1.22.10/libexec/lib/cli.js:140749:22)
|
|
20
|
-
at Request.emit (events.js:400:28)
|
|
21
|
-
at Request.<anonymous> (/usr/local/Cellar/yarn/1.22.10/libexec/lib/cli.js:141721:10)
|
|
22
|
-
at Request.emit (events.js:400:28)
|
|
23
|
-
at IncomingMessage.<anonymous> (/usr/local/Cellar/yarn/1.22.10/libexec/lib/cli.js:141643:12)
|
|
24
|
-
at Object.onceWrapper (events.js:519:28)
|
|
25
|
-
at IncomingMessage.emit (events.js:412:35)
|
|
26
|
-
at endReadableNT (internal/streams/readable.js:1317:12)
|
|
27
|
-
at processTicksAndRejections (internal/process/task_queues.js:82:21)
|
|
28
|
-
|
|
29
|
-
npm manifest:
|
|
30
|
-
{
|
|
31
|
-
"name": "altair-graphql-core",
|
|
32
|
-
"version": "4.1.0",
|
|
33
|
-
"description": "Several of the core logic for altair graphql client",
|
|
34
|
-
"main": "./build/index.js",
|
|
35
|
-
"types": "./build/index.d.ts",
|
|
36
|
-
"scripts": {
|
|
37
|
-
"test": "echo \"Error: no test specified\" && exit 0",
|
|
38
|
-
"declarations": "tsc --declaration",
|
|
39
|
-
"prepare": "npm run declarations"
|
|
40
|
-
},
|
|
41
|
-
"engines": {
|
|
42
|
-
"node": ">= 12"
|
|
43
|
-
},
|
|
44
|
-
"repository": {
|
|
45
|
-
"type": "git",
|
|
46
|
-
"url": "git+https://github.com/altair-graphql/altair.git"
|
|
47
|
-
},
|
|
48
|
-
"keywords": [
|
|
49
|
-
"altair",
|
|
50
|
-
"graphql"
|
|
51
|
-
],
|
|
52
|
-
"author": "Samuel Imolorhe <altair@sirmuel.design> (https://sirmuel.design)",
|
|
53
|
-
"license": "MIT",
|
|
54
|
-
"bugs": {
|
|
55
|
-
"url": "https://github.com/altair-graphql/altair/issues"
|
|
56
|
-
},
|
|
57
|
-
"homepage": "https://github.com/altair-graphql/altair#readme",
|
|
58
|
-
"devDependencies": {
|
|
59
|
-
"@types/actioncable": "^5.2.5",
|
|
60
|
-
"@types/node": "^14.14.41",
|
|
61
|
-
"@types/uuid": "^8.3.0",
|
|
62
|
-
"ajv": "^8.6.0",
|
|
63
|
-
"ajv-cli": "^5.0.0",
|
|
64
|
-
"react": "^17.0.2",
|
|
65
|
-
"ts-node": "^8.5.4",
|
|
66
|
-
"typescript": "4.0.7",
|
|
67
|
-
"typescript-json-schema": "^0.50.1"
|
|
68
|
-
},
|
|
69
|
-
"funding": {
|
|
70
|
-
"type": "opencollective",
|
|
71
|
-
"url": "https://opencollective.com/altair",
|
|
72
|
-
"logo": "https://opencollective.com/altair/logo.txt"
|
|
73
|
-
},
|
|
74
|
-
"dependencies": {
|
|
75
|
-
"@apollo/client": "^3.3.20",
|
|
76
|
-
"actioncable": "^5.2.6",
|
|
77
|
-
"apollo-cache-inmemory": "^1.6.6",
|
|
78
|
-
"apollo-link": "^1.2.14",
|
|
79
|
-
"apollo-link-http": "^1.5.17",
|
|
80
|
-
"aws-appsync-auth-link": "^3.0.2",
|
|
81
|
-
"aws-appsync-subscription-link": "^3.0.3",
|
|
82
|
-
"convert-css-color-name-to-hex": "^0.1.1",
|
|
83
|
-
"deepmerge": "^4.2.2",
|
|
84
|
-
"graphql": "^15.5.1",
|
|
85
|
-
"graphql-ws": "^5.1.2",
|
|
86
|
-
"loglevel": "^1.7.1",
|
|
87
|
-
"loglevel-plugin-prefix": "^0.8.4",
|
|
88
|
-
"rxjs": "^7.1.0",
|
|
89
|
-
"subscriptions-transport-ws": "^0.9.19",
|
|
90
|
-
"util": "^0.12.4",
|
|
91
|
-
"uuid": "^8.3.2"
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
yarn manifest:
|
|
96
|
-
No manifest
|
|
97
|
-
|
|
98
|
-
Lockfile:
|
|
99
|
-
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
100
|
-
# yarn lockfile v1
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
"@apollo/client@^3.3.20":
|
|
104
|
-
version "3.3.20"
|
|
105
|
-
resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.3.20.tgz#8f0935fa991857e9cf2e73c9bd378ad7ec97caf8"
|
|
106
|
-
integrity sha512-hS7UmBwJweudw/J3M0RAcusMHNiRuGqkRH6g91PM2ev8cXScIMdXr/++9jo7wD1nAITMCMF4HQQ3LFaw/Or0Bw==
|
|
107
|
-
dependencies:
|
|
108
|
-
"@graphql-typed-document-node/core" "^3.0.0"
|
|
109
|
-
"@types/zen-observable" "^0.8.0"
|
|
110
|
-
"@wry/context" "^0.6.0"
|
|
111
|
-
"@wry/equality" "^0.5.0"
|
|
112
|
-
fast-json-stable-stringify "^2.0.0"
|
|
113
|
-
graphql-tag "^2.12.0"
|
|
114
|
-
hoist-non-react-statics "^3.3.2"
|
|
115
|
-
optimism "^0.16.0"
|
|
116
|
-
prop-types "^15.7.2"
|
|
117
|
-
symbol-observable "^4.0.0"
|
|
118
|
-
ts-invariant "^0.7.0"
|
|
119
|
-
tslib "^1.10.0"
|
|
120
|
-
zen-observable "^0.8.14"
|
|
121
|
-
|
|
122
|
-
"@graphql-typed-document-node/core@^3.0.0":
|
|
123
|
-
version "3.1.0"
|
|
124
|
-
resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.1.0.tgz#0eee6373e11418bfe0b5638f654df7a4ca6a3950"
|
|
125
|
-
integrity sha512-wYn6r8zVZyQJ6rQaALBEln5B1pzxb9shV5Ef97kTvn6yVGrqyXVnDqnU24MXnFubR+rZjBY9NWuxX3FB2sTsjg==
|
|
126
|
-
|
|
127
|
-
"@types/actioncable@^5.2.5":
|
|
128
|
-
version "5.2.5"
|
|
129
|
-
resolved "https://registry.yarnpkg.com/@types/actioncable/-/actioncable-5.2.5.tgz#afe7d1d765f360bcdc88005b45588d148c5362b7"
|
|
130
|
-
integrity sha512-lXxf7qEzjWJanq9PqpsCKzmRTYj6PrxsFOzCU/kXSn7OuHdraI4nF/GOqyOJwRSjNQg3O5LrX2wy0xEg/DXgfg==
|
|
131
|
-
|
|
132
|
-
"@types/json-schema@^7.0.7":
|
|
133
|
-
version "7.0.7"
|
|
134
|
-
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad"
|
|
135
|
-
integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==
|
|
136
|
-
|
|
137
|
-
"@types/node@>=6":
|
|
138
|
-
version "15.12.4"
|
|
139
|
-
resolved "https://registry.yarnpkg.com/@types/node/-/node-15.12.4.tgz#e1cf817d70a1e118e81922c4ff6683ce9d422e26"
|
|
140
|
-
integrity sha512-zrNj1+yqYF4WskCMOHwN+w9iuD12+dGm0rQ35HLl9/Ouuq52cEtd0CH9qMgrdNmi5ejC1/V7vKEXYubB+65DkA==
|
|
141
|
-
|
|
142
|
-
"@types/node@^14.14.33":
|
|
143
|
-
version "14.17.3"
|
|
144
|
-
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.17.3.tgz#6d327abaa4be34a74e421ed6409a0ae2f47f4c3d"
|
|
145
|
-
integrity sha512-e6ZowgGJmTuXa3GyaPbTGxX17tnThl2aSSizrFthQ7m9uLGZBXiGhgE55cjRZTF5kjZvYn9EOPOMljdjwbflxw==
|
|
146
|
-
|
|
147
|
-
"@types/node@^14.14.41":
|
|
148
|
-
version "14.14.41"
|
|
149
|
-
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.41.tgz#d0b939d94c1d7bd53d04824af45f1139b8c45615"
|
|
150
|
-
integrity sha512-dueRKfaJL4RTtSa7bWeTK1M+VH+Gns73oCgzvYfHZywRCoPSd8EkXBL0mZ9unPTveBn+D9phZBaxuzpwjWkW0g==
|
|
151
|
-
|
|
152
|
-
"@types/uuid@^8.3.0":
|
|
153
|
-
version "8.3.0"
|
|
154
|
-
resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-8.3.0.tgz#215c231dff736d5ba92410e6d602050cce7e273f"
|
|
155
|
-
integrity sha512-eQ9qFW/fhfGJF8WKHGEHZEyVWfZxrT+6CLIJGBcZPfxUh/+BnEj+UCGYMlr9qZuX/2AltsvwrGqp0LhEW8D0zQ==
|
|
156
|
-
|
|
157
|
-
"@types/zen-observable@^0.8.0":
|
|
158
|
-
version "0.8.2"
|
|
159
|
-
resolved "https://registry.yarnpkg.com/@types/zen-observable/-/zen-observable-0.8.2.tgz#808c9fa7e4517274ed555fa158f2de4b4f468e71"
|
|
160
|
-
integrity sha512-HrCIVMLjE1MOozVoD86622S7aunluLb2PJdPfb3nYiEtohm8mIB/vyv0Fd37AdeMFrTUQXEunw78YloMA3Qilg==
|
|
161
|
-
|
|
162
|
-
"@wry/context@^0.4.0":
|
|
163
|
-
version "0.4.4"
|
|
164
|
-
resolved "https://registry.yarnpkg.com/@wry/context/-/context-0.4.4.tgz#e50f5fa1d6cfaabf2977d1fda5ae91717f8815f8"
|
|
165
|
-
integrity sha512-LrKVLove/zw6h2Md/KZyWxIkFM6AoyKp71OqpH9Hiip1csjPVoD3tPxlbQUNxEnHENks3UGgNpSBCAfq9KWuag==
|
|
166
|
-
dependencies:
|
|
167
|
-
"@types/node" ">=6"
|
|
168
|
-
tslib "^1.9.3"
|
|
169
|
-
|
|
170
|
-
"@wry/context@^0.6.0":
|
|
171
|
-
version "0.6.0"
|
|
172
|
-
resolved "https://registry.yarnpkg.com/@wry/context/-/context-0.6.0.tgz#f903eceb89d238ef7e8168ed30f4511f92d83e06"
|
|
173
|
-
integrity sha512-sAgendOXR8dM7stJw3FusRxFHF/ZinU0lffsA2YTyyIOfic86JX02qlPqPVqJNZJPAxFt+2EE8bvq6ZlS0Kf+Q==
|
|
174
|
-
dependencies:
|
|
175
|
-
tslib "^2.1.0"
|
|
176
|
-
|
|
177
|
-
"@wry/equality@^0.1.2":
|
|
178
|
-
version "0.1.11"
|
|
179
|
-
resolved "https://registry.yarnpkg.com/@wry/equality/-/equality-0.1.11.tgz#35cb156e4a96695aa81a9ecc4d03787bc17f1790"
|
|
180
|
-
integrity sha512-mwEVBDUVODlsQQ5dfuLUS5/Tf7jqUKyhKYHmVi4fPB6bDMOfWvUPJmKgS1Z7Za/sOI3vzWt4+O7yCiL/70MogA==
|
|
181
|
-
dependencies:
|
|
182
|
-
tslib "^1.9.3"
|
|
183
|
-
|
|
184
|
-
"@wry/equality@^0.5.0":
|
|
185
|
-
version "0.5.1"
|
|
186
|
-
resolved "https://registry.yarnpkg.com/@wry/equality/-/equality-0.5.1.tgz#b22e4e1674d7bf1439f8ccdccfd6a785f6de68b0"
|
|
187
|
-
integrity sha512-FZKbdpbcVcbDxQrKcaBClNsQaMg9nof1RKM7mReJe5DKUzM5u8S7T+PqwNqvib5O2j2xxF1R4p5O3+b6baTrbw==
|
|
188
|
-
dependencies:
|
|
189
|
-
tslib "^2.1.0"
|
|
190
|
-
|
|
191
|
-
"@wry/trie@^0.3.0":
|
|
192
|
-
version "0.3.0"
|
|
193
|
-
resolved "https://registry.yarnpkg.com/@wry/trie/-/trie-0.3.0.tgz#3245e74988c4e3033299e479a1bf004430752463"
|
|
194
|
-
integrity sha512-Yw1akIogPhAT6XPYsRHlZZIS0tIGmAl9EYXHi2scf7LPKKqdqmow/Hu4kEqP2cJR3EjaU/9L0ZlAjFf3hFxmug==
|
|
195
|
-
dependencies:
|
|
196
|
-
tslib "^2.1.0"
|
|
197
|
-
|
|
198
|
-
actioncable@^5.2.6:
|
|
199
|
-
version "5.2.6"
|
|
200
|
-
resolved "https://registry.yarnpkg.com/actioncable/-/actioncable-5.2.6.tgz#cea30647183524f3bae8c2a78fa6ecd6d4dbc70c"
|
|
201
|
-
integrity sha512-ofLHm57nN24zghkl+tQe6IVrZeSJ655lNLQjNQJvtQkeTDqlF30McuMB4o9DqpxdHgW/w0RNWaAQHB6VPlleNQ==
|
|
202
|
-
|
|
203
|
-
ajv-cli@^5.0.0:
|
|
204
|
-
version "5.0.0"
|
|
205
|
-
resolved "https://registry.yarnpkg.com/ajv-cli/-/ajv-cli-5.0.0.tgz#78956ed2934e6dde4c9e696b587be1c2998862e8"
|
|
206
|
-
integrity sha512-LY4m6dUv44HTyhV+u2z5uX4EhPYTM38Iv1jdgDJJJCyOOuqB8KtZEGjPZ2T+sh5ZIJrXUfgErYx/j3gLd3+PlQ==
|
|
207
|
-
dependencies:
|
|
208
|
-
ajv "^8.0.0"
|
|
209
|
-
fast-json-patch "^2.0.0"
|
|
210
|
-
glob "^7.1.0"
|
|
211
|
-
js-yaml "^3.14.0"
|
|
212
|
-
json-schema-migrate "^2.0.0"
|
|
213
|
-
json5 "^2.1.3"
|
|
214
|
-
minimist "^1.2.0"
|
|
215
|
-
|
|
216
|
-
ajv@^8.0.0, ajv@^8.6.0:
|
|
217
|
-
version "8.6.0"
|
|
218
|
-
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.6.0.tgz#60cc45d9c46a477d80d92c48076d972c342e5720"
|
|
219
|
-
integrity sha512-cnUG4NSBiM4YFBxgZIj/In3/6KX+rQ2l2YPRVcvAMQGWEPKuXoPIhxzwqh31jA3IPbI4qEOp/5ILI4ynioXsGQ==
|
|
220
|
-
dependencies:
|
|
221
|
-
fast-deep-equal "^3.1.1"
|
|
222
|
-
json-schema-traverse "^1.0.0"
|
|
223
|
-
require-from-string "^2.0.2"
|
|
224
|
-
uri-js "^4.2.2"
|
|
225
|
-
|
|
226
|
-
ansi-regex@^5.0.0:
|
|
227
|
-
version "5.0.0"
|
|
228
|
-
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
|
|
229
|
-
integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
|
|
230
|
-
|
|
231
|
-
ansi-styles@^4.0.0:
|
|
232
|
-
version "4.3.0"
|
|
233
|
-
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
|
|
234
|
-
integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
|
|
235
|
-
dependencies:
|
|
236
|
-
color-convert "^2.0.1"
|
|
237
|
-
|
|
238
|
-
apollo-cache-inmemory@^1.6.6:
|
|
239
|
-
version "1.6.6"
|
|
240
|
-
resolved "https://registry.yarnpkg.com/apollo-cache-inmemory/-/apollo-cache-inmemory-1.6.6.tgz#56d1f2a463a6b9db32e9fa990af16d2a008206fd"
|
|
241
|
-
integrity sha512-L8pToTW/+Xru2FFAhkZ1OA9q4V4nuvfoPecBM34DecAugUZEBhI2Hmpgnzq2hTKZ60LAMrlqiASm0aqAY6F8/A==
|
|
242
|
-
dependencies:
|
|
243
|
-
apollo-cache "^1.3.5"
|
|
244
|
-
apollo-utilities "^1.3.4"
|
|
245
|
-
optimism "^0.10.0"
|
|
246
|
-
ts-invariant "^0.4.0"
|
|
247
|
-
tslib "^1.10.0"
|
|
248
|
-
|
|
249
|
-
apollo-cache@^1.3.5:
|
|
250
|
-
version "1.3.5"
|
|
251
|
-
resolved "https://registry.yarnpkg.com/apollo-cache/-/apollo-cache-1.3.5.tgz#9dbebfc8dbe8fe7f97ba568a224bca2c5d81f461"
|
|
252
|
-
integrity sha512-1XoDy8kJnyWY/i/+gLTEbYLnoiVtS8y7ikBr/IfmML4Qb+CM7dEEbIUOjnY716WqmZ/UpXIxTfJsY7rMcqiCXA==
|
|
253
|
-
dependencies:
|
|
254
|
-
apollo-utilities "^1.3.4"
|
|
255
|
-
tslib "^1.10.0"
|
|
256
|
-
|
|
257
|
-
apollo-link-http-common@^0.2.16:
|
|
258
|
-
version "0.2.16"
|
|
259
|
-
resolved "https://registry.yarnpkg.com/apollo-link-http-common/-/apollo-link-http-common-0.2.16.tgz#756749dafc732792c8ca0923f9a40564b7c59ecc"
|
|
260
|
-
integrity sha512-2tIhOIrnaF4UbQHf7kjeQA/EmSorB7+HyJIIrUjJOKBgnXwuexi8aMecRlqTIDWcyVXCeqLhUnztMa6bOH/jTg==
|
|
261
|
-
dependencies:
|
|
262
|
-
apollo-link "^1.2.14"
|
|
263
|
-
ts-invariant "^0.4.0"
|
|
264
|
-
tslib "^1.9.3"
|
|
265
|
-
|
|
266
|
-
apollo-link-http@^1.5.17:
|
|
267
|
-
version "1.5.17"
|
|
268
|
-
resolved "https://registry.yarnpkg.com/apollo-link-http/-/apollo-link-http-1.5.17.tgz#499e9f1711bf694497f02c51af12d82de5d8d8ba"
|
|
269
|
-
integrity sha512-uWcqAotbwDEU/9+Dm9e1/clO7hTB2kQ/94JYcGouBVLjoKmTeJTUPQKcJGpPwUjZcSqgYicbFqQSoJIW0yrFvg==
|
|
270
|
-
dependencies:
|
|
271
|
-
apollo-link "^1.2.14"
|
|
272
|
-
apollo-link-http-common "^0.2.16"
|
|
273
|
-
tslib "^1.9.3"
|
|
274
|
-
|
|
275
|
-
apollo-link@^1.2.14:
|
|
276
|
-
version "1.2.14"
|
|
277
|
-
resolved "https://registry.yarnpkg.com/apollo-link/-/apollo-link-1.2.14.tgz#3feda4b47f9ebba7f4160bef8b977ba725b684d9"
|
|
278
|
-
integrity sha512-p67CMEFP7kOG1JZ0ZkYZwRDa369w5PIjtMjvrQd/HnIV8FRsHRqLqK+oAZQnFa1DDdZtOtHTi+aMIW6EatC2jg==
|
|
279
|
-
dependencies:
|
|
280
|
-
apollo-utilities "^1.3.0"
|
|
281
|
-
ts-invariant "^0.4.0"
|
|
282
|
-
tslib "^1.9.3"
|
|
283
|
-
zen-observable-ts "^0.8.21"
|
|
284
|
-
|
|
285
|
-
apollo-utilities@^1.3.0, apollo-utilities@^1.3.4:
|
|
286
|
-
version "1.3.4"
|
|
287
|
-
resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.3.4.tgz#6129e438e8be201b6c55b0f13ce49d2c7175c9cf"
|
|
288
|
-
integrity sha512-pk2hiWrCXMAy2fRPwEyhvka+mqwzeP60Jr1tRYi5xru+3ko94HI9o6lK0CT33/w4RDlxWchmdhDCrvdr+pHCig==
|
|
289
|
-
dependencies:
|
|
290
|
-
"@wry/equality" "^0.1.2"
|
|
291
|
-
fast-json-stable-stringify "^2.0.0"
|
|
292
|
-
ts-invariant "^0.4.0"
|
|
293
|
-
tslib "^1.10.0"
|
|
294
|
-
|
|
295
|
-
arg@^4.1.0:
|
|
296
|
-
version "4.1.2"
|
|
297
|
-
resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.2.tgz#e70c90579e02c63d80e3ad4e31d8bfdb8bd50064"
|
|
298
|
-
integrity sha512-+ytCkGcBtHZ3V2r2Z06AncYO8jz46UEamcspGoU8lHcEbpn6J77QK0vdWvChsclg/tM5XIJC5tnjmPp7Eq6Obg==
|
|
299
|
-
|
|
300
|
-
argparse@^1.0.7:
|
|
301
|
-
version "1.0.10"
|
|
302
|
-
resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
|
|
303
|
-
integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
|
|
304
|
-
dependencies:
|
|
305
|
-
sprintf-js "~1.0.2"
|
|
306
|
-
|
|
307
|
-
available-typed-arrays@^1.0.2:
|
|
308
|
-
version "1.0.4"
|
|
309
|
-
resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.4.tgz#9e0ae84ecff20caae6a94a1c3bc39b955649b7a9"
|
|
310
|
-
integrity sha512-SA5mXJWrId1TaQjfxUYghbqQ/hYioKmLJvPJyDuYRtXXenFNMjj4hSSt1Cf1xsuXSXrtxrVC5Ot4eU6cOtBDdA==
|
|
311
|
-
|
|
312
|
-
aws-appsync-auth-link@^3.0.2, aws-appsync-auth-link@^3.0.4:
|
|
313
|
-
version "3.0.4"
|
|
314
|
-
resolved "https://registry.yarnpkg.com/aws-appsync-auth-link/-/aws-appsync-auth-link-3.0.4.tgz#acc709b5bd80831589a9417a7c2ef04cb78733c4"
|
|
315
|
-
integrity sha512-5zuD5JUaHdHTEOerMY4GFS9RyGquTNq3oIDAh8Ld+U74Qeo9UODT1QEfSSf6M9c+etDIghDcgQKxRQmkJwUEzA==
|
|
316
|
-
dependencies:
|
|
317
|
-
aws-sdk "^2.814.0"
|
|
318
|
-
debug "2.6.9"
|
|
319
|
-
|
|
320
|
-
aws-appsync-subscription-link@^3.0.3:
|
|
321
|
-
version "3.0.6"
|
|
322
|
-
resolved "https://registry.yarnpkg.com/aws-appsync-subscription-link/-/aws-appsync-subscription-link-3.0.6.tgz#d3fcf9465bbdc9702c46a645544e1e0d29f42f80"
|
|
323
|
-
integrity sha512-8iXJt+b6q7r8GCN75JVwYMN8H0+3hrUHQ/sgdikmb/pE+lBjqFOyFg2Pfu8OYqsyxwVKkxywHRKYeV1+61opXw==
|
|
324
|
-
dependencies:
|
|
325
|
-
apollo-utilities "^1.3.4"
|
|
326
|
-
aws-appsync-auth-link "^3.0.4"
|
|
327
|
-
debug "2.6.9"
|
|
328
|
-
url "^0.11.0"
|
|
329
|
-
|
|
330
|
-
aws-sdk@^2.814.0:
|
|
331
|
-
version "2.931.0"
|
|
332
|
-
resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.931.0.tgz#7fdc886fa7697095203fe7de16bc948a8b1c8daa"
|
|
333
|
-
integrity sha512-Db97/aJq8zYl8mHzY6dNO6m9S89TqN4HEUUc2aCYQCTyMb/eNrjf+uZTnutnQbJkClqHzxFcWc3aqe5VlTac/A==
|
|
334
|
-
dependencies:
|
|
335
|
-
buffer "4.9.2"
|
|
336
|
-
events "1.1.1"
|
|
337
|
-
ieee754 "1.1.13"
|
|
338
|
-
jmespath "0.15.0"
|
|
339
|
-
querystring "0.2.0"
|
|
340
|
-
sax "1.2.1"
|
|
341
|
-
url "0.10.3"
|
|
342
|
-
uuid "3.3.2"
|
|
343
|
-
xml2js "0.4.19"
|
|
344
|
-
|
|
345
|
-
backo2@^1.0.2:
|
|
346
|
-
version "1.0.2"
|
|
347
|
-
resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947"
|
|
348
|
-
integrity sha1-MasayLEpNjRj41s+u2n038+6eUc=
|
|
349
|
-
|
|
350
|
-
balanced-match@^1.0.0:
|
|
351
|
-
version "1.0.2"
|
|
352
|
-
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
|
|
353
|
-
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
|
|
354
|
-
|
|
355
|
-
base64-js@^1.0.2:
|
|
356
|
-
version "1.5.1"
|
|
357
|
-
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
|
|
358
|
-
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
|
|
359
|
-
|
|
360
|
-
brace-expansion@^1.1.7:
|
|
361
|
-
version "1.1.11"
|
|
362
|
-
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
|
|
363
|
-
integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
|
|
364
|
-
dependencies:
|
|
365
|
-
balanced-match "^1.0.0"
|
|
366
|
-
concat-map "0.0.1"
|
|
367
|
-
|
|
368
|
-
buffer-from@^1.0.0:
|
|
369
|
-
version "1.1.1"
|
|
370
|
-
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
|
|
371
|
-
integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
|
|
372
|
-
|
|
373
|
-
buffer@4.9.2:
|
|
374
|
-
version "4.9.2"
|
|
375
|
-
resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8"
|
|
376
|
-
integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
|
|
377
|
-
dependencies:
|
|
378
|
-
base64-js "^1.0.2"
|
|
379
|
-
ieee754 "^1.1.4"
|
|
380
|
-
isarray "^1.0.0"
|
|
381
|
-
|
|
382
|
-
call-bind@^1.0.0, call-bind@^1.0.2:
|
|
383
|
-
version "1.0.2"
|
|
384
|
-
resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
|
|
385
|
-
integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
|
|
386
|
-
dependencies:
|
|
387
|
-
function-bind "^1.1.1"
|
|
388
|
-
get-intrinsic "^1.0.2"
|
|
389
|
-
|
|
390
|
-
cliui@^7.0.2:
|
|
391
|
-
version "7.0.4"
|
|
392
|
-
resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
|
|
393
|
-
integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
|
|
394
|
-
dependencies:
|
|
395
|
-
string-width "^4.2.0"
|
|
396
|
-
strip-ansi "^6.0.0"
|
|
397
|
-
wrap-ansi "^7.0.0"
|
|
398
|
-
|
|
399
|
-
color-convert@^2.0.1:
|
|
400
|
-
version "2.0.1"
|
|
401
|
-
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
|
|
402
|
-
integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
|
|
403
|
-
dependencies:
|
|
404
|
-
color-name "~1.1.4"
|
|
405
|
-
|
|
406
|
-
color-name@~1.1.4:
|
|
407
|
-
version "1.1.4"
|
|
408
|
-
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
|
409
|
-
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
|
410
|
-
|
|
411
|
-
concat-map@0.0.1:
|
|
412
|
-
version "0.0.1"
|
|
413
|
-
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
|
|
414
|
-
integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
|
|
415
|
-
|
|
416
|
-
convert-css-color-name-to-hex@^0.1.1:
|
|
417
|
-
version "0.1.1"
|
|
418
|
-
resolved "https://registry.yarnpkg.com/convert-css-color-name-to-hex/-/convert-css-color-name-to-hex-0.1.1.tgz#38ac4d27ca470593fd663b18a072a308926a35a2"
|
|
419
|
-
integrity sha1-OKxNJ8pHBZP9ZjsYoHKjCJJqNaI=
|
|
420
|
-
dependencies:
|
|
421
|
-
css-color-names "0.0.3"
|
|
422
|
-
is-css-color-name "^0.1.1"
|
|
423
|
-
|
|
424
|
-
create-require@^1.1.0:
|
|
425
|
-
version "1.1.1"
|
|
426
|
-
resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"
|
|
427
|
-
integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==
|
|
428
|
-
|
|
429
|
-
css-color-names@0.0.2:
|
|
430
|
-
version "0.0.2"
|
|
431
|
-
resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.2.tgz#fba18e8cff86579572d749c146c47ee83f0ea955"
|
|
432
|
-
integrity sha1-+6GOjP+GV5Vy10nBRsR+6D8OqVU=
|
|
433
|
-
|
|
434
|
-
css-color-names@0.0.3:
|
|
435
|
-
version "0.0.3"
|
|
436
|
-
resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.3.tgz#de0cef16f4d8aa8222a320d5b6d7e9bbada7b9f6"
|
|
437
|
-
integrity sha1-3gzvFvTYqoIioyDVttfpu62nufY=
|
|
438
|
-
|
|
439
|
-
debug@2.6.9:
|
|
440
|
-
version "2.6.9"
|
|
441
|
-
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
|
442
|
-
integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
|
|
443
|
-
dependencies:
|
|
444
|
-
ms "2.0.0"
|
|
445
|
-
|
|
446
|
-
deepmerge@^4.2.2:
|
|
447
|
-
version "4.2.2"
|
|
448
|
-
resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
|
|
449
|
-
integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
|
|
450
|
-
|
|
451
|
-
define-properties@^1.1.3:
|
|
452
|
-
version "1.1.3"
|
|
453
|
-
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
|
|
454
|
-
integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
|
|
455
|
-
dependencies:
|
|
456
|
-
object-keys "^1.0.12"
|
|
457
|
-
|
|
458
|
-
diff@^4.0.1:
|
|
459
|
-
version "4.0.1"
|
|
460
|
-
resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.1.tgz#0c667cb467ebbb5cea7f14f135cc2dba7780a8ff"
|
|
461
|
-
integrity sha512-s2+XdvhPCOF01LRQBC8hf4vhbVmI2CGS5aZnxLJlT5FtdhPCDFq80q++zK2KlrVorVDdL5BOGZ/VfLrVtYNF+Q==
|
|
462
|
-
|
|
463
|
-
emoji-regex@^8.0.0:
|
|
464
|
-
version "8.0.0"
|
|
465
|
-
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
|
|
466
|
-
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
|
|
467
|
-
|
|
468
|
-
es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2:
|
|
469
|
-
version "1.18.3"
|
|
470
|
-
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.3.tgz#25c4c3380a27aa203c44b2b685bba94da31b63e0"
|
|
471
|
-
integrity sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==
|
|
472
|
-
dependencies:
|
|
473
|
-
call-bind "^1.0.2"
|
|
474
|
-
es-to-primitive "^1.2.1"
|
|
475
|
-
function-bind "^1.1.1"
|
|
476
|
-
get-intrinsic "^1.1.1"
|
|
477
|
-
has "^1.0.3"
|
|
478
|
-
has-symbols "^1.0.2"
|
|
479
|
-
is-callable "^1.2.3"
|
|
480
|
-
is-negative-zero "^2.0.1"
|
|
481
|
-
is-regex "^1.1.3"
|
|
482
|
-
is-string "^1.0.6"
|
|
483
|
-
object-inspect "^1.10.3"
|
|
484
|
-
object-keys "^1.1.1"
|
|
485
|
-
object.assign "^4.1.2"
|
|
486
|
-
string.prototype.trimend "^1.0.4"
|
|
487
|
-
string.prototype.trimstart "^1.0.4"
|
|
488
|
-
unbox-primitive "^1.0.1"
|
|
489
|
-
|
|
490
|
-
es-to-primitive@^1.2.1:
|
|
491
|
-
version "1.2.1"
|
|
492
|
-
resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
|
|
493
|
-
integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
|
|
494
|
-
dependencies:
|
|
495
|
-
is-callable "^1.1.4"
|
|
496
|
-
is-date-object "^1.0.1"
|
|
497
|
-
is-symbol "^1.0.2"
|
|
498
|
-
|
|
499
|
-
escalade@^3.1.1:
|
|
500
|
-
version "3.1.1"
|
|
501
|
-
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
|
|
502
|
-
integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
|
|
503
|
-
|
|
504
|
-
esprima@^4.0.0:
|
|
505
|
-
version "4.0.1"
|
|
506
|
-
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
|
|
507
|
-
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
|
|
508
|
-
|
|
509
|
-
eventemitter3@^3.1.0:
|
|
510
|
-
version "3.1.2"
|
|
511
|
-
resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.2.tgz#2d3d48f9c346698fce83a85d7d664e98535df6e7"
|
|
512
|
-
integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==
|
|
513
|
-
|
|
514
|
-
events@1.1.1:
|
|
515
|
-
version "1.1.1"
|
|
516
|
-
resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
|
|
517
|
-
integrity sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=
|
|
518
|
-
|
|
519
|
-
fast-deep-equal@^2.0.1:
|
|
520
|
-
version "2.0.1"
|
|
521
|
-
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"
|
|
522
|
-
integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=
|
|
523
|
-
|
|
524
|
-
fast-deep-equal@^3.1.1:
|
|
525
|
-
version "3.1.3"
|
|
526
|
-
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
|
|
527
|
-
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
|
|
528
|
-
|
|
529
|
-
fast-json-patch@^2.0.0:
|
|
530
|
-
version "2.2.1"
|
|
531
|
-
resolved "https://registry.yarnpkg.com/fast-json-patch/-/fast-json-patch-2.2.1.tgz#18150d36c9ab65c7209e7d4eb113f4f8eaabe6d9"
|
|
532
|
-
integrity sha512-4j5uBaTnsYAV5ebkidvxiLUYOwjQ+JSFljeqfTxCrH9bDmlCQaOJFS84oDJ2rAXZq2yskmk3ORfoP9DCwqFNig==
|
|
533
|
-
dependencies:
|
|
534
|
-
fast-deep-equal "^2.0.1"
|
|
535
|
-
|
|
536
|
-
fast-json-stable-stringify@^2.0.0:
|
|
537
|
-
version "2.1.0"
|
|
538
|
-
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
|
|
539
|
-
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
|
|
540
|
-
|
|
541
|
-
foreach@^2.0.5:
|
|
542
|
-
version "2.0.5"
|
|
543
|
-
resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
|
|
544
|
-
integrity sha1-C+4AUBiusmDQo6865ljdATbsG5k=
|
|
545
|
-
|
|
546
|
-
fs.realpath@^1.0.0:
|
|
547
|
-
version "1.0.0"
|
|
548
|
-
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
|
|
549
|
-
integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
|
|
550
|
-
|
|
551
|
-
function-bind@^1.1.1:
|
|
552
|
-
version "1.1.1"
|
|
553
|
-
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
|
554
|
-
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
|
|
555
|
-
|
|
556
|
-
get-caller-file@^2.0.5:
|
|
557
|
-
version "2.0.5"
|
|
558
|
-
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
|
|
559
|
-
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
|
|
560
|
-
|
|
561
|
-
get-intrinsic@^1.0.2, get-intrinsic@^1.1.1:
|
|
562
|
-
version "1.1.1"
|
|
563
|
-
resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
|
|
564
|
-
integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
|
|
565
|
-
dependencies:
|
|
566
|
-
function-bind "^1.1.1"
|
|
567
|
-
has "^1.0.3"
|
|
568
|
-
has-symbols "^1.0.1"
|
|
569
|
-
|
|
570
|
-
glob@^7.1.0, glob@^7.1.6:
|
|
571
|
-
version "7.1.7"
|
|
572
|
-
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
|
|
573
|
-
integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
|
|
574
|
-
dependencies:
|
|
575
|
-
fs.realpath "^1.0.0"
|
|
576
|
-
inflight "^1.0.4"
|
|
577
|
-
inherits "2"
|
|
578
|
-
minimatch "^3.0.4"
|
|
579
|
-
once "^1.3.0"
|
|
580
|
-
path-is-absolute "^1.0.0"
|
|
581
|
-
|
|
582
|
-
graphql-tag@^2.12.0:
|
|
583
|
-
version "2.12.4"
|
|
584
|
-
resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.4.tgz#d34066688a4f09e72d6f4663c74211e9b4b7c4bf"
|
|
585
|
-
integrity sha512-VV1U4O+9x99EkNpNmCUV5RZwq6MnK4+pGbRYWG+lA/m3uo7TSqJF81OkcOP148gFP6fzdl7JWYBrwWVTS9jXww==
|
|
586
|
-
dependencies:
|
|
587
|
-
tslib "^2.1.0"
|
|
588
|
-
|
|
589
|
-
graphql-ws@^5.1.2:
|
|
590
|
-
version "5.1.2"
|
|
591
|
-
resolved "https://registry.yarnpkg.com/graphql-ws/-/graphql-ws-5.1.2.tgz#56577f6f4ede50eb052c352354fa1534e5eef65a"
|
|
592
|
-
integrity sha512-p8uFjmRxCmy1+zE3PkFga/4J/tO7wTBInhT0jzNQ0cgXxI6kdwzZexSR2IYOwAL8qlSkeGkdpMMKQUsF7wHdxQ==
|
|
593
|
-
|
|
594
|
-
graphql@^15.5.1:
|
|
595
|
-
version "15.5.1"
|
|
596
|
-
resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.5.1.tgz#f2f84415d8985e7b84731e7f3536f8bb9d383aad"
|
|
597
|
-
integrity sha512-FeTRX67T3LoE3LWAxxOlW2K3Bz+rMYAC18rRguK4wgXaTZMiJwSUwDmPFo3UadAKbzirKIg5Qy+sNJXbpPRnQw==
|
|
598
|
-
|
|
599
|
-
has-bigints@^1.0.1:
|
|
600
|
-
version "1.0.1"
|
|
601
|
-
resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113"
|
|
602
|
-
integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==
|
|
603
|
-
|
|
604
|
-
has-symbols@^1.0.1, has-symbols@^1.0.2:
|
|
605
|
-
version "1.0.2"
|
|
606
|
-
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
|
|
607
|
-
integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
|
|
608
|
-
|
|
609
|
-
has@^1.0.3:
|
|
610
|
-
version "1.0.3"
|
|
611
|
-
resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
|
|
612
|
-
integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
|
|
613
|
-
dependencies:
|
|
614
|
-
function-bind "^1.1.1"
|
|
615
|
-
|
|
616
|
-
hoist-non-react-statics@^3.3.2:
|
|
617
|
-
version "3.3.2"
|
|
618
|
-
resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
|
|
619
|
-
integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==
|
|
620
|
-
dependencies:
|
|
621
|
-
react-is "^16.7.0"
|
|
622
|
-
|
|
623
|
-
ieee754@1.1.13:
|
|
624
|
-
version "1.1.13"
|
|
625
|
-
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84"
|
|
626
|
-
integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==
|
|
627
|
-
|
|
628
|
-
ieee754@^1.1.4:
|
|
629
|
-
version "1.2.1"
|
|
630
|
-
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
|
|
631
|
-
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
|
|
632
|
-
|
|
633
|
-
inflight@^1.0.4:
|
|
634
|
-
version "1.0.6"
|
|
635
|
-
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
|
|
636
|
-
integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
|
|
637
|
-
dependencies:
|
|
638
|
-
once "^1.3.0"
|
|
639
|
-
wrappy "1"
|
|
640
|
-
|
|
641
|
-
inherits@2, inherits@^2.0.3:
|
|
642
|
-
version "2.0.4"
|
|
643
|
-
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
|
|
644
|
-
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
|
|
645
|
-
|
|
646
|
-
is-arguments@^1.0.4:
|
|
647
|
-
version "1.1.0"
|
|
648
|
-
resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz#62353031dfbee07ceb34656a6bde59efecae8dd9"
|
|
649
|
-
integrity sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==
|
|
650
|
-
dependencies:
|
|
651
|
-
call-bind "^1.0.0"
|
|
652
|
-
|
|
653
|
-
is-bigint@^1.0.1:
|
|
654
|
-
version "1.0.2"
|
|
655
|
-
resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.2.tgz#ffb381442503235ad245ea89e45b3dbff040ee5a"
|
|
656
|
-
integrity sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==
|
|
657
|
-
|
|
658
|
-
is-boolean-object@^1.1.0:
|
|
659
|
-
version "1.1.1"
|
|
660
|
-
resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.1.tgz#3c0878f035cb821228d350d2e1e36719716a3de8"
|
|
661
|
-
integrity sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==
|
|
662
|
-
dependencies:
|
|
663
|
-
call-bind "^1.0.2"
|
|
664
|
-
|
|
665
|
-
is-callable@^1.1.4, is-callable@^1.2.3:
|
|
666
|
-
version "1.2.3"
|
|
667
|
-
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e"
|
|
668
|
-
integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==
|
|
669
|
-
|
|
670
|
-
is-css-color-name@^0.1.1:
|
|
671
|
-
version "0.1.3"
|
|
672
|
-
resolved "https://registry.yarnpkg.com/is-css-color-name/-/is-css-color-name-0.1.3.tgz#ea3b51bc901d8a243d32c9b7873d0680dbbef7f1"
|
|
673
|
-
integrity sha1-6jtRvJAdiiQ9Msm3hz0GgNu+9/E=
|
|
674
|
-
dependencies:
|
|
675
|
-
css-color-names "0.0.2"
|
|
676
|
-
|
|
677
|
-
is-date-object@^1.0.1:
|
|
678
|
-
version "1.0.4"
|
|
679
|
-
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.4.tgz#550cfcc03afada05eea3dd30981c7b09551f73e5"
|
|
680
|
-
integrity sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==
|
|
681
|
-
|
|
682
|
-
is-fullwidth-code-point@^3.0.0:
|
|
683
|
-
version "3.0.0"
|
|
684
|
-
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
|
|
685
|
-
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
|
|
686
|
-
|
|
687
|
-
is-generator-function@^1.0.7:
|
|
688
|
-
version "1.0.9"
|
|
689
|
-
resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.9.tgz#e5f82c2323673e7fcad3d12858c83c4039f6399c"
|
|
690
|
-
integrity sha512-ZJ34p1uvIfptHCN7sFTjGibB9/oBg17sHqzDLfuwhvmN/qLVvIQXRQ8licZQ35WJ8KuEQt/etnnzQFI9C9Ue/A==
|
|
691
|
-
|
|
692
|
-
is-negative-zero@^2.0.1:
|
|
693
|
-
version "2.0.1"
|
|
694
|
-
resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24"
|
|
695
|
-
integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==
|
|
696
|
-
|
|
697
|
-
is-number-object@^1.0.4:
|
|
698
|
-
version "1.0.5"
|
|
699
|
-
resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.5.tgz#6edfaeed7950cff19afedce9fbfca9ee6dd289eb"
|
|
700
|
-
integrity sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==
|
|
701
|
-
|
|
702
|
-
is-regex@^1.1.3:
|
|
703
|
-
version "1.1.3"
|
|
704
|
-
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.3.tgz#d029f9aff6448b93ebbe3f33dac71511fdcbef9f"
|
|
705
|
-
integrity sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==
|
|
706
|
-
dependencies:
|
|
707
|
-
call-bind "^1.0.2"
|
|
708
|
-
has-symbols "^1.0.2"
|
|
709
|
-
|
|
710
|
-
is-string@^1.0.5, is-string@^1.0.6:
|
|
711
|
-
version "1.0.6"
|
|
712
|
-
resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.6.tgz#3fe5d5992fb0d93404f32584d4b0179a71b54a5f"
|
|
713
|
-
integrity sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==
|
|
714
|
-
|
|
715
|
-
is-symbol@^1.0.2, is-symbol@^1.0.3:
|
|
716
|
-
version "1.0.4"
|
|
717
|
-
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
|
|
718
|
-
integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
|
|
719
|
-
dependencies:
|
|
720
|
-
has-symbols "^1.0.2"
|
|
721
|
-
|
|
722
|
-
is-typed-array@^1.1.3:
|
|
723
|
-
version "1.1.5"
|
|
724
|
-
resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.5.tgz#f32e6e096455e329eb7b423862456aa213f0eb4e"
|
|
725
|
-
integrity sha512-S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug==
|
|
726
|
-
dependencies:
|
|
727
|
-
available-typed-arrays "^1.0.2"
|
|
728
|
-
call-bind "^1.0.2"
|
|
729
|
-
es-abstract "^1.18.0-next.2"
|
|
730
|
-
foreach "^2.0.5"
|
|
731
|
-
has-symbols "^1.0.1"
|
|
732
|
-
|
|
733
|
-
isarray@^1.0.0:
|
|
734
|
-
version "1.0.0"
|
|
735
|
-
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
|
|
736
|
-
integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
|
|
737
|
-
|
|
738
|
-
iterall@^1.2.1:
|
|
739
|
-
version "1.3.0"
|
|
740
|
-
resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.3.0.tgz#afcb08492e2915cbd8a0884eb93a8c94d0d72fea"
|
|
741
|
-
integrity sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==
|
|
742
|
-
|
|
743
|
-
jmespath@0.15.0:
|
|
744
|
-
version "0.15.0"
|
|
745
|
-
resolved "https://registry.yarnpkg.com/jmespath/-/jmespath-0.15.0.tgz#a3f222a9aae9f966f5d27c796510e28091764217"
|
|
746
|
-
integrity sha1-o/Iiqarp+Wb10nx5ZRDigJF2Qhc=
|
|
747
|
-
|
|
748
|
-
"js-tokens@^3.0.0 || ^4.0.0":
|
|
749
|
-
version "4.0.0"
|
|
750
|
-
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
|
751
|
-
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
|
|
752
|
-
|
|
753
|
-
js-yaml@^3.14.0:
|
|
754
|
-
version "3.14.1"
|
|
755
|
-
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
|
|
756
|
-
integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
|
|
757
|
-
dependencies:
|
|
758
|
-
argparse "^1.0.7"
|
|
759
|
-
esprima "^4.0.0"
|
|
760
|
-
|
|
761
|
-
json-schema-migrate@^2.0.0:
|
|
762
|
-
version "2.0.0"
|
|
763
|
-
resolved "https://registry.yarnpkg.com/json-schema-migrate/-/json-schema-migrate-2.0.0.tgz#335ef5218cd32fcc96c1ddce66c71ba586224496"
|
|
764
|
-
integrity sha512-r38SVTtojDRp4eD6WsCqiE0eNDt4v1WalBXb9cyZYw9ai5cGtBwzRNWjHzJl38w6TxFkXAIA7h+fyX3tnrAFhQ==
|
|
765
|
-
dependencies:
|
|
766
|
-
ajv "^8.0.0"
|
|
767
|
-
|
|
768
|
-
json-schema-traverse@^1.0.0:
|
|
769
|
-
version "1.0.0"
|
|
770
|
-
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"
|
|
771
|
-
integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
|
|
772
|
-
|
|
773
|
-
json-stable-stringify@^1.0.1:
|
|
774
|
-
version "1.0.1"
|
|
775
|
-
resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
|
|
776
|
-
integrity sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=
|
|
777
|
-
dependencies:
|
|
778
|
-
jsonify "~0.0.0"
|
|
779
|
-
|
|
780
|
-
json5@^2.1.3:
|
|
781
|
-
version "2.2.0"
|
|
782
|
-
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
|
|
783
|
-
integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==
|
|
784
|
-
dependencies:
|
|
785
|
-
minimist "^1.2.5"
|
|
786
|
-
|
|
787
|
-
jsonify@~0.0.0:
|
|
788
|
-
version "0.0.0"
|
|
789
|
-
resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
|
|
790
|
-
integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=
|
|
791
|
-
|
|
792
|
-
loglevel-plugin-prefix@^0.8.4:
|
|
793
|
-
version "0.8.4"
|
|
794
|
-
resolved "https://registry.yarnpkg.com/loglevel-plugin-prefix/-/loglevel-plugin-prefix-0.8.4.tgz#2fe0e05f1a820317d98d8c123e634c1bd84ff644"
|
|
795
|
-
integrity sha512-WpG9CcFAOjz/FtNht+QJeGpvVl/cdR6P0z6OcXSkr8wFJOsV2GRj2j10JLfjuA4aYkcKCNIEqRGCyTife9R8/g==
|
|
796
|
-
|
|
797
|
-
loglevel@^1.7.1:
|
|
798
|
-
version "1.7.1"
|
|
799
|
-
resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.7.1.tgz#005fde2f5e6e47068f935ff28573e125ef72f197"
|
|
800
|
-
integrity sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==
|
|
801
|
-
|
|
802
|
-
loose-envify@^1.1.0, loose-envify@^1.4.0:
|
|
803
|
-
version "1.4.0"
|
|
804
|
-
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
|
|
805
|
-
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
|
|
806
|
-
dependencies:
|
|
807
|
-
js-tokens "^3.0.0 || ^4.0.0"
|
|
808
|
-
|
|
809
|
-
make-error@^1.1.1:
|
|
810
|
-
version "1.3.5"
|
|
811
|
-
resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.5.tgz#efe4e81f6db28cadd605c70f29c831b58ef776c8"
|
|
812
|
-
integrity sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g==
|
|
813
|
-
|
|
814
|
-
minimatch@^3.0.4:
|
|
815
|
-
version "3.0.4"
|
|
816
|
-
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
|
|
817
|
-
integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
|
|
818
|
-
dependencies:
|
|
819
|
-
brace-expansion "^1.1.7"
|
|
820
|
-
|
|
821
|
-
minimist@^1.2.0, minimist@^1.2.5:
|
|
822
|
-
version "1.2.5"
|
|
823
|
-
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
|
|
824
|
-
integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
|
|
825
|
-
|
|
826
|
-
ms@2.0.0:
|
|
827
|
-
version "2.0.0"
|
|
828
|
-
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
|
|
829
|
-
integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
|
|
830
|
-
|
|
831
|
-
object-assign@^4.1.1:
|
|
832
|
-
version "4.1.1"
|
|
833
|
-
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
|
|
834
|
-
integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
|
|
835
|
-
|
|
836
|
-
object-inspect@^1.10.3:
|
|
837
|
-
version "1.10.3"
|
|
838
|
-
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.10.3.tgz#c2aa7d2d09f50c99375704f7a0adf24c5782d369"
|
|
839
|
-
integrity sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==
|
|
840
|
-
|
|
841
|
-
object-keys@^1.0.12, object-keys@^1.1.1:
|
|
842
|
-
version "1.1.1"
|
|
843
|
-
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
|
|
844
|
-
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
|
|
845
|
-
|
|
846
|
-
object.assign@^4.1.2:
|
|
847
|
-
version "4.1.2"
|
|
848
|
-
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
|
|
849
|
-
integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
|
|
850
|
-
dependencies:
|
|
851
|
-
call-bind "^1.0.0"
|
|
852
|
-
define-properties "^1.1.3"
|
|
853
|
-
has-symbols "^1.0.1"
|
|
854
|
-
object-keys "^1.1.1"
|
|
855
|
-
|
|
856
|
-
once@^1.3.0:
|
|
857
|
-
version "1.4.0"
|
|
858
|
-
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
|
|
859
|
-
integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
|
|
860
|
-
dependencies:
|
|
861
|
-
wrappy "1"
|
|
862
|
-
|
|
863
|
-
optimism@^0.10.0:
|
|
864
|
-
version "0.10.3"
|
|
865
|
-
resolved "https://registry.yarnpkg.com/optimism/-/optimism-0.10.3.tgz#163268fdc741dea2fb50f300bedda80356445fd7"
|
|
866
|
-
integrity sha512-9A5pqGoQk49H6Vhjb9kPgAeeECfUDF6aIICbMDL23kDLStBn1MWk3YvcZ4xWF9CsSf6XEgvRLkXy4xof/56vVw==
|
|
867
|
-
dependencies:
|
|
868
|
-
"@wry/context" "^0.4.0"
|
|
869
|
-
|
|
870
|
-
optimism@^0.16.0:
|
|
871
|
-
version "0.16.1"
|
|
872
|
-
resolved "https://registry.yarnpkg.com/optimism/-/optimism-0.16.1.tgz#7c8efc1f3179f18307b887e18c15c5b7133f6e7d"
|
|
873
|
-
integrity sha512-64i+Uw3otrndfq5kaoGNoY7pvOhSsjFEN4bdEFh80MWVk/dbgJfMv7VFDeCT8LxNAlEVhQmdVEbfE7X2nWNIIg==
|
|
874
|
-
dependencies:
|
|
875
|
-
"@wry/context" "^0.6.0"
|
|
876
|
-
"@wry/trie" "^0.3.0"
|
|
877
|
-
|
|
878
|
-
path-is-absolute@^1.0.0:
|
|
879
|
-
version "1.0.1"
|
|
880
|
-
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
|
881
|
-
integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
|
|
882
|
-
|
|
883
|
-
prop-types@^15.7.2:
|
|
884
|
-
version "15.7.2"
|
|
885
|
-
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
|
|
886
|
-
integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
|
|
887
|
-
dependencies:
|
|
888
|
-
loose-envify "^1.4.0"
|
|
889
|
-
object-assign "^4.1.1"
|
|
890
|
-
react-is "^16.8.1"
|
|
891
|
-
|
|
892
|
-
punycode@1.3.2:
|
|
893
|
-
version "1.3.2"
|
|
894
|
-
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
|
|
895
|
-
integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=
|
|
896
|
-
|
|
897
|
-
punycode@^2.1.0:
|
|
898
|
-
version "2.1.1"
|
|
899
|
-
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
|
|
900
|
-
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
|
|
901
|
-
|
|
902
|
-
querystring@0.2.0:
|
|
903
|
-
version "0.2.0"
|
|
904
|
-
resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
|
|
905
|
-
integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=
|
|
906
|
-
|
|
907
|
-
react-is@^16.7.0, react-is@^16.8.1:
|
|
908
|
-
version "16.13.1"
|
|
909
|
-
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
|
|
910
|
-
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
|
|
911
|
-
|
|
912
|
-
react@^17.0.2:
|
|
913
|
-
version "17.0.2"
|
|
914
|
-
resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037"
|
|
915
|
-
integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==
|
|
916
|
-
dependencies:
|
|
917
|
-
loose-envify "^1.1.0"
|
|
918
|
-
object-assign "^4.1.1"
|
|
919
|
-
|
|
920
|
-
require-directory@^2.1.1:
|
|
921
|
-
version "2.1.1"
|
|
922
|
-
resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
|
|
923
|
-
integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
|
|
924
|
-
|
|
925
|
-
require-from-string@^2.0.2:
|
|
926
|
-
version "2.0.2"
|
|
927
|
-
resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
|
|
928
|
-
integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
|
|
929
|
-
|
|
930
|
-
rxjs@^7.1.0:
|
|
931
|
-
version "7.1.0"
|
|
932
|
-
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.1.0.tgz#94202d27b19305ef7b1a4f330277b2065df7039e"
|
|
933
|
-
integrity sha512-gCFO5iHIbRPwznl6hAYuwNFld8W4S2shtSJIqG27ReWXo9IWrCyEICxUA+6vJHwSR/OakoenC4QsDxq50tzYmw==
|
|
934
|
-
dependencies:
|
|
935
|
-
tslib "~2.1.0"
|
|
936
|
-
|
|
937
|
-
safe-buffer@^5.1.2:
|
|
938
|
-
version "5.2.1"
|
|
939
|
-
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
|
|
940
|
-
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
|
|
941
|
-
|
|
942
|
-
sax@1.2.1:
|
|
943
|
-
version "1.2.1"
|
|
944
|
-
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a"
|
|
945
|
-
integrity sha1-e45lYZCyKOgaZq6nSEgNgozS03o=
|
|
946
|
-
|
|
947
|
-
sax@>=0.6.0:
|
|
948
|
-
version "1.2.4"
|
|
949
|
-
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
|
|
950
|
-
integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
|
|
951
|
-
|
|
952
|
-
source-map-support@^0.5.17:
|
|
953
|
-
version "0.5.19"
|
|
954
|
-
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
|
|
955
|
-
integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
|
|
956
|
-
dependencies:
|
|
957
|
-
buffer-from "^1.0.0"
|
|
958
|
-
source-map "^0.6.0"
|
|
959
|
-
|
|
960
|
-
source-map-support@^0.5.6:
|
|
961
|
-
version "0.5.16"
|
|
962
|
-
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042"
|
|
963
|
-
integrity sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ==
|
|
964
|
-
dependencies:
|
|
965
|
-
buffer-from "^1.0.0"
|
|
966
|
-
source-map "^0.6.0"
|
|
967
|
-
|
|
968
|
-
source-map@^0.6.0:
|
|
969
|
-
version "0.6.1"
|
|
970
|
-
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
|
|
971
|
-
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
|
|
972
|
-
|
|
973
|
-
sprintf-js@~1.0.2:
|
|
974
|
-
version "1.0.3"
|
|
975
|
-
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
|
|
976
|
-
integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
|
|
977
|
-
|
|
978
|
-
string-width@^4.1.0, string-width@^4.2.0:
|
|
979
|
-
version "4.2.2"
|
|
980
|
-
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"
|
|
981
|
-
integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==
|
|
982
|
-
dependencies:
|
|
983
|
-
emoji-regex "^8.0.0"
|
|
984
|
-
is-fullwidth-code-point "^3.0.0"
|
|
985
|
-
strip-ansi "^6.0.0"
|
|
986
|
-
|
|
987
|
-
string.prototype.trimend@^1.0.4:
|
|
988
|
-
version "1.0.4"
|
|
989
|
-
resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80"
|
|
990
|
-
integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==
|
|
991
|
-
dependencies:
|
|
992
|
-
call-bind "^1.0.2"
|
|
993
|
-
define-properties "^1.1.3"
|
|
994
|
-
|
|
995
|
-
string.prototype.trimstart@^1.0.4:
|
|
996
|
-
version "1.0.4"
|
|
997
|
-
resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed"
|
|
998
|
-
integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==
|
|
999
|
-
dependencies:
|
|
1000
|
-
call-bind "^1.0.2"
|
|
1001
|
-
define-properties "^1.1.3"
|
|
1002
|
-
|
|
1003
|
-
strip-ansi@^6.0.0:
|
|
1004
|
-
version "6.0.0"
|
|
1005
|
-
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
|
|
1006
|
-
integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
|
|
1007
|
-
dependencies:
|
|
1008
|
-
ansi-regex "^5.0.0"
|
|
1009
|
-
|
|
1010
|
-
subscriptions-transport-ws@^0.9.19:
|
|
1011
|
-
version "0.9.19"
|
|
1012
|
-
resolved "https://registry.yarnpkg.com/subscriptions-transport-ws/-/subscriptions-transport-ws-0.9.19.tgz#10ca32f7e291d5ee8eb728b9c02e43c52606cdcf"
|
|
1013
|
-
integrity sha512-dxdemxFFB0ppCLg10FTtRqH/31FNRL1y1BQv8209MK5I4CwALb7iihQg+7p65lFcIl8MHatINWBLOqpgU4Kyyw==
|
|
1014
|
-
dependencies:
|
|
1015
|
-
backo2 "^1.0.2"
|
|
1016
|
-
eventemitter3 "^3.1.0"
|
|
1017
|
-
iterall "^1.2.1"
|
|
1018
|
-
symbol-observable "^1.0.4"
|
|
1019
|
-
ws "^5.2.0 || ^6.0.0 || ^7.0.0"
|
|
1020
|
-
|
|
1021
|
-
symbol-observable@^1.0.4:
|
|
1022
|
-
version "1.2.0"
|
|
1023
|
-
resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
|
|
1024
|
-
integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==
|
|
1025
|
-
|
|
1026
|
-
symbol-observable@^4.0.0:
|
|
1027
|
-
version "4.0.0"
|
|
1028
|
-
resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-4.0.0.tgz#5b425f192279e87f2f9b937ac8540d1984b39205"
|
|
1029
|
-
integrity sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==
|
|
1030
|
-
|
|
1031
|
-
ts-invariant@^0.4.0:
|
|
1032
|
-
version "0.4.4"
|
|
1033
|
-
resolved "https://registry.yarnpkg.com/ts-invariant/-/ts-invariant-0.4.4.tgz#97a523518688f93aafad01b0e80eb803eb2abd86"
|
|
1034
|
-
integrity sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA==
|
|
1035
|
-
dependencies:
|
|
1036
|
-
tslib "^1.9.3"
|
|
1037
|
-
|
|
1038
|
-
ts-invariant@^0.7.0:
|
|
1039
|
-
version "0.7.5"
|
|
1040
|
-
resolved "https://registry.yarnpkg.com/ts-invariant/-/ts-invariant-0.7.5.tgz#f9658719f9a7737b117d09820d952aacf6263f9c"
|
|
1041
|
-
integrity sha512-qfVyqTYWEqADMtncLqwpUdMjMSXnsqOeqGtj1LeJNFDjz8oqZ1YxLEp29YCOq65z0LgEiERqQ8ThVjnfibJNpg==
|
|
1042
|
-
dependencies:
|
|
1043
|
-
tslib "^2.1.0"
|
|
1044
|
-
|
|
1045
|
-
ts-node@^8.5.4:
|
|
1046
|
-
version "8.5.4"
|
|
1047
|
-
resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-8.5.4.tgz#a152add11fa19c221d0b48962c210cf467262ab2"
|
|
1048
|
-
integrity sha512-izbVCRV68EasEPQ8MSIGBNK9dc/4sYJJKYA+IarMQct1RtEot6Xp0bXuClsbUSnKpg50ho+aOAx8en5c+y4OFw==
|
|
1049
|
-
dependencies:
|
|
1050
|
-
arg "^4.1.0"
|
|
1051
|
-
diff "^4.0.1"
|
|
1052
|
-
make-error "^1.1.1"
|
|
1053
|
-
source-map-support "^0.5.6"
|
|
1054
|
-
yn "^3.0.0"
|
|
1055
|
-
|
|
1056
|
-
ts-node@^9.1.1:
|
|
1057
|
-
version "9.1.1"
|
|
1058
|
-
resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-9.1.1.tgz#51a9a450a3e959401bda5f004a72d54b936d376d"
|
|
1059
|
-
integrity sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==
|
|
1060
|
-
dependencies:
|
|
1061
|
-
arg "^4.1.0"
|
|
1062
|
-
create-require "^1.1.0"
|
|
1063
|
-
diff "^4.0.1"
|
|
1064
|
-
make-error "^1.1.1"
|
|
1065
|
-
source-map-support "^0.5.17"
|
|
1066
|
-
yn "3.1.1"
|
|
1067
|
-
|
|
1068
|
-
tslib@^1.10.0, tslib@^1.9.3:
|
|
1069
|
-
version "1.14.1"
|
|
1070
|
-
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
|
|
1071
|
-
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
|
|
1072
|
-
|
|
1073
|
-
tslib@^2.1.0:
|
|
1074
|
-
version "2.3.0"
|
|
1075
|
-
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.0.tgz#803b8cdab3e12ba581a4ca41c8839bbb0dacb09e"
|
|
1076
|
-
integrity sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==
|
|
1077
|
-
|
|
1078
|
-
tslib@~2.1.0:
|
|
1079
|
-
version "2.1.0"
|
|
1080
|
-
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a"
|
|
1081
|
-
integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==
|
|
1082
|
-
|
|
1083
|
-
typescript-json-schema@^0.50.1:
|
|
1084
|
-
version "0.50.1"
|
|
1085
|
-
resolved "https://registry.yarnpkg.com/typescript-json-schema/-/typescript-json-schema-0.50.1.tgz#48041eb9f6efbdf4ba88c3e3af9433601f7a2b47"
|
|
1086
|
-
integrity sha512-GCof/SDoiTDl0qzPonNEV4CHyCsZEIIf+mZtlrjoD8vURCcEzEfa2deRuxYid8Znp/e27eDR7Cjg8jgGrimBCA==
|
|
1087
|
-
dependencies:
|
|
1088
|
-
"@types/json-schema" "^7.0.7"
|
|
1089
|
-
"@types/node" "^14.14.33"
|
|
1090
|
-
glob "^7.1.6"
|
|
1091
|
-
json-stable-stringify "^1.0.1"
|
|
1092
|
-
ts-node "^9.1.1"
|
|
1093
|
-
typescript "~4.2.3"
|
|
1094
|
-
yargs "^16.2.0"
|
|
1095
|
-
|
|
1096
|
-
typescript@4.0.7:
|
|
1097
|
-
version "4.0.7"
|
|
1098
|
-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.0.7.tgz#7168032c43d2a2671c95c07812f69523c79590af"
|
|
1099
|
-
integrity sha512-yi7M4y74SWvYbnazbn8/bmJmX4Zlej39ZOqwG/8dut/MYoSQ119GY9ZFbbGsD4PFZYWxqik/XsP3vk3+W5H3og==
|
|
1100
|
-
|
|
1101
|
-
typescript@~4.2.3:
|
|
1102
|
-
version "4.2.4"
|
|
1103
|
-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.2.4.tgz#8610b59747de028fda898a8aef0e103f156d0961"
|
|
1104
|
-
integrity sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg==
|
|
1105
|
-
|
|
1106
|
-
unbox-primitive@^1.0.1:
|
|
1107
|
-
version "1.0.1"
|
|
1108
|
-
resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471"
|
|
1109
|
-
integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==
|
|
1110
|
-
dependencies:
|
|
1111
|
-
function-bind "^1.1.1"
|
|
1112
|
-
has-bigints "^1.0.1"
|
|
1113
|
-
has-symbols "^1.0.2"
|
|
1114
|
-
which-boxed-primitive "^1.0.2"
|
|
1115
|
-
|
|
1116
|
-
uri-js@^4.2.2:
|
|
1117
|
-
version "4.4.1"
|
|
1118
|
-
resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
|
|
1119
|
-
integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
|
|
1120
|
-
dependencies:
|
|
1121
|
-
punycode "^2.1.0"
|
|
1122
|
-
|
|
1123
|
-
url@0.10.3:
|
|
1124
|
-
version "0.10.3"
|
|
1125
|
-
resolved "https://registry.yarnpkg.com/url/-/url-0.10.3.tgz#021e4d9c7705f21bbf37d03ceb58767402774c64"
|
|
1126
|
-
integrity sha1-Ah5NnHcF8hu/N9A861h2dAJ3TGQ=
|
|
1127
|
-
dependencies:
|
|
1128
|
-
punycode "1.3.2"
|
|
1129
|
-
querystring "0.2.0"
|
|
1130
|
-
|
|
1131
|
-
url@^0.11.0:
|
|
1132
|
-
version "0.11.0"
|
|
1133
|
-
resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
|
|
1134
|
-
integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=
|
|
1135
|
-
dependencies:
|
|
1136
|
-
punycode "1.3.2"
|
|
1137
|
-
querystring "0.2.0"
|
|
1138
|
-
|
|
1139
|
-
util@^0.12.4:
|
|
1140
|
-
version "0.12.4"
|
|
1141
|
-
resolved "https://registry.yarnpkg.com/util/-/util-0.12.4.tgz#66121a31420df8f01ca0c464be15dfa1d1850253"
|
|
1142
|
-
integrity sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==
|
|
1143
|
-
dependencies:
|
|
1144
|
-
inherits "^2.0.3"
|
|
1145
|
-
is-arguments "^1.0.4"
|
|
1146
|
-
is-generator-function "^1.0.7"
|
|
1147
|
-
is-typed-array "^1.1.3"
|
|
1148
|
-
safe-buffer "^5.1.2"
|
|
1149
|
-
which-typed-array "^1.1.2"
|
|
1150
|
-
|
|
1151
|
-
uuid@3.3.2:
|
|
1152
|
-
version "3.3.2"
|
|
1153
|
-
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131"
|
|
1154
|
-
integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==
|
|
1155
|
-
|
|
1156
|
-
uuid@^8.3.2:
|
|
1157
|
-
version "8.3.2"
|
|
1158
|
-
resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
|
|
1159
|
-
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
|
|
1160
|
-
|
|
1161
|
-
which-boxed-primitive@^1.0.2:
|
|
1162
|
-
version "1.0.2"
|
|
1163
|
-
resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
|
|
1164
|
-
integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
|
|
1165
|
-
dependencies:
|
|
1166
|
-
is-bigint "^1.0.1"
|
|
1167
|
-
is-boolean-object "^1.1.0"
|
|
1168
|
-
is-number-object "^1.0.4"
|
|
1169
|
-
is-string "^1.0.5"
|
|
1170
|
-
is-symbol "^1.0.3"
|
|
1171
|
-
|
|
1172
|
-
which-typed-array@^1.1.2:
|
|
1173
|
-
version "1.1.4"
|
|
1174
|
-
resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.4.tgz#8fcb7d3ee5adf2d771066fba7cf37e32fe8711ff"
|
|
1175
|
-
integrity sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==
|
|
1176
|
-
dependencies:
|
|
1177
|
-
available-typed-arrays "^1.0.2"
|
|
1178
|
-
call-bind "^1.0.0"
|
|
1179
|
-
es-abstract "^1.18.0-next.1"
|
|
1180
|
-
foreach "^2.0.5"
|
|
1181
|
-
function-bind "^1.1.1"
|
|
1182
|
-
has-symbols "^1.0.1"
|
|
1183
|
-
is-typed-array "^1.1.3"
|
|
1184
|
-
|
|
1185
|
-
wrap-ansi@^7.0.0:
|
|
1186
|
-
version "7.0.0"
|
|
1187
|
-
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
|
|
1188
|
-
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
|
|
1189
|
-
dependencies:
|
|
1190
|
-
ansi-styles "^4.0.0"
|
|
1191
|
-
string-width "^4.1.0"
|
|
1192
|
-
strip-ansi "^6.0.0"
|
|
1193
|
-
|
|
1194
|
-
wrappy@1:
|
|
1195
|
-
version "1.0.2"
|
|
1196
|
-
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
|
1197
|
-
integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
|
|
1198
|
-
|
|
1199
|
-
"ws@^5.2.0 || ^6.0.0 || ^7.0.0":
|
|
1200
|
-
version "7.5.0"
|
|
1201
|
-
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.0.tgz#0033bafea031fb9df041b2026fc72a571ca44691"
|
|
1202
|
-
integrity sha512-6ezXvzOZupqKj4jUqbQ9tXuJNo+BR2gU8fFRk3XCP3e0G6WT414u5ELe6Y0vtp7kmSJ3F7YWObSNr1ESsgi4vw==
|
|
1203
|
-
|
|
1204
|
-
xml2js@0.4.19:
|
|
1205
|
-
version "0.4.19"
|
|
1206
|
-
resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.19.tgz#686c20f213209e94abf0d1bcf1efaa291c7827a7"
|
|
1207
|
-
integrity sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==
|
|
1208
|
-
dependencies:
|
|
1209
|
-
sax ">=0.6.0"
|
|
1210
|
-
xmlbuilder "~9.0.1"
|
|
1211
|
-
|
|
1212
|
-
xmlbuilder@~9.0.1:
|
|
1213
|
-
version "9.0.7"
|
|
1214
|
-
resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d"
|
|
1215
|
-
integrity sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=
|
|
1216
|
-
|
|
1217
|
-
y18n@^5.0.5:
|
|
1218
|
-
version "5.0.8"
|
|
1219
|
-
resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
|
|
1220
|
-
integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
|
|
1221
|
-
|
|
1222
|
-
yargs-parser@^20.2.2:
|
|
1223
|
-
version "20.2.9"
|
|
1224
|
-
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
|
|
1225
|
-
integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
|
|
1226
|
-
|
|
1227
|
-
yargs@^16.2.0:
|
|
1228
|
-
version "16.2.0"
|
|
1229
|
-
resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
|
|
1230
|
-
integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
|
|
1231
|
-
dependencies:
|
|
1232
|
-
cliui "^7.0.2"
|
|
1233
|
-
escalade "^3.1.1"
|
|
1234
|
-
get-caller-file "^2.0.5"
|
|
1235
|
-
require-directory "^2.1.1"
|
|
1236
|
-
string-width "^4.2.0"
|
|
1237
|
-
y18n "^5.0.5"
|
|
1238
|
-
yargs-parser "^20.2.2"
|
|
1239
|
-
|
|
1240
|
-
yn@3.1.1, yn@^3.0.0:
|
|
1241
|
-
version "3.1.1"
|
|
1242
|
-
resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50"
|
|
1243
|
-
integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==
|
|
1244
|
-
|
|
1245
|
-
zen-observable-ts@^0.8.21:
|
|
1246
|
-
version "0.8.21"
|
|
1247
|
-
resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-0.8.21.tgz#85d0031fbbde1eba3cd07d3ba90da241215f421d"
|
|
1248
|
-
integrity sha512-Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg==
|
|
1249
|
-
dependencies:
|
|
1250
|
-
tslib "^1.9.3"
|
|
1251
|
-
zen-observable "^0.8.0"
|
|
1252
|
-
|
|
1253
|
-
zen-observable@^0.8.0, zen-observable@^0.8.14:
|
|
1254
|
-
version "0.8.15"
|
|
1255
|
-
resolved "https://registry.yarnpkg.com/zen-observable/-/zen-observable-0.8.15.tgz#96415c512d8e3ffd920afd3889604e30b9eaac15"
|
|
1256
|
-
integrity sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==
|